SPB Git forge

spb/fabri-ka

Public

Agrégateur de produits québécois — www.fabri-ka.com

217commits 1branches 0releases
66.1 MBsize
maindefault branch
3 h agolast push
Python 38.4% HTML 30.3% TypeScript 17.2% CSS 11% JavaScript 3.2%

Enrichissement + pages boutiques landing + page statistiques

- 281 000+ produits, 1 204 boutiques actives (Bijoux Medusa incluse : 3 823
  produits ; catégorie bijoux 10 410 → 31 673)
- Enrichissement boutiques : logo, couverture, description (3 220/3 224)
- Enrichissement produits : re-catégorisation + héritage de catégorie boutique
- Pages boutiques refaites en landing pages : héro couverture + logo, tuiles de
  stats de prix, chips catégories, recherche in-store, boutiques similaires
- Nouvelle page /stats (à la lou-ka/auto-ka) : KPIs, histogramme des prix,
  tableau par catégorie, régions, croissance, origine A–E, top boutiques
- API : /api/stats/extended (cache 10 min), fiche boutique enrichie

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Simon-Pierre Boucher committed 1 mo ago (Aug 12, 2026) parent a4bbc59

3253 changed files +9,363 −282

modified README.md +16 −11
@@ -12,9 +12,9 @@
12 12 ![SQLite](https://img.shields.io/badge/SQLite-FTS5-1E1B16?style=for-the-badge&logo=sqlite&logoColor=C4532E)
13 13 ![Firecrawl](https://img.shields.io/badge/Firecrawl-rendu_JS-1E1B16?style=for-the-badge&logoColor=C4532E)
14 14
15 −![Produits](https://img.shields.io/badge/produits_agr%C3%A9g%C3%A9s-149_500%2B-234438?style=flat-square)
16 −![Boutiques connectées](https://img.shields.io/badge/boutiques_avec_produits-906-234438?style=flat-square)
17 −![Registre](https://img.shields.io/badge/boutiques_QC_v%C3%A9rifi%C3%A9es-3_131-234438?style=flat-square)
15 +![Produits](https://img.shields.io/badge/produits_agr%C3%A9g%C3%A9s-281_000%2B-234438?style=flat-square)
16 +![Boutiques connectées](https://img.shields.io/badge/boutiques_avec_produits-1_204-234438?style=flat-square)
17 +![Registre](https://img.shields.io/badge/boutiques_QC_v%C3%A9rifi%C3%A9es-3_224-234438?style=flat-square)
18 18 ![Connecteurs](https://img.shields.io/badge/connecteurs_plateforme-6-234438?style=flat-square)
19 19 ![Régions](https://img.shields.io/badge/r%C3%A9gions_couvertes-17%2F17-234438?style=flat-square)
20 20 ![Sources](https://img.shields.io/badge/sources_de_d%C3%A9couverte-35%2B-234438?style=flat-square)
@@ -33,8 +33,12 @@ les prix, photos et stocks appartiennent aux marchands sources.*
33 33 |---|---|---|
34 34 | ![Accueil](docs/screenshots/accueil.png) | ![Catalogue](docs/screenshots/catalogue.png) | ![Boutiques](docs/screenshots/boutiques.png) |
35 35
36 −<p align="center"><img src="docs/screenshots/mobile.png" width="260" alt="Version mobile — navigation par onglets, filtres en bottom sheet"/></p>
37 −<p align="center"><i>Mobile-first : barre d'onglets, filtres en bottom sheet, galeries swipe.</i></p>
36 +| Page boutique (landing) | Statistiques |
37 +|---|---|
38 +| ![Boutique](docs/screenshots/boutique-medusa.png) | ![Stats](docs/screenshots/stats.png) |
39 +
40 +<p align="center"><img src="docs/screenshots/mobile.png" width="260" alt="Version mobile"/></p>
41 +<p align="center"><i>Mobile-first : barre d'onglets, filtres en bottom sheet, galeries swipe, pages boutiques avec logo/couverture, page statistiques.</i></p>
38 42
39 43 ## Pourquoi Fabri-Ka ?
40 44
@@ -83,10 +87,10 @@ flowchart LR
83 87 |---|---|
84 88 | Domaines candidats découverts et dédupliqués | 3 481 |
85 89 | Boutiques québécoises actives vérifiées | **3 131** |
86 −| — avec ecommerce détecté | 1 902 |
87 −| — connectables par un connecteur plateforme | 1 324 |
88 −| Produits agrégés (catalogues complets) | **149 500+** (sync en expansion continue) |
89 −| Boutiques avec produits en ligne | 906+ |
90 +| — avec ecommerce détecté | 1 970 |
91 +| — connectables par un connecteur plateforme | 1 369 |
92 +| Produits agrégés (catalogues complets) | **281 000+** |
93 +| Boutiques avec produits en ligne | 1 204 |
90 94 | Régions administratives couvertes | **17 / 17** |
91 95 | Classes d'origine | A : 3 062 · C : 19 · E : 50 |
92 96
@@ -120,10 +124,11 @@ echo "FIRECRAWL_API_KEY=fc-votre-cle" > .env
120 124 |---|---|
121 125 | `GET /api/products?q=&category=&region=&origin=&price_min=&price_max=&sort=&page=` | Recherche plein-texte + filtres, triée |
122 126 | `GET /api/products/{uid}` | Fiche produit (galerie, boutique, produits liés) |
123 −| `GET /api/stores?region=&q=&with_products=` | Répertoire des 2 510 boutiques |
124 −| `GET /api/stores/{id}` | Fiche boutique + évidence d'origine + provenance |
127 +| `GET /api/stores?region=&q=&with_products=` | Répertoire des boutiques (logo, région, plateforme) |
128 +| `GET /api/stores/{id}` | Fiche boutique enrichie : logo, couverture, stats de prix, catégories, boutiques similaires |
125 129 | `GET /api/facets` | Catégories/régions/origines avec compteurs |
126 130 | `GET /api/stats` | Totaux, ventilation régionale, journal de sync |
131 +| `GET /api/stats/extended` | Statistiques riches : prix (médian/moyen/histogramme), catégories, régions, plateformes, croissance, top boutiques |
127 132 | `POST /api/sync` | Déclenche une synchronisation en arrière-plan |
128 133
129 134 ## Classification d'origine
added data/enrich_cache/1001fondues.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "1001fondues.com", "logo_url": "https://1001fondues.com/app/uploads/2026/02/cropped-1001F_Logo_SiteWeb_512x512_ICONE-180x180.png", "cover_url": "https://1001fondues.com/app/uploads/2021/02/1001Fondues_Recettes_WEB_1261-1.jpg", "description_meta": "Bienvenue sur le site Web de 1001 Fondues, une entreprise bien de chez nous qui fabrique les meilleures fondues au fromage et fondue chinoise du Qu\u00e9bec.", "site_name": "1001 Fondues"}
\ No newline at end of file
added data/enrich_cache/1001perles.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "1001perles.ca", "logo_url": "https://1001perles.ca/cdn/shop/files/1001_Perles.jpg?crop=center&height=32&v=1758378761&width=32", "cover_url": "http://1001perles.ca/cdn/shop/files/585c03e0-33d1-42e7-ac50-b53a75406f97.jpg?v=1732593453", "description_meta": "D\u00e9couvrez 1001 Perles, cr\u00e9ateur de bijoux artisanaux en pierres naturelles au Qu\u00e9bec. Des cr\u00e9ations uniques et personnalis\u00e9es, incluant des options de gravure pour des cadeaux m\u00e9morables. Parcourez notre collection de bracelets, colliers et bijoux pour enfants, adultes et occasions sp\u00e9ciales.", "site_name": "1001 perles"}
\ No newline at end of file
added data/enrich_cache/123crepes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "123crepes.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/51346525-0525-4f6e-b8bc-14bc117cbe16/logo-123-crepes-aur%C3%A9ole-Noir%20(1).png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/stock/106255", "description_meta": "M\u00e9lange \u00e0 cr\u00eapes minces en format liquide. Formule cl\u00e9 en main, n\u00e9cessitant aucun ajout d&#x27;ingr\u00e9dients. Sans agents de conservation et sans sucre. crepes", "site_name": "123 crepes site"}
\ No newline at end of file
added data/enrich_cache/13arpents.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "13arpents.com", "logo_url": "https://static.wixstatic.com/media/15fbca_856a561d5a1c4eb2af8265bfd2f1bf35%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/15fbca_856a561d5a1c4eb2af8265bfd2f1bf35%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/1555marchepublic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "1555marchepublic.com", "logo_url": "https://1555marchepublic.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/1642.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "1642.ca", "logo_url": "https://1642.ca/cdn/shop/files/download.png?crop=center&height=32&v=1724423550&width=32", "cover_url": "http://1642.ca/cdn/shop/files/2024-11-30_Photo_de_Famille_de_Produits_dc2a7fd3-e55d-4b09-9d45-f5754ce03fe0.png?v=1734902332", "description_meta": "D\u00e9couvrez les sodas et tonics artisanaux 1642, faits avec des ingr\u00e9dients naturels et locaux. Apportez une touche d\u2019authenticit\u00e9 \u00e0 vos cocktails.", "site_name": "1642 Tonics et Mixeurs"}
\ No newline at end of file
added data/enrich_cache/1chaletalouer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "1chaletalouer.com", "logo_url": "http://1chaletalouer.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/3brasseurs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "3brasseurs.ca", "logo_url": "https://www.3brasseurs.ca/wp-content/uploads/2024/03/logo.png", "cover_url": null, "description_meta": "Bienvenue dans les restaurants 3 Brasseurs. D\u00e9gustez nos bi\u00e8res faites maison et une cuisine authentique dans l&#039;esprit des anciennes brasseries.", "site_name": "3b"}
\ No newline at end of file
added data/enrich_cache/3petitscochonsverts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "3petitscochonsverts.com", "logo_url": "https://static.wixstatic.com/media/954156_f723ee1a696b43fab4d5940735b8ba5e.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/954156_f723ee1a696b43fab4d5940735b8ba5e.png", "cover_url": "https://static.wixstatic.com/media/954156_20e758ba41844683a991a7272373fd72.png/v1/fit/w_2500,h_1330,al_c/954156_20e758ba41844683a991a7272373fd72.png", "description_meta": "Grossiste en charcuteries artisanales dans diverses r\u00e9gions du Qu\u00e9bec, nous sommes aussi ouvert au public et garantissons un produit frais de qualit\u00e9 sup\u00e9rieure", "site_name": "3pcv"}
\ No newline at end of file
added data/enrich_cache/3samson.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "3samson.com", "logo_url": "https://3samson.com/wp-content/uploads/2019/01/favicon.png", "cover_url": null, "description_meta": "Fra\u00eecheur, diversit\u00e9, proximit\u00e9, int\u00e9grit\u00e9 et 100% bio ! Nous desservons Farnham, \u00cele-des-Soeurs, Petite Patrie, Hochelaga, Mile-end", "site_name": "Ferme des 3 Samson - Inscription paniers de fruits et l\u00e9gumes"}
\ No newline at end of file
added data/enrich_cache/4poches.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "4poches.com", "logo_url": "https://4poches.com/wwwroot/img/apple-touch-icon.png", "cover_url": "https://commande4poches.com/wwwroot/img/logo.png", "description_meta": "MARIE 4 poches c&#39;est deux Maries, des ingr&#233;dients simples et une touche de magie !", "site_name": "P\u00e2tisserie fine - boulangerie - traiteur - Site de 4poches !"}
\ No newline at end of file
added data/enrich_cache/57vegane.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "57vegane.com", "logo_url": "https://57vegane.com/cdn/shop/files/Marche_57_Logo_3_688464d6-dbb8-4fde-af5f-5f6704c12c1b.png?v=1715046965", "cover_url": "http://57vegane.com/cdn/shop/files/57vegane-ready-to-eat-1_1200x1200.png?v=1738338140", "description_meta": "Transform Your Menu with 57V\u00e9gane\u2019s Plant-Based Proteins", "site_name": "57V\u00e9gane"}
\ No newline at end of file
added data/enrich_cache/5ebaron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "5ebaron.com", "logo_url": "https://static.wixstatic.com/media/d4dfad_c7a1c0ca7f674460b9aba7f3184f8ab9%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d4dfad_c7a1c0ca7f674460b9aba7f3184f8ab9%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/94celcius.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "94celcius.com", "logo_url": "https://94celcius.com/cdn/shop/files/94celcius_symbole_Couleur_RVB_6219009b-f957-4f4b-a09f-4ee3e46922cf.png?crop=center&height=180&v=1663869430&width=180", "cover_url": "http://94celcius.com/cdn/shop/files/230427_94Celcius-02-Preparation_du_cafe-0270_deccfcb8-0101-4f9a-b411-82955d1b184f.jpg?crop=center&height=1200&v=1713964862&width=1200", "description_meta": "Des caf\u00e9s de sp\u00e9cialit\u00e9 qui ont du go\u00fbt et du sens. Torr\u00e9faction artisanale, ar\u00f4mes surprenants, respect du grain et de celles et ceux qui le cultivent.", "site_name": "94Celcius"}
\ No newline at end of file
added data/enrich_cache/abaka.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "abaka.ca", "logo_url": "https://abaka.ca/cdn/shop/files/fleur_noir_sans_fond.png?crop=center&height=32&v=1773173169&width=32", "cover_url": null, "description_meta": "V\u00eatements \u00e9coresponsables fabriqu\u00e9s au Qu\u00e9bec. Mode durable et \u00e9thique avec textiles naturels, design intemporel et production locale. Livraison Canada.", "site_name": "Abaka"}
\ No newline at end of file
added data/enrich_cache/abbaye.boutiquequebec.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "abbaye.boutiquequebec.co", "logo_url": "https://abbaye.boutiquequebec.co/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/abbaye.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "abbaye.ca", "logo_url": "https://www.abbaye.ca/app/uploads/fbrfg/apple-touch-icon.png", "cover_url": "https://www.abbaye.ca/wp/../app/uploads/2018/11/ASB_Accueil_medias-sociaux-1.jpg", "description_meta": "L&#039;Abbaye se trouve au coeur des Cantons-de-l&#039;Est. Une communaut\u00e9 vivante d&#039;une trentaine de moines y vit selon la R\u00e8gle de saint Beno\u00eet.", "site_name": "Abbaye de Saint-Beno\u00eet-du-Lac"}
\ No newline at end of file
added data/enrich_cache/abbayevalnotredame.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "abbayevalnotredame.ca", "logo_url": "https://abbayevalnotredame.ca/wp-content/uploads/2026/03/cropped-icone-180x180.png", "cover_url": null, "description_meta": "St-Jean de Matha Au c\u0153ur de Lanaudi\u00e8re, l\u2019authenticit\u00e9 vous attend. L\u2019abbaye Val Notre-Dame est une abbaye de l&rsquo;Ordre cistercien de la stricte observance, construite en 2007-2009. Elle est situ\u00e9e au pied de la Montagne-Coup\u00e9e \u00e0 Saint-Jean-de-Matha, dans la r\u00e9gion de Lanaudi\u00e8re St-Jean de Matha Notre vie monastique tend vers l\u2019\u00e9quilibre. C\u2019est plut\u00f4t un objectif auquel [&hellip;]", "site_name": "Abbaye Val Notre-Dame"}
\ No newline at end of file
added data/enrich_cache/abeillesdelacolline.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "abeillesdelacolline.com", "logo_url": "https://abeillesdelacolline.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/abieze.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "abieze.com", "logo_url": "https://abieze.com/cdn/shop/files/abieze_e501e3e0-f89f-4047-8a17-e71dc40c4132.png?crop=center&height=32&v=1768867841&width=32", "cover_url": "http://abieze.com/cdn/shop/files/SAVON_NOIR_d1b2725a-46d3-446c-bef8-5998953f0ee6.png?v=1768097436", "description_meta": "fabriquant du savon noir qu\u00e9b\u00e9cois. innovations en nettoyage \u00e9cologique", "site_name": "abieze soap"}
\ No newline at end of file
added data/enrich_cache/abmauri.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "abmauri.com", "logo_url": "https://www.abmauri.com/images/favicon.png?v=1.11", "cover_url": "https://www.abmauri.com/images/logo-fb.png?v=2.02", "description_meta": "AB MAURI is a business devoted to the baking industry, supporting and enabling the world\u2019s bakers, both small and large.", "site_name": "AB Mauri Passionate About Baking"}
\ No newline at end of file
added data/enrich_cache/abrisquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "abrisquebec.com", "logo_url": "https://abrisquebec.com/favicon.ico", "cover_url": null, "description_meta": "Chez Abris Qu\u00e9bec, nous avons des abris simples, des abris doubles, des abris industriels, des petits abris, des toiles de remplacements, des pi\u00e8ces pour les", "site_name": "Abris Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/absinthequebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "absinthequebec.com", "logo_url": "https://static.wixstatic.com/media/75a7c3_3fdc92c47be04b58b58a586290aed5e4%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/75a7c3_3fdc92c47be04b58b58a586290aed5e4%7Emv2.png", "cover_url": null, "description_meta": "Absintherie des Cantons", "site_name": "absinthe-quebec"}
\ No newline at end of file
added data/enrich_cache/accespsy.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "accespsy.ca", "logo_url": "https://accespsy.ca/assets/images/logo.svg", "cover_url": null, "description_meta": "Acc\u00c3\u00a8s Psy est un organisme de bienfaisance qui facilite l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/achillea-boutique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "achillea-boutique.com", "logo_url": "https://www.achillea-boutique.com/uploads/b/981562f0-75cd-11ef-965b-3726169fc3ab/icon_180x180_ios_NjE5Nj.png?width=180", "cover_url": "https://www.achillea-boutique.com/uploads/b/981562f0-75cd-11ef-965b-3726169fc3ab/JHE_8653.JPG", "description_meta": "Tisanes, soins botaniques et ateliers de cueillette. Plantes locales et rituels du quotidien faits main, au Saguenay, Qu\u00e9bec.", "site_name": "L&#039;Achill\u00e9e"}
\ No newline at end of file
added data/enrich_cache/acti-sol.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "acti-sol.ca", "logo_url": "https://acti-sol.ca/wp-content/uploads/2024/08/marqueur.jpg", "cover_url": "https://acti-sol.ca/wp-content/uploads/2025/07/logo_McInnes.jpg", "description_meta": "Les engrais Acti-sol et Acadie : sont con\u00e7us autant pour les jardins que pour les champs. TOUS NOS PRODUITS Nouveaut\u00e9s Les Engrais naturels McInnes font maintenant partie de la famille Acti-Sol ! Engrais Naturels McInnes offre des fertilisants sans fumier, s\u00e9curitaires, efficaces et approuv\u00e9s pour l\u2019agriculture biologique. Sp\u00e9cialis\u00e9e en horticulture ornementale, l\u2019entreprise est reconnue pour [&h", "site_name": "Acti-Sol"}
\ No newline at end of file
added data/enrich_cache/adafresh.shop.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "adafresh.shop", "logo_url": "https://adafresh.shop/wp-content/uploads/2026/05/1-300x300.png", "cover_url": "https://adafresh.shop/wp-content/uploads/2026/05/Bundle3-791x1024.jpg", "description_meta": "D\u00e9couvrez des saveurs africaines authentiques pr\u00e9par\u00e9es au Qu\u00e9bec. Piments, \u00e9pices et recettes inspir\u00e9s de l&#039;h\u00e9ritage culinaire africain.", "site_name": "adafresh.shop"}
\ No newline at end of file
added data/enrich_cache/adfast.store.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "adfast.store", "logo_url": "https://adfast.store/static/favicon/apple-touch-icon.png", "cover_url": "https://aceafcstorageprod01.blob.core.windows.net/public-images/b2b/Page_Preview_English/Home_EN.jpg", "description_meta": "Adfast is a North American manufacturer of high-performance adhesives, sealants, and caulking products. Find the best solution for your construction and industrial projects.", "site_name": "Adfast"}
\ No newline at end of file
added data/enrich_cache/adriengagnon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "adriengagnon.com", "logo_url": "https://adriengagnon.com/cdn/shop/files/Untitled_450_x_607_px_16.png?crop=center&height=32&v=1649872885&width=32", "cover_url": "http://adriengagnon.com/cdn/shop/files/26371_ADG_Logo_Adrien_Gagnon_01-04_copie_2048x1114.png?v=1733754124", "description_meta": "Adrien Gagnon offers a variety of health products, including supplements, vitamins, and medicinal plants. Order now for your complete health solution!", "site_name": "Adrien Gagnon - Sant\u00e9 Naturelle A.G. Lt\u00e9e"}
\ No newline at end of file
added data/enrich_cache/affiliationfocus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "affiliationfocus.com", "logo_url": "https://affiliationfocus.com/wp-content/uploads/fbrfg/apple-touch-icon.png", "cover_url": null, "description_meta": "Affiliation Focus est une plateforme d&#039;affiliation canadienne qui aide les boutiques en ligne \u00e0 augmenter leurs ventes &amp; les affili\u00e9s \u00e0 mon\u00e9tiser leur site.", "site_name": "Affiliation Focus"}
\ No newline at end of file
added data/enrich_cache/agenceoasis.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "agenceoasis.ca", "logo_url": "https://agenceoasis.ca/wp-content/uploads/2023/05/cropped-Oasis_favicon_dot_favicon-1-180x180.png", "cover_url": "https://agenceoasis.ca/wp-content/uploads/2024/05/oasis_placeholder_news_thumb.jpg", "description_meta": null, "site_name": "Agence Oasis"}
\ No newline at end of file
added data/enrich_cache/agencepixel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "agencepixel.ca", "logo_url": "https://agencepixel.ca/wp-content/uploads/2019/08/cropped-pixel_favicon-180x180.png", "cover_url": "https://agencepixel.ca/wp-content/uploads/2019/09/Pixel_1200x630.jpg", "description_meta": "Firme cr\u00e9ative se sp\u00e9cialisant en production vid\u00e9o, design graphique, identit\u00e9 de marque, strat\u00e9gie marketing et web \u00e0 Gatineau - Ottawa", "site_name": "Pixel | Vid\u00e9o | Design graphique | Marketing | Gatineau - Ottawa"}
\ No newline at end of file
added data/enrich_cache/agitforesterie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "agitforesterie.ca", "logo_url": "https://agitforesterie.ca/favicon.ico", "cover_url": null, "description_meta": "Services et produits de haute qualit\u00c3\u00a9, toutes les informations sur les options d&#039;achat et sur la soci\u00c3\u00a9t\u00c3\u00a9.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/agneauauxalgues.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "agneauauxalgues.ca", "logo_url": "https://agneauauxalgues.ca/wp-content/uploads/2021/04/Icones_Site_web_-_AAA-2_185x.png", "cover_url": "https://agneauauxalgues.ca/wp-content/uploads/2019/04/cropped-homepage-header.jpg", "description_meta": "Par ses caract\u00e9ristiques, l\u2019agneau nourri aux algues se d\u00e9marque maintenant aupr\u00e8s de la client\u00e8le des boucheries fines partout au Qu\u00e9bec.", "site_name": "Agneau nourri aux algues"}
\ No newline at end of file
added data/enrich_cache/agneaudufjord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "agneaudufjord.com", "logo_url": "https://agneaudufjord.com/favicon.ico", "cover_url": null, "description_meta": "G\u00eete saint-fulgence, GITE SAINT-FULGENCE, Gite saint-fulgence, G\u00eete \u00e0 la ferme, GITE \u00c0 LA FERME, GITE FERME,gite ferme, gite ferme saguenay, gite saguenay, Destination gourmande, ferme agrotouristique gourmande, ferme bor\u00e9al, ferme agrotouristique,escapade gourmande, \u00e9cog\u00eete de la vieille ferme, ECOGITE, DORMIR \u00c0 LA FERME, dormir \u00e0 la ferme,activite ferme, activites fermes, ACTIVITE FERME, ACTIVI", "site_name": "Vieille Ferme Agneau du fjord"}
\ No newline at end of file
added data/enrich_cache/agropur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "agropur.com", "logo_url": "https://www.agropur.com/favicon.ico", "cover_url": "https://www.agropur.com/themes/custom/agropur_com_theme/assets/images/logo-bil-agropur.png", "description_meta": "Agropur est une coop\u00e9rative laiti\u00e8re nord-am\u00e9ricaine de premier plan, engag\u00e9e dans la qualit\u00e9 et l&#039;innovation.", "site_name": "Agropur"}
\ No newline at end of file
added data/enrich_cache/ahlavacheresto.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ahlavacheresto.com", "logo_url": "https://ahlavacheresto.com/wp-content/uploads/2024/10/cropped-logo-ahlavache_belle-etablee_03-2020_fond-transp_300-icone-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aildumoulin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aildumoulin.com", "logo_url": "https://aildumoulin.com/cdn/shop/files/Ail-Du-Moulin_32x32.png?v=1652198834", "cover_url": "http://aildumoulin.com/cdn/shop/files/201016_AilNoir_0032_1200x1200.jpg?v=1617024749", "description_meta": "Sp\u00e9cialiste de l\u2019ail bio, Ail du Moulin combine tradition et innovation pour une agriculture durable. Terre riche, climat id\u00e9al et \u00e9quipe passionn\u00e9e \u00e0 votre service.", "site_name": "Ail Du Moulin"}
\ No newline at end of file
added data/enrich_cache/airdistillerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "airdistillerie.com", "logo_url": "https://airdistillerie.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/airellesdesfreres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "airellesdesfreres.com", "logo_url": "https://airellesdesfreres.com/wp-content/uploads/2019/01/cropped-logo-les-airelles-des-freres-180x180.png", "cover_url": null, "description_meta": "Producteur et p\u00e9pini\u00e9riste d&#039;airelle vigne d&#039;Ida, situ\u00e9 en Chaudi\u00e8re-Appalache, Qu\u00e9bec, Canada.", "site_name": "Les Airelles des Fr\u00e8res"}
\ No newline at end of file
added data/enrich_cache/airsolutionconfort.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "airsolutionconfort.com", "logo_url": "https://airsolutionconfort.com/wp-content/uploads/2025/12/cropped-icon-air-solution-confort-180x180.png", "cover_url": null, "description_meta": "Thermopompe \u00e0 Joliette - Plus de 15 ans \u00e0 soigner l\u2019ex\u00e9cution jusque dans les d\u00e9tails. Obtenez une soumission gratuite !", "site_name": "Air Solution Confort"}
\ No newline at end of file
added data/enrich_cache/akiraboisetdesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "akiraboisetdesign.com", "logo_url": "https://akiraboisetdesign.com/favicon.ico", "cover_url": null, "description_meta": "AKIRA propose des collections de planchers de bois, rev\u00eatements muraux, d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/akisushi.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "akisushi.ca", "logo_url": "https://akisushi.ca/wp-content/uploads/2024/10/cropped-akisushi-favicon-180x180.png", "cover_url": "https://akisushi.ca/wp-content/uploads/2024/12/photos-sushis-accueil.png", "description_meta": "Savourez des sushis frais chaque jour chez AKI. Commandez en ligne facilement et d\u00e9couvrez notre comptoir \u00e0 emporter maintenant !", "site_name": "Aki Sushi"}
\ No newline at end of file
added data/enrich_cache/akufen.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "akufen.ca", "logo_url": "https://www.akufen.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/alabonnevotre.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alabonnevotre.ca", "logo_url": "https://www.alabonnevotre.ca/wp-content/uploads/2021/09/fav.png", "cover_url": "https://www.alabonnevotre.ca/wp-content/uploads/2021/11/degustation-de-vin-a-la-bonne-votre.jpg", "description_meta": "Restaurant Drummondville | Notre exquise cuisine du terroir ainsi que notre d\u00e9cor intime et champ\u00eatre stimuleront papilles et plaisirs.", "site_name": "\u00c0 La Bonne V\u00f4tre"}
\ No newline at end of file
added data/enrich_cache/alabordage.beer.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alabordage.beer", "logo_url": "https://alabordage.beer/wp-content/uploads/2024/01/icon-300x300.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/alabridelatempete.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alabridelatempete.com", "logo_url": "https://alabridelatempete.com/cdn/shop/files/Flavicon2_32x32.png?v=1614730596", "cover_url": "https://cdn.shopify.com/s/files/1/2385/4147/files/Logo-passeword_page_2e8507b1-2193-4c18-aabd-0b9d773efaee.png?height=628&pad_color=ffffff&v=1614730085&width=1200", "description_meta": "\u00c0 l\u2019abri de la Temp\u00eate valorise l\u2019utilisation d\u2019ingr\u00e9dients locaux dans la conception de ses bi\u00e8res. L\u2019ancrage dans le territoire insulaire se poursuit par la cr\u00e9ation de maillages gustatifs uniques avec les diff\u00e9rents acteurs et artisans des \u00celes de la Madeleine.", "site_name": "\u00c0 l&#39;abri de la Temp\u00eate"}
\ No newline at end of file
added data/enrich_cache/alacanneblanche.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alacanneblanche.com", "logo_url": "https://alacanneblanche.com/wp-content/uploads/2021/03/Logo_couleur150.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/alachouette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alachouette.com", "logo_url": "https://alachouette.com/favicon.ico", "cover_url": null, "description_meta": "G\u00c3\u00aete Baie-Saint-Paul Charlevoix Chouette Maison \u00c3\u00a0 louer", "site_name": null}
\ No newline at end of file
added data/enrich_cache/alafut.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alafut.qc.ca", "logo_url": "https://www.alafut.qc.ca/app/themes/baserock/assets/ico/android-chrome-384x384.png", "cover_url": "https://www.alafut.qc.ca/app/uploads/2019/05/og-facebook-1200x630-general-2019.jpg", "description_meta": "D\u00e9couvrez les bi\u00e8res artisanales brass\u00e9es par des cowboys de la Microbrasserie \u00c0 la F\u00fbt ainsi que son incontournable Saloon, situ\u00e9 \u00e0 St-Tite, Mauricie, Qu\u00e9bec!", "site_name": "Microbrasserie \u00c0 la F\u00fbt"}
\ No newline at end of file
added data/enrich_cache/albertmazzocca-pacenow.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "albertmazzocca-pacenow.ca", "logo_url": "https://albertmazzocca-pacenow.ca/wp-content/uploads/2026/06/favicon.png", "cover_url": "https://albertmazzocca-pacenow.ca/wp-content/uploads/2026/06/1-best-sports-betting-ca.webp", "description_meta": "Compare 10 sports betting Canada sites tested for 2026: AGCO and iGO licences, Interac payout speed, NHL odds and current welcome bonuses.", "site_name": "Best Betting Sites Canada"}
\ No newline at end of file
added data/enrich_cache/alchimiste.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alchimiste.ca", "logo_url": "https://alchimiste.ca/favicon/apple-touch-icon.png", "cover_url": "https://alchimiste.ca/images/image-facebook.jpg", "description_meta": "L&apos;Alchimiste propose quatre types de bi\u00e8res blondes et naturelles. C\u2019est par la suite que le consommateur sera amen\u00e9 \u00e0 d\u00e9couvrir des bi\u00e8res plus complexes, comme la Bock et l\u2019\u00c9cossaise", "site_name": "Alchimiste Microbrasserie"}
\ No newline at end of file
added data/enrich_cache/alcideparent.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alcideparent.net", "logo_url": "https://alcideparent.net/wp-content/uploads/2021/03/cropped-Picture-152-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/alcyonsel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alcyonsel.com", "logo_url": "https://alcyonsel.com/cdn/shop/files/favicon-siteweb.jpg?v=1777656318&width=180", "cover_url": "http://alcyonsel.com/cdn/shop/files/alcyon-sel-de-mer-quebec.jpg?v=1777646639", "description_meta": "D\u00e9couvrez Alcyon, le producteur local qu\u00e9b\u00e9cois de sel de mer naturel du Qu\u00e9bec et de fleur de sel des \u00celes de la Madeleine. Visitez notre boutique en ligne et offrez vous une exp\u00e9rience culinaire sup\u00e9rieure avec nos produits artisanaux locaux.", "site_name": "Alcyon sel de mer"}
\ No newline at end of file
added data/enrich_cache/aleaprotection.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aleaprotection.com", "logo_url": "https://www.aleaprotection.com/cdn/shop/files/alea_favicon-removebg-preview.png?v=1687959798&width=180", "cover_url": "https://cdn.shopify.com/s/files/1/0728/9700/3821/files/Untitled_design_1_74205aa3-66d1-48d5-809d-5982895c5c96.png?v=1774200364", "description_meta": "Shop certified organic cotton tampons, pads &amp; liners from Alea \u2014 Canada&#39;s plastic-free, toxin-free period care brand. Free shipping over $45.", "site_name": "Alea"}
\ No newline at end of file
added data/enrich_cache/alexisdeportneuf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alexisdeportneuf.com", "logo_url": "https://www.alexisdeportneuf.com/-/media/ecosystem/divisions/canada-dairy/sites/alexis-de-portneuf/alexis-de-portneuf-shared-images/android-icon-192x192.png?h=192&w=192&rev=e5c48761d99f45d690503c2eeb60f6a5&hash=D4BD4889A51AA39EEE92DB6DE000D39D", "cover_url": null, "description_meta": "Maker of award-winning, hand-crafted fine cheeses. Learn more about our cheese, where to buy it, and some helpful tips on how to serve and pair a variety of cheeses.", "site_name": "www.alexisdeportneuf.com"}
\ No newline at end of file
added data/enrich_cache/ali-monde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ali-monde.com", "logo_url": "https://static.wixstatic.com/media/3cd5c0_2bbb99b95a8542e8a5252d6d1011fc87%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/3cd5c0_2bbb99b95a8542e8a5252d6d1011fc87%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aliciasanchez.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aliciasanchez.ca", "logo_url": "https://www.aliciasanchez.ca/favicon.ico?v=7kop60MBNt", "cover_url": "https://portal.restodata.ca/alicia-sanchez-epicerie-fine/gallery/images/01_alicia-sanche_150-2022-09-08.jpg", "description_meta": "Alicia Sanchez \u00e9picerie fine est un restaurant Tapas situ\u00e9 au 989 Route des Rivi\u00e8res \u00e0 L\u00e9vis. Voir le menu, \u00e9valuations et r\u00e9servez. Tapas espagnoles authentiques et produits gourmets...", "site_name": "Alicia Sanchez \u00e9picerie fine"}
\ No newline at end of file
added data/enrich_cache/alimentationdulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentationdulac.com", "logo_url": "https://www.alimentationdulac.com/apple-touch-icon.png", "cover_url": null, "description_meta": "Plus qu\u2019un simple distributeur, ADL c\u2019est aussi une \u00e9picerie et un entrep\u00f4t libre-service ouvert \u00e0 tous.", "site_name": "Alimentation Du Lac"}
\ No newline at end of file
added data/enrich_cache/alimentomo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentomo.com", "logo_url": "https://alimentomo.com/cdn/shop/files/faviconTest_32x32.jpg?v=1776275133", "cover_url": "http://alimentomo.com/cdn/shop/files/ALIMENTOMO_logo_4K_red_1200x1200.jpg?v=1614309885", "description_meta": "Poudre de grillons cricket powder sans gluten free Prot\u00e9ines neuf acides amin\u00e9s essentiels tryptophane lysine methionine phenylalanine threonine valine leucine isoleucine histidine superaliment superfood omega-3 omega-6 solutions consultation service cours \u00e9levage", "site_name": "Alimentomo"}
\ No newline at end of file
added data/enrich_cache/aliments-ruoff.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aliments-ruoff.com", "logo_url": "https://www.aliments-ruoff.com/favicon.ico", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQWPuGWH4GyFyaQRk-fd_Mll7veONsWK6VG7fzxka8_tHN45P7o2MGR_q9H8FbcsNg1Ie4-KpfpQGEqS1In-as3yhyiFgqQ6kbRg71U6P5w278PYeLF6ERe4Sz-2GC62oMnEFyJfWQd2HzG9An1YF6QvcWr0BKigxGkQq1fTJ1R_MlgenA-9TG61DIO31ZOEjDczfrX8oSyCRQzL6X5ZW6ORf938u0sPXd9y8f-cSpQ=w1280", "description_meta": "Qu\u2019est-ce qu\u2019un maultaschen?\nOriginaire de Maulbronn, un petit village de la r\u00e9gion du sud-ouest de l\u2019Allemagne, les maultaschen sont des p\u00e2tes farcies de viande hach\u00e9e, d&#39;oignons, d&#39;\u00e9pinards, pain, bacon et \u0153uf. \nLes maultaschen s\u2019inscrivent dans le patrimoine culinaire allemand.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/alimentsbaril.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentsbaril.ca", "logo_url": "https://alimentsbaril.ca/multi/wp-content/uploads/2016/10/favicon32.gif", "cover_url": "https://alimentsbaril.ca/multi/wp-content/uploads/2025/07/AB-_Opengraph.png", "description_meta": "Transformateur qu\u00e9b\u00e9cois de pommes de terre et l\u00e9gumes frais pour restaurateurs, \u00e9piceries et institutions depuis 1964.", "site_name": "Aliments Baril"}
\ No newline at end of file
added data/enrich_cache/alimentsbleumer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentsbleumer.com", "logo_url": "https://alimentsbleumer.com/favicon.png", "cover_url": null, "description_meta": "Entreprise canadienne sp\u00c3\u00a9cialis\u00c3\u00a9e dans le fumage du saumon et le d\u00c3\u00a9veloppement de produits marins pr\u00c3\u00aat-\u00c3\u00a0-manger.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/alimentsblouin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentsblouin.com", "logo_url": "https://www.alimentsblouin.com/wp-content/uploads/2019/08/cropped-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/alimentsduquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentsduquebec.com", "logo_url": "https://alimentsduquebec.com/favicon.png", "cover_url": "https://assets.alimentsduquebec.com/alimentsduquebec-assets/production/_1200x630_crop_center-center_82_none_ns/LeGoutduQuebec-AlimentsduQuebec-1200x630.png?mtime=1774468675", "description_meta": "Encouragez l\u2019achat local. Trouvez des aliments d\u2019ici et d\u00e9couvrez les restaurants et institutions qui offrent fi\u00e8rement des ingr\u00e9dients qu\u00e9b\u00e9cois \u00e0 leur\u2026", "site_name": "Aliments du Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/alimentsfabbrica.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentsfabbrica.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "My Site"}
\ No newline at end of file
added data/enrich_cache/alimentsmeretmonde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentsmeretmonde.com", "logo_url": "https://alimentsmeretmonde.com/favicon.ico", "cover_url": "https://alimentsmeretmonde.com/wp-content/uploads/2020/12/chicken-wings-barbecue-sweetly-sour-sauce-picnic-summer-menu-tasty-food-top-view-flat-lay.jpg", "description_meta": "Les Aliments Mer &amp; Monde se sp\u00e9cialise dans la transformation de viande en produits de charcuterie et autres mets depuis plus de 20 ans", "site_name": "Les Aliments Mer &amp; Monde"}
\ No newline at end of file
added data/enrich_cache/alimentsparador.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentsparador.com", "logo_url": "https://alimentsparador.com/wp-content/uploads/2021/01/cropped-favicon-parador-32x32-1-180x180.png?x28604", "cover_url": "https://alimentsparador.com/wp-content/uploads/2020/12/bg-avec-cafe.png", "description_meta": "En tant que plus grand fabricant de bouillons concentr\u00e9s liquides au Canada, Les Aliments Parador se distinguent par leur savoir-faire et leur flexibilit\u00e9.", "site_name": "Les aliments Parador foods inc"}
\ No newline at end of file
added data/enrich_cache/alimentspaysanne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentspaysanne.com", "logo_url": "https://alimentspaysanne.com/assets/images/paysanne_logo2x.png", "cover_url": "https://alimentspaysanne.com/uploads/_1200x630_crop_center-center_none/facebook-cover.jpg", "description_meta": "Les Aliments La Paysanne vous propose de purs d\u00e9lices. Vous serez enchant\u00e9s par ses fondues parmesan au fromage de toutes sortes, ses b\u00e2tonnets de mozzarella et bien d", "site_name": "Fran\u00e7ais"}
\ No newline at end of file
added data/enrich_cache/alimentsroma.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentsroma.com", "logo_url": "https://alimentsroma.com/app/uploads/2025/05/favicon-roma-300x300.png", "cover_url": "https://alimentsroma.com/app/uploads/2025/08/og-image-alimentsroma.png", "description_meta": "Roma marie le savoir-faire canadien aux traditions italiennes. Charcuteries, saucisses et pepperonis authentiques pour des moments gourmands \u00e0 partager. D\u00e9couvrez ici!", "site_name": "Roma"}
\ No newline at end of file
added data/enrich_cache/alimentstristan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimentstristan.com", "logo_url": "https://alimentstristan.com/favicon.ico", "cover_url": null, "description_meta": "Centre-du-Qu\u00e9bec. Aliments Tristan is a family-owned, Quebec-based company that was founded 20 years ago. It offers healthy and nutritious products.", "site_name": "Aliments Tristan"}
\ No newline at end of file
added data/enrich_cache/alimenttradition.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimenttradition.com", "logo_url": "https://static.wixstatic.com/media/ddefcd_f7fda5782cb84946ac67a1546a76b011%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/ddefcd_f7fda5782cb84946ac67a1546a76b011%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/ddefcd_f7fda5782cb84946ac67a1546a76b011%7Emv2.png/v1/fit/w_2500,h_1330,al_c/ddefcd_f7fda5782cb84946ac67a1546a76b011%7Emv2.png", "description_meta": null, "site_name": "Aliment Tradition"}
\ No newline at end of file
added data/enrich_cache/alimexi.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alimexi.com", "logo_url": "https://www.alimexi.com/favicon.png", "cover_url": "https://www.alimexi.com/images/Branded/QUESADILLAS%20TRIANGULO.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/allosimonne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "allosimonne.com", "logo_url": "https://allosimonne.com/cdn/shop/files/Favicon_noisette.png?crop=center&height=180&v=1613786895&width=180", "cover_url": "http://allosimonne.com/cdn/shop/files/582_18135-24014_99_A2.jpg?crop=center&height=1200&v=1734545935&width=1200", "description_meta": "R\u00e9galez-vous avec nos produits chocolat\u00e9s artisanaux de qualit\u00e9, sans huile ajout\u00e9e et fi\u00e8rement fabriqu\u00e9s \u00e0 Montr\u00e9al! Des produit gourmands et reconnus parmi les meilleurs au monde au concours International du chocolat, au Great Taste Awards, et \u00e0 l&#39;Academy of chocolate.", "site_name": "Allosimonne"}
\ No newline at end of file
added data/enrich_cache/alma.alapero.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alma.alapero.ca", "logo_url": "https://imagedelivery.net/9lr8zq_Jvl7h6OFWqEi9IA/808de561-df46-45ce-f79b-ca4eed236200/public", "cover_url": "https://imagedelivery.net/9lr8zq_Jvl7h6OFWqEi9IA/f23454dd-7728-42f6-2543-a1f186360e00/public", "description_meta": "Order Gathering online from Laurie Jean in alma, QC for delivery and takeout. Browse our menu and easily choose and modify your selection.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/almaxcanada.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "almaxcanada.com", "logo_url": "https://www.almaxcanada.com/favicon.ico", "cover_url": "https://www.almaxcanada.com/assets/img/frontend/stages/index/stage-hero-accueil3.jpg", "description_meta": "Fabriqu\u00e9es sur mesure selon vos dimensions et assembl\u00e9es en usine par nos experts. Fabrication Qu\u00e9becoise. Qualit\u00e9 sup\u00e9rieure. Prix avantageux.", "site_name": "Almax Canada"}
\ No newline at end of file
added data/enrich_cache/aloreedeschamps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aloreedeschamps.com", "logo_url": "https://www.aloreedeschamps.com/favicon/apple-touch-icon.png", "cover_url": "https://www.aloreedeschamps.com/img/photo/exterieur-1.jpg", "description_meta": "Table champ\u00eatre, produits du terroir, ferme ovine et \u00e9conomus\u00e9e constituent l\u2019offre de l\u2019entreprise agroalimentaire de Saint-Nazaire.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/alpagabersi.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alpagabersi.ca", "logo_url": "https://alpagabersi.ca/wp-content/uploads/2020/05/cropped-Asset-2@4x-1-180x180.jpg", "cover_url": "https://alpagabersi.ca/wp-content/uploads/2021/05/affiche-bg-noir.png", "description_meta": "Alpaga Bersi est une ferme d\u2019\u00e9levage d\u2019alpagas situ\u00e9e \u00e0 Saguenay. Visite d&#039;interpr\u00e9tation, pique-nique &amp; autocueillette de camerises.", "site_name": "Alpaga Bersi"}
\ No newline at end of file
added data/enrich_cache/alpagadore.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alpagadore.com", "logo_url": "https://alpagadore.com/boutique/image/catalog/Marketing/icone-alpagadore_16.png", "cover_url": null, "description_meta": "AlpagAdore: \u00e9levage d", "site_name": "AlpagAdore"}
\ No newline at end of file
added data/enrich_cache/alpagaselect.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alpagaselect.ca", "logo_url": "https://www.alpagaselect.ca/wp-content/uploads/2022/02/cropped-favicon-180x180.png", "cover_url": "https://www.alpagaselect.ca/wp-content/uploads/2024/09/alpaga_select_accueil_proprietaires.jpg", "description_meta": "Ferme d\u2019\u00e9levage d\u2019Alpagas offrant produits et la randonn\u00e9e avec l\u2019animal", "site_name": "AlpagaSelect"}
\ No newline at end of file
added data/enrich_cache/alpagasfibrefine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alpagasfibrefine.com", "logo_url": "https://www.alpagasfibrefine.com/wp-content/uploads/2026/03/cropped-Logo-Alpagas-Fibrefine-2026-JPEG-Icon-512-180x180.jpg", "cover_url": null, "description_meta": "Alpagas Fibrefine est une ferme d&#039;alpagas qu\u00e9b\u00e9coise au Centre-du-Qu\u00e9bec. Formations sur l&#039;alpaga | Alpagas \u00e0 vendre | Boutique artisanale", "site_name": "Alpagas Fibrefine | \u00e9levage d&#039;alpagas huacaya, formation et boutique"}
\ No newline at end of file
added data/enrich_cache/alphasigna.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alphasigna.com", "logo_url": "https://alphasigna.com/img/favicon.ico?1773330879", "cover_url": null, "description_meta": "Fabricant de produits de signalisation int\u00e9rieure et ext\u00e9rieure pour les secteurs industriel, commercial, institutionnel et r\u00e9sidentiel.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/alphatango.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alphatango.ca", "logo_url": "https://www.alphatango.ca/wp-content/themes/alpha-tango/images/favicon.png", "cover_url": "https://www.alphatango.ca/wp-content/themes/alpha-tango/images/alpha-tango-facebook.jpg", "description_meta": "Les Spiritueux Alpha Tango sont les cr\u00e9ateurs du gin Bravo Charlie et de la vodka Mission Kosmos, des spiritueux de qualit\u00e9 exceptionnelle avec des ingr\u00e9dients originaux, qui sauront combler les connaisseurs et amateurs du monde entier. Premi\u00e8re microdistillerie en Abitibi-T\u00e9miscamingue. Val-d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/alternaeco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alternaeco.com", "logo_url": "https://alternaeco.com/wp-content/uploads/2021/09/Alterna_Favicone_57x57.png", "cover_url": "https://alternaeco.com/wp-content/uploads/2014/05/Alterna.jpg", "description_meta": "Alterna \u00e9co-solutions cr\u00e9e, distribue et vend des v\u00eatements personnalis\u00e9 et des articles promotionnels fabriqu\u00e9s au Canada.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/alumix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alumix.ca", "logo_url": "https://alumix.ca/wp-content/uploads/2025/10/cropped-Alumix-Favicon-180x180.png", "cover_url": "https://alumix.ca/wp-content/uploads/2024/02/alumix-seo-1-1024x682.jpg", "description_meta": "Alumix Aluminium Montr\u00e9al | Nous offrons la fabrication et l\u2019installation de rampes, terrasses, escaliers, cl\u00f4tures et structures en aluminium \u00e0 Montr\u00e9al", "site_name": "Alumix Aluminium"}
\ No newline at end of file
added data/enrich_cache/alyssaartistepeintre.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "alyssaartistepeintre.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Bienvenue sur mon site Internet d", "site_name": "Alyssa Gagn\u00e9 Artiste"}
\ No newline at end of file
added data/enrich_cache/amareebasse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "amareebasse.com", "logo_url": "https://amareebasse.com/cdn/shop/files/logo.amb.2021_o_bd10b80c-ca61-4946-92ff-f15751121308.jpg-removebg-preview.png?crop=center&height=32&v=1731454322&width=32", "cover_url": null, "description_meta": "Atelier Boutique en art imprim\u00e9 et design maritime. Des artistes inspir\u00e9es par la nature insulaire et maritime des Iles de la Madeleine : les coquillages du littoral, les baleines et animaux marins et la flore. Photographie, illustration, peinture. Tout comme le littoral, nos cr\u00e9ations \u00e9voluent au gr\u00e9 des mar\u00e9es.", "site_name": "\u00c0 Mar\u00e9e Basse"}
\ No newline at end of file
added data/enrich_cache/amaro.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "amaro.ca", "logo_url": "https://amaro.ca/wp-content/uploads/2020/10/favicon-amaro.png", "cover_url": "https://amaro.ca/wp-content/uploads/2025/08/og-image-amaro.jpg", "description_meta": "Pour une eau embouteill\u00e9e au Qu\u00e9bec d\u2019une qualit\u00e9 exceptionnelle, choisissez Amaro. L\u2019eau naturelle d\u2019ici", "site_name": "Eau de source naturelle embouteill\u00e9e au Qu\u00e9bec | Amaro"}
\ No newline at end of file
added data/enrich_cache/ambroisemaria.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ambroisemaria.com", "logo_url": "https://ambroisemaria.com/wwwroot/img/apple-touch-icon.png", "cover_url": "https://ambroisemaria.com/wwwroot/img/logoamboise.jpg", "description_meta": "P&#226;tisserie Ambroise", "site_name": "P\u00e2tisserie Ambroise Maria Commande Croissant Gasp\u00e9sie"}
\ No newline at end of file
added data/enrich_cache/amelielegault.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "amelielegault.com", "logo_url": "https://sardinesstudio.com/cdn/shop/files/favicon_983433f0-052c-4d9a-b297-78c143618cf6.png?crop=center&height=48&v=1727979332&width=48", "cover_url": "http://sardinesstudio.com/cdn/shop/files/Banner-Shopify-Sardines.png?v=1727963939", "description_meta": "Discover Sardines Studio, a vibrant collection of whimsical art and illustrations by talented artists. Explore unique prints, greeting cards, and more featuring playful animals, colorful designs, and imaginative creations. Perfect for art lovers and gift seekers alike!", "site_name": "Sardines Studio"}
\ No newline at end of file
added data/enrich_cache/amenagementpaysagerav.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "amenagementpaysagerav.ca", "logo_url": "https://amenagementpaysagerav.ca/favicon.ico", "cover_url": null, "description_meta": "Am\u00e9nagement paysager \u00e0 Laval et sur la Rive-Nord Am\u00e9nagement Paysager AV La saison d&rsquo;am\u00e9nagement 2026 est lanc\u00e9e Soumission gratuite! \u00c0 propos d&rsquo;Am\u00e9nagement Paysager AV Pav\u00e9 uni All\u00e9es, terrasses ou patios : un pav\u00e9 durable et e", "site_name": "Am\u00e9nagement Paysager AV"}
\ No newline at end of file
added data/enrich_cache/amereaboire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "amereaboire.com", "logo_url": "https://amereaboire.com/wp-content/uploads/2020/08/cropped-Logo-lame\u0300re-a\u0300-boire_OK-1-180x180.png", "cover_url": "https://amereaboire.com/wp-content/uploads/2020/08/image-biere-3-scaled.jpeg", "description_meta": "L&#039;Am\u00e8re \u00e0 Boire est une brasserie artisanale situ\u00e9e sur la rue Saint-Denis \u00e0 Montr\u00e9al. Microbrasserie Montr\u00e9al.", "site_name": "Brasserie l&#039;Am\u00e8re \u00e0 Boire"}
\ No newline at end of file
added data/enrich_cache/ameroquois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ameroquois.ca", "logo_url": "https://ameroquois.ca/wp-content/uploads/2023/11/cropped-Ameroquois_low-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ammatherapie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ammatherapie.ca", "logo_url": "https://ammatherapie.ca/wp-content/uploads/2023/09/cropped-Amma_Therapie_logo-180x180.png", "cover_url": "https://ammatherapie.ca/wp-content/uploads/2017/05/amma-therapie-cervical-lifestyle.jpg", "description_meta": "Amma Th\u00e9rapie est une entreprise familiale o\u00f9 l\u2019objectif est simple : soulager et donner du bien-\u00eatre en respectant la nature et l\u2019humain.", "site_name": "Amma Th\u00e9rapie | Site officiel"}
\ No newline at end of file
added data/enrich_cache/amourliquide.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "amourliquide.com", "logo_url": "https://amourliquide.com/wp-content/uploads/2022/04/cropped-AL_FAVEICON-180x180.png", "cover_url": "https://amourliquide.com/wp-content/uploads/2022/11/01.jpg", "description_meta": "Amour Liquide est une marque de pr\u00eat-\u00e0-boire alcoolis\u00e9 offrant une gamme de cocktails qualit\u00e9-bar en format de poche. Agiter, verser, aimer.", "site_name": "Amour Liquide"}
\ No newline at end of file
added data/enrich_cache/amuletteboutique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "amuletteboutique.com", "logo_url": "https://www.amuletteboutique.com/favicon.ico", "cover_url": null, "description_meta": "Bijoux en argent cr\u00e9\u00e9s \u00e0 partir de vrais fleurs et plantes par B\u00e9n\u00e9dite S\u00e9guin, joailli\u00e8re originaire de Charlevoix, Qu\u00e9bec. Collections Lilas, Orchid\u00e9es et Herbier. Visitez notre boutique en ligne!", "site_name": "Boutique Amulette"}
\ No newline at end of file
added data/enrich_cache/aniello-atelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aniello-atelier.com", "logo_url": "https://www.aniello-atelier.com/cdn/shop/files/favicon_aniello.png?v=1731775525&width=180", "cover_url": "http://www.aniello-atelier.com/cdn/shop/files/aniello_atelier_signature_grande_noir_9aae8a56-b123-42e7-8243-9042f6a34584.png?v=1657062319&width=2048", "description_meta": "Aniello Atelier - Chaque cr\u00e9ation laisse la mati\u00e8re s\u2019exprimer et nous raconter des histoires o\u00f9 le temps et le travail de la main sont rois. - Bijoux uniques en argent faits main au Qu\u00e9bec.", "site_name": "Aniello Atelier"}
\ No newline at end of file
added data/enrich_cache/annemariechagnon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "annemariechagnon.com", "logo_url": "https://annemariechagnon.com/cdn/shop/files/favicon-blanc-amc.jpg?v=1714575319&width=180", "cover_url": "http://annemariechagnon.com/cdn/shop/files/social-share.jpg?v=1739832231&width=2048", "description_meta": "D\u00e9couvrez les bijoux Anne-Marie Chagnon, soigneusement fabriqu\u00e9s \u00e0 la main au Qu\u00e9bec depuis 1995. Des cr\u00e9ations uniques et \u00e9l\u00e9gantes pour sublimer votre style. Explorez notre collection et trouvez le bijou parfait pour chaque occasion. Qualit\u00e9 et authenticit\u00e9 garanties.", "site_name": "Anne-Marie Chagnon"}
\ No newline at end of file
added data/enrich_cache/annerenedecotret.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "annerenedecotret.com", "logo_url": "https://static.wixstatic.com/media/aa5734_5836d66716054c3aa2dc87ed226b4526%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/aa5734_5836d66716054c3aa2dc87ed226b4526%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/aa5734_c0297d4f4d5d42819c0934177fdd3ea9%7Emv2.png/v1/fit/w_2500,h_1330,al_c/aa5734_c0297d4f4d5d42819c0934177fdd3ea9%7Emv2.png", "description_meta": null, "site_name": "artiste-peintre"}
\ No newline at end of file
added data/enrich_cache/aoutrance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aoutrance.com", "logo_url": "https://www.aoutrance.com/uploads/b/b0ded9b0-510f-11ee-82b0-f9d6e4e3df66/favicon-32x32.png", "cover_url": "https://www.aoutrance.com/uploads/b/b0ded9b0-510f-11ee-82b0-f9d6e4e3df66/aoutrance_noir_sur_vert.jpg", "description_meta": "Notre mission, vous faire bien manger et bien boire via tous nos volets: microbrasserie, buvette/restaurant, \u00e9picerie et traiteur.", "site_name": "\u00c0 Outrance"}
\ No newline at end of file
added data/enrich_cache/aperoazero.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aperoazero.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/5f21a69b697d800536236727/d2ab375b-f3ad-415c-9abd-26e9344169f0/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5f21a69b697d800536236727/t/65fcaa28afd5b82f157ea51e/1711057468977/AperoAZero-By-LauraMaala-5.jpg?format=1500w", "description_meta": "Ap\u00e9ro \u00e0 z\u00e9ro est la meilleure s\u00e9lection de produits sans alcool au Canada et le premier magasin sans alcool au Qu\u00e9bec! The best selection of non-alcoholic in Canada and the first alcohol-free store in Quebec!", "site_name": "Ap\u00e9ro \u00e0 z\u00e9ro"}
\ No newline at end of file
added data/enrich_cache/apicurieux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "apicurieux.ca", "logo_url": "https://www.apicurieux.ca/uploads/b/c6ca9c40-e5df-11ec-a5e0-8f661d2c14c0/icon_180x180_ios_Njc5OT.png?width=180", "cover_url": null, "description_meta": "Ferme apicole situ\u00e9e \u00e0 Sainte-Rose-du-Nord qui produit un miel forestier en zone bor\u00e9ale et Atelier culinaire.", "site_name": "Apicurieux"}
\ No newline at end of file
added data/enrich_cache/apikol.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "apikol.ca", "logo_url": "https://apikol.ca/wp-content/uploads/2021/11/cropped-cropped-apikol.logo_.sticky-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/apiverte.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "apiverte.ca", "logo_url": "https://apiverte.ca/cdn/shop/files/apiverte_3x_7a7a6f92-91e5-4cdd-a4e1-8438f30a8501.png?crop=center&height=48&v=1614348677&width=48", "cover_url": "http://apiverte.ca/cdn/shop/files/social-1-1.jpg?v=1710543113", "description_meta": "Apiverte is creator of the patent-pending Atria, elegant beekeeping designed for you. They have also developed Chariot Honeycomb Frames and are the leading producer of artisan honey in the Gatineau Hills region of Quebec.", "site_name": "Apiverte"}
\ No newline at end of file
added data/enrich_cache/apothicari.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "apothicari.ca", "logo_url": "https://apothicari.ca/wp-content/uploads/2024/07/Apothicari_Favicon-1.svg", "cover_url": "https://apothicari.ca/wp-content/uploads/2024/07/ApothicAri_OG-images-vf.jpg", "description_meta": "Apothicari propose des soins holistiques sur mesure alliant herboristerie, accompagnement bien-\u00eatre et savoir-faire traditionnel pour soutenir votre sant\u00e9 globale naturellement.", "site_name": "ApothicAri"}
\ No newline at end of file
added data/enrich_cache/app.cyberimpact.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "app.cyberimpact.com", "logo_url": "https://app.cyberimpact.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/app.flodesk.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "app.flodesk.com", "logo_url": "https://app.flodesk.com/apple-touch-icon.png", "cover_url": "https://app.flodesk.com/flodesk.jpg", "description_meta": "Beginners and experts use Flodesk to grow their business. Design emails and forms that look great on any device. Try it free.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/app.next.nuorder.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "app.next.nuorder.com", "logo_url": "https://app.next.nuorder.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/app.ueat.io.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "app.ueat.io", "logo_url": "https://app.ueat.io/android-icon-192x192.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/appalachesnature.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "appalachesnature.com", "logo_url": "https://appalachesnature.com/wp-content/uploads/2019/06/cropped-mountain-1-300x300.png", "cover_url": null, "description_meta": "Appalaches Nature, des produits de l&#039;\u00e9rable de qualit\u00e9 sup\u00e9rieure en harmonie avec l&#039;environnement, les producteurs ac\u00e9riculteurs et les techniques modernes.", "site_name": "Appalaches Nature"}
\ No newline at end of file
added data/enrich_cache/applesnax.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "applesnax.com", "logo_url": "https://www.applesnax.com/dist/assets/favicons/apple-touch-icon-1024x1024.png", "cover_url": "https://applesnax.com/files/meta/_1200x630_crop_center-center_82_none/vergers-leahy.jpg?mtime=1709159797", "description_meta": "Since 1980, Vergers Leahy has been using its know-how to create healthy, gourmet, quality products.", "site_name": "Applesnax"}
\ No newline at end of file
added data/enrich_cache/aprtcreations.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aprtcreations.ca", "logo_url": "https://www.aprtcreations.ca/favicon.ico", "cover_url": "http://www.aprtcreations.ca/cdn/shop/files/APRT_logo_officiel_1200x1200.png?v=1671757421", "description_meta": "Discover our cute and comfy women&#39;s clothing now", "site_name": "APRT Cr\u00e9ations"}
\ No newline at end of file
added data/enrich_cache/aquafuchsia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aquafuchsia.com", "logo_url": "https://www.aquafuchsia.com/wp-content/uploads/2017/07/favicon-57.png", "cover_url": "https://www.aquafuchsia.com/wp-content/uploads/2017/07/logo-aquafuchsia.png", "description_meta": "Bienvenue sur notre site\r\no\u00f9 de grandes choses se passent! \r\n\r\nVous trouverez une liste compl\u00e8te de nos produits, leurs valeurs nutritionnelles, ainsi qu\u2019o\u00f9 vous les procurer. Venez nous visiter r\u00e9guli\u00e8rement, nous aurons \u00e0 votre disposition des id\u00e9es de recettes en plus d\u2019avoir des articles sur la nutrition et le bien-\u00eatre.\r\n\r\nVous voulez en savoir d\u2019avantage", "site_name": "Les aliments Aquafuchsia, Laval, Qc"}
\ No newline at end of file
added data/enrich_cache/aquaovo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aquaovo.com", "logo_url": "https://aquaovo.com/cdn/shop/files/Group_55.png?crop=center&height=32&v=1711581196&width=32", "cover_url": "http://aquaovo.com/cdn/shopifycloud/storefront/assets/no-image-100-2a702f30_small.gif", "description_meta": "AQUAOVO is a world leader in Eco Friendly Water Dispenser and Water Filtration Systems. Launched over 10 years ago by Montreal Designer Manuel Desrochers, the AQUAOVO experience has since been providing sexy eco conscious alternatives to Bottled Water and uninspired Water Filtration devices.", "site_name": "AQUAOVO"}
\ No newline at end of file
added data/enrich_cache/aquavelo.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aquavelo.ca", "logo_url": "https://aquavelo.ca/wp-content/uploads/2025/06/cropped-final_slogo-180x180.png", "cover_url": "https://aquavelo.ca/wp-content/uploads/2025/06/hero_image.jpeg", "description_meta": "D\u00e9couvrez Aquav\u00e9lo, les v\u00e9los aquatiques innovants pour profiter des lacs du Qu\u00e9bec.", "site_name": "V\u00e9lo aquatique au Qu\u00e9bec | Aquav\u00e9lo"}
\ No newline at end of file
added data/enrich_cache/aquaventurecharlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aquaventurecharlevoix.ca", "logo_url": "https://static.wixstatic.com/media/a67fb1_b1be7c97cbcc45299386094bd69b0760%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a67fb1_b1be7c97cbcc45299386094bd69b0760%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/archambault.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "archambault.ca", "logo_url": "https://archambault.ca/fav/apple-icon-180x180.png", "cover_url": "https://www.archambault.ca/images/logo.svg", "description_meta": "Notre magasin en ligne propose un large \u00e9ventail de produits de divertissement pour tous : livres, musique, films, jeux, accessoires, cadeaux, et bien plus!", "site_name": "Archambault"}
\ No newline at end of file
added data/enrich_cache/argousier.quebec.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "argousier.quebec", "logo_url": "https://argousier.quebec/wp-content/uploads/2021/04/cropped-Ferme-dAchille-logo-identite-site-v3-300x300.png", "cover_url": "https://argousier.quebec/wp-content/uploads/2021/07/VF-image-produits-boutique-en-ligne-15-1024x768.png", "description_meta": "La Ferme d&#039;Achille vous propose de nombreux produits biologiques \u00e0 base d&#039;argousier. - D\u00e9couvrez les bienfaits de la baie d&#039;argousier!", "site_name": "La Ferme d&#039;Achille"}
\ No newline at end of file
added data/enrich_cache/argousiere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "argousiere.com", "logo_url": "https://www.argousiere.com/wp-content/uploads/2023/01/favicon.png", "cover_url": null, "description_meta": "Le meilleur de l&#039;argousier", "site_name": "Verger l&#039;Argousi\u00e8re"}
\ No newline at end of file
added data/enrich_cache/arico.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "arico.ca", "logo_url": "https://arico.ca/cdn/shop/files/ARICO_Logo-500x500_VT_cb625208-c595-4658-80f4-5a124108e67f.png?crop=center&height=48&v=1686926238&width=48", "cover_url": "http://arico.ca/cdn/shop/files/Fiche_produit_Shopify_1000x1000_6_1200x1200.png?v=1762394595", "description_meta": "Fond\u00e9e en 2019, ARICO est une entreprise manufacturi\u00e8re sp\u00e9cialis\u00e9e en conception et fabrication de bean bags et accessoires ergonomiques. Nos produits aident \u00e0 r\u00e9duire le stress et favorisent une bonne posture, se distinguant par leur design unique et des tissus durables, parfaits pour tous les environnements.", "site_name": "Arico.ca"}
\ No newline at end of file
added data/enrich_cache/arida.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "arida.ca", "logo_url": "https://arida.ca/favicon.ico", "cover_url": null, "description_meta": "Fruits d\u00e9shydrat\u00e9s, l\u00e9gumes d\u00e9shydrat\u00e9s, fraises d\u00e9shydrat\u00e9es, ananas d\u00e9shydrat\u00e9s, fruits pour microbrasseries, fruits secs, pommes d\u00e9shydrat\u00e9es, kiwis d\u00e9shydrat\u00e9s", "site_name": "Les aliments Arida"}
\ No newline at end of file
added data/enrich_cache/aristocuisine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aristocuisine.com", "logo_url": "https://aristocuisine.com/wp-content/uploads/2022/03/cropped-footer-logo-removebg-preview-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/arquebuserie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "arquebuserie.ca", "logo_url": "https://arquebuserie.ca/wp-content/uploads/2026/04/cropped-LOGO_8-180x180.png", "cover_url": null, "description_meta": "Bienvenue \u00e0 l&rsquo;Arquebuserie Abitibi! En tant qu\u2019artisan arquebusier, mon int\u00e9r\u00eat est envers les armes de chasse commun\u00e9ment utilis\u00e9es par les civils du 18e et 19e si\u00e8cles afin de subvenir \u00e0 leurs besoins. J\u2019offre la conception et fabrication des accoutrements n\u00e9cessaire \u00e0 l\u2019utilisation de ce type d\u2019armes. Seul des outils et m\u00e9thodes traditionnelles sont utilis\u00e9es afin &hellip; Continuer la le", "site_name": "ARQUEBUSERIE ABITIBI"}
\ No newline at end of file
added data/enrich_cache/arsenaldistillerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "arsenaldistillerie.com", "logo_url": "https://arsenaldistillerie.com/wp-content/uploads/2024/12/favicon-300x300.png", "cover_url": "https://arsenaldistillerie.com/wp-content/uploads/2024/12/Arsenal-Resto.jpg", "description_meta": "Situ\u00e9 dans une ancienne usine historique, la Distillerie Arsenal offre un d\u00e9cor industriel o\u00f9 spiritueux et plats s\u2019harmonisent pour des soir\u00e9es m\u00e9morables.", "site_name": "Distillerie Arsenal &amp; Co."}
\ No newline at end of file
added data/enrich_cache/artbeton.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artbeton.ca", "logo_url": "https://artbeton.ca/favicon.ico", "cover_url": "https://artbeton.ca/wp-content/uploads/2022/07/1-comptoir-beton-ilot.jpg", "description_meta": "Art B\u00e9ton propose des enduits de b\u00e9ton d\u00e9coratif de qualit\u00e9 sup\u00e9rieure \u00e0 travers le Canada. R\u00e9novez votre maison \u00e0 bas prix !", "site_name": "ART B\u00c9TON"}
\ No newline at end of file
added data/enrich_cache/artcimentdecoration.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artcimentdecoration.ca", "logo_url": "https://artcimentdecoration.ca/owebo-votresite/sites/default/files/images/favicon-votresite.png", "cover_url": "https://artcimentdecoration.ca/sites/default/files/images/modle.jpg", "description_meta": "Art Ciment D\u00e9coration se sp\u00e9cialise dans le b\u00e9ton estamp\u00e9, b\u00e9ton projet\u00e9 et au fini de roche en b\u00e9ton.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/artgraphique.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artgraphique.ca", "logo_url": "https://artgraphique.ca/favicon.ico", "cover_url": "https://cfaf9f12.delivery.rocketcdn.me/wp-content/uploads/2025/04/logo-artgraphique-800x800-1.jpg", "description_meta": "Impression grand format, Enseigne, Lettrage, Banni\u00e8re r\u00e9tractable Roll-up, Sticker personnalis\u00e9, Oriflamme, beach flag, Flyer, Brochure et D\u00e9pliant", "site_name": "https://artgraphique.ca"}
\ No newline at end of file
added data/enrich_cache/arthicetnunc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "arthicetnunc.com", "logo_url": "https://arthicetnunc.com/favicon.ico", "cover_url": "http://arthicetnunc.com/cdn/shop/files/ART_HIC_ET_NUNC_Poterie_Atelier_Ceramique_Pottery_Studio_Artistes_853e2597-5ab3-429b-8b98-59ebabf70b6e.png?v=1613217873", "description_meta": "Achat et vente en ligne arthicetnunc.com ou \u00e0 notre Galerie Atelier - Le Panier bleu fait au Qu\u00e9bec - Venez nous rencontrer \u00e0 St-\u00c9tienne-de-Bolton, Qc, Estrie - Lydia Fortin and Sharlotte Novoa Guandique, artistes professionnelles (CMAQ).", "site_name": "ART HIC ET NUNC"}
\ No newline at end of file
added data/enrich_cache/arthriplus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "arthriplus.com", "logo_url": "https://arthriplus.com/wp-content/uploads/2023/02/ArthriPlus_favicon.png", "cover_url": "https://arthriplus.com/wp-content/uploads/2023/06/Image.png", "description_meta": "D\u00e9couvrez Arthri-Plus\u00ae, con\u00e7u au Qu\u00e9bec : un soulagement 100% naturel et efficace pour vos douleurs articulaires et musculaires.", "site_name": "Arthri-Plus"}
\ No newline at end of file
added data/enrich_cache/artinunat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artinunat.com", "logo_url": "https://artinunat.com/boutique/image/catalog/-Images/image_mise_en_page/logo-pour-favicon.png", "cover_url": null, "description_meta": "Boutique cadeaux et Art autochtone authentique: bijoux, sculptures, capteurs de r\u00eaves. Un joyau unique \u00e0 la Baie James ! Une tradition depuis 1994.", "site_name": "Arts et Tr\u00e9sors Inou\u00efs Boutique"}
\ No newline at end of file
added data/enrich_cache/artisacreations.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artisacreations.ca", "logo_url": "https://artisacreations.ca/favicon.ico", "cover_url": "http://artisacreations.ca/cdn/shop/files/botikiperle_1200x1200.jpg?v=1613692859", "description_meta": "DESIGN ET CR\u00c9ATIONS DE BIJOUX POUR FEMMES / HOMMES / UNISEXES EN ARGENT 925 PLAQU\u00c9 OR ET OR V\u00c9RITABLE PERLES D&#39;EAU DOUCE ET PIERRES PR\u00c9CIEUSES ET ORNEMENTALES SERVICE DE R\u00c9PARATION SUR DEMANDE", "site_name": "Art&#39;Isa Cr\u00e9ations"}
\ No newline at end of file
added data/enrich_cache/artisandulac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artisandulac.ca", "logo_url": "https://artisandulac.ca/wp-content/uploads/2020/04/favicon.png", "cover_url": "https://artisandulac.ca/wp-content/uploads/2023/07/grandes-marques.jpg", "description_meta": "Table de conf\u00e9rence artisanale en bois massif, r\u00e9sine \u00e9poxy et m\u00e9tal. Mobilier qu\u00e9b\u00e9cois pour bureaux, entreprises et salles de r\u00e9union.", "site_name": "L&#039;Artisan du lac"}
\ No newline at end of file
added data/enrich_cache/artisansduvitrail.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artisansduvitrail.com", "logo_url": "https://artisansduvitrail.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/artpublic.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artpublic.ca", "logo_url": "https://artpublic.ca/wp-content/uploads/2025/10/Plan-de-travail-1.png", "cover_url": "https://artpublic.ca/wp-content/uploads/2025/10/Plan-de-travail-1@2x-1.png", "description_meta": "ARTISTES ORGANISATIONS CONTACT Art Public offre un service\u00a0 d\u2019accompagnement pour les artistes et organisations actifs dans le domaine de l\u2019art public. Artistes ArtPublic.ca est l\u00e0 pour soutenir les artistes \u00e0 chaque \u00e9tape de leur parcours. nos services pour artistes Organi sations ArtPublic.ca met son expertise au service des municipalit\u00e9s et des institutions pour r\u00e9aliser des [&hellip;]", "site_name": "ArtPublic.ca"}
\ No newline at end of file
added data/enrich_cache/artsvitrail.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "artsvitrail.com", "logo_url": "https://static.wixstatic.com/media/1f41f2_868fd054f3b84313857b9c2255632f10%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1f41f2_868fd054f3b84313857b9c2255632f10%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/arvidaroasting.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "arvidaroasting.com", "logo_url": "https://www.arvidaroasting.com/cdn/shop/files/L_ARC_rgb_stamp_31c7edba-2406-4e82-bcb0-ffea413642e5_32x32.png?v=1614342277", "cover_url": "http://www.arvidaroasting.com/cdn/shop/files/L_ARC_rgb_cafe_2.png?v=1704487331", "description_meta": "Micro-torr\u00e9facteur \u00e0 Saguenay. Caf\u00e9s de sp\u00e9cialit\u00e9 issus d&#39;un approvisionnement responsable, torr\u00e9fi\u00e9s localement et livr\u00e9s \u00e0 votre porte.", "site_name": "Arvida Roasting Co - Torr\u00e9facteurs"}
\ No newline at end of file
added data/enrich_cache/asdusmokedmeat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "asdusmokedmeat.com", "logo_url": "https://static.wixstatic.com/shapes/72e7ba_83f143a976df467996ca52f7c2d1ad10.svg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ashtonrestaurants.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ashtonrestaurants.ca", "logo_url": "https://ashtonrestaurants.ca/images/favicons/favicon-32x32.png", "cover_url": "https://ashtonrestaurants.ca/images/default-og-img.jpg", "description_meta": "Ashton. Frais. Vrai. 23 succursales servent la meilleure poutine et un menu complet fait d&#x27;ingr&#xE9;dients de premi&#xE8;re qualit&#xE9;.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/aspergesprimera.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aspergesprimera.com", "logo_url": "https://www.aspergesprimera.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/association-pieddesmonts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "association-pieddesmonts.com", "logo_url": "https://www.association-pieddesmonts.com/favicon.png?3", "cover_url": null, "description_meta": "Apprenez-en plus sur l&amp;#039;Association, ses sentiers et son territoire. L&amp;#039;Association administre et entretient le sentier du Mont des Morios", "site_name": null}
\ No newline at end of file
added data/enrich_cache/astroblemecharlevoix.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "astroblemecharlevoix.org", "logo_url": "https://astroblemecharlevoix.org/wp-content/uploads/2025/04/cropped-Logo-Observatoire-Astrobleme_RGB_Meteorite-scaled-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/asymmetricbydesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "asymmetricbydesign.com", "logo_url": "https://asymmetricbydesign.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/atelier-b.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelier-b.ca", "logo_url": "https://atelier-b.ca/cdn/shop/files/favicon.png?crop=center&height=180&v=1613516898&width=180", "cover_url": "http://atelier-b.ca/cdn/shop/files/avatar_facebook_twitter.png?crop=center&height=1200&v=1702083921&width=1200", "description_meta": "5758 Saint-Laurent, Montr\u00e9al. Collections de v\u00eatements et objets durables et minimalistes fabriqu\u00e9s doucement \u00e0 Montr\u00e9al \u00e0 partir de textiles de fibres naturelles. Chaque pi\u00e8ce atelier b a \u00e9t\u00e9 pens\u00e9e par Anne-Marie et Catherine pour \u00eatre facile \u00e0 porter et devenir essentielle au quotidien.", "site_name": "atelier b"}
\ No newline at end of file
added data/enrich_cache/atelier-du-patrimoine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelier-du-patrimoine.ca", "logo_url": "https://www.atelier-du-patrimoine.ca/favicon.ico", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQV-1vwoI7MZhh4tBsr_vBci4a8b8QuEsMOwB5SDHy_r3fyeIXEX-L3mQElANsGu0GyrUMQlx_Ee4oy0cZ1cN_YoNogAnBh3TgH9BGmiOSkc6z5R9QbB-Rz2OEcqBSJVo1BSdtunWIufAoDd7AALOpC3hXdNYMHXWlTzmQXK4jNP3dW8tTz8ivas8XW8-sexphSCNrY3-PWmdQc8cAeRSH5LSTQWwujNdtJB08p_QvM=w1280", "description_meta": "Conservation \u2014 Restauration\nPeintures \u2013 Papiers \u2013 Cadres \u2013 Dorures \u2013 Chantiers patrimoniaux", "site_name": null}
\ No newline at end of file
added data/enrich_cache/atelier-letabli.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelier-letabli.ca", "logo_url": "https://atelier-letabli.ca/wp-content/uploads/2015/12/logo-vecto-2016.png", "cover_url": null, "description_meta": "Passionn\u00e9 par la conservation du patrimoine b\u00e2ti, l\u2019Atelier l\u2019\u00c9tabli offre des services sp\u00e9cialis\u00e9s de MENUISERIE et d\u2019\u00c9B\u00c9NISTERIE pour la reproduction et la fabrication de boiseries ornementales, ainsi que pour toute autre composante en bois massif pour l\u2019int\u00e9rieur et l\u2019ext\u00e9rieur. M&rsquo;inscrire \u00e0 l&rsquo;infolettre Atelier l\u2019\u00c9tabli \u2013 2050, rue Dandurand, local 409, Montr\u00e9al (Qu\u00e9bec) H2G 1Y9", "site_name": "Atelier L&#039;\u00c9tabli"}
\ No newline at end of file
added data/enrich_cache/atelier140.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelier140.ca", "logo_url": "https://atelier140.ca/wp-content/uploads/2022/07/350520282_960227435016893_7856219711212397448_n-e1731096796290-300x300.jpg", "cover_url": "https://atelier140.ca/wp-content/uploads/2024/11/422903513_812566777550935_5175978418730100417_n.jpg", "description_meta": "Profitez de notre service d&#039;\u00e9b\u00e9nisterie au Centre-du-Qu\u00e9bec pour la cr\u00e9ation de meubles sur mesure! Contactez Atelier 140 \u00c9b\u00e9nisterie d\u00e8s maintenant.", "site_name": "Atelier 140 \u00c9b\u00e9nisterie"}
\ No newline at end of file
added data/enrich_cache/atelier1ermai.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelier1ermai.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/atelierbalsam.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierbalsam.com", "logo_url": "https://atelierbalsam.com/cdn/shop/files/logo_couleur_2.png?crop=center&height=48&v=1666129845&width=48", "cover_url": null, "description_meta": "D\u00e9couvrez le charme intemporel des arrangements floraux d&#39;Atelier Balsam \u00e0 Gatineau. Achetez en ligne et recevez vos fleurs fra\u00eechement coup\u00e9es \u00e0 domicile.", "site_name": "Atelier Balsam"}
\ No newline at end of file
added data/enrich_cache/atelierboisart.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierboisart.com", "logo_url": "https://atelierboisart.com/cdn/shop/files/favicon_AB_fond-gris2_32x32.jpg?v=1613693592", "cover_url": null, "description_meta": "\u00c9b\u00e9nisterie - Cuisine - Escaliers - Vanit\u00e9 - Rampes - Projet sur mesures Boutique en ligne de mobilier contemporain en bois, fabriqu\u00e9 au Qu\u00e9bec.", "site_name": "Atelier Bois&#39;Art \u00c9b\u00e9nisterie"}
\ No newline at end of file
added data/enrich_cache/atelierboisetcie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierboisetcie.ca", "logo_url": "https://atelierboisetcie.ca/wp-content/uploads/cropped-logo-180x180.png", "cover_url": "https://atelierboisetcie.ca/wp-content/uploads/photo-produi.png", "description_meta": "Atelier Bois &amp; Cie cr\u00e9e des meubles en bois sur mesure et des tables en bois massif fabriqu\u00e9es au Qu\u00e9bec. Qualit\u00e9 artisanale et design intemporel.", "site_name": "Atelier Bois &amp; Cie"}
\ No newline at end of file
added data/enrich_cache/ateliercanopee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliercanopee.ca", "logo_url": "https://ateliercanopee.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ateliercharlotte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliercharlotte.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ateliercub.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliercub.com", "logo_url": "https://www.ateliercub.com/wp-content/uploads/2021/02/cropped-icone-barrenav7-180x180.png", "cover_url": "https://www.ateliercub.com/wp-content/uploads/2026/01/BanniereCustom2-1.jpg", "description_meta": "Designer et maker. Sophie Gailliot et Richard Pontais. Sur mesure, Pi\u00e8ce unique et accessoires en cuir et bois. Studio bas\u00e9 a Montr\u00e9al.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/atelierdalfred.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierdalfred.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5e95e9142d8b1073626b1015/1589733828369-7KI642J7HNGBNZKMPQJZ/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5e95e9142d8b1073626b1015/t/5ec168c2feaa194a8162a89c/1589733572738/Alfred_b.jpg?format=1500w", "description_meta": "La r\u00e9f\u00e9rence par excellence pour une coupe de cheveux et/ou une coupe de barbe sans d\u00e9faut.", "site_name": "Alfred"}
\ No newline at end of file
added data/enrich_cache/atelierdelouis.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierdelouis.ca", "logo_url": "https://www.atelierdelouis.ca/cdn/shop/files/3a-1.jpg?crop=center&height=32&v=1774210853&width=32", "cover_url": "http://www.atelierdelouis.ca/cdn/shop/files/Logo-Transparency.png?height=628&pad_color=ffffff&v=1774210805&width=1200", "description_meta": "Stylos et plumes faits main au Qu\u00e9bec. \u00c9l\u00e9gants, durables et rechargeables. D\u00e9couvrez l\u2019artisanat \u00e9coresponsable de l\u2019Atelier de Louis fait au Qu\u00e9bec.", "site_name": "Atelier de Louis"}
\ No newline at end of file
added data/enrich_cache/atelierdubijou.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierdubijou.ca", "logo_url": "https://www.atelierdubijou.ca/wp-content/uploads/2026/08/cropped-Logo-final-v2-2-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/atelierdumoucheur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierdumoucheur.com", "logo_url": "https://www.atelierdumoucheur.com/sites/default/files/favicon.png", "cover_url": null, "description_meta": "L&#039;Atelier du Moucheur est une boutique sp\u00e9cialis\u00e9 en cannes, moulinets et accessoires de p\u00eache situ\u00e9 \u00e0 Rimouski au Qu\u00e9bec. Depuis 35 ans une r\u00e9f\u00e9rence en p\u00eache a la mouche, fabricant de cannes sur brins haut de gamme, service incomparable!", "site_name": "L&#039;Atelier du Moucheur"}
\ No newline at end of file
added data/enrich_cache/atelierdunordet.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierdunordet.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/65b6863037329b5f0df8ed2c/71b01d4e-792a-468b-9f1e-d0712237d742/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/65b6863037329b5f0df8ed2c/t/66252e94710b212f4f744855/1713712788521/typo_logo.png?format=1500w", "description_meta": null, "site_name": "Atelier du Nordet"}
\ No newline at end of file
added data/enrich_cache/atelieremige.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelieremige.com", "logo_url": "https://atelieremige.com/cdn/shop/files/favicon_32_blanc_bleu.png?crop=center&height=32&v=1687872585&width=32", "cover_url": "http://atelieremige.com/cdn/shop/files/Bague-Justine-diamant-edited_4_d7152313-836f-4f01-889f-29a8faaa1c1a.png?v=1769443358", "description_meta": "Handmade Quebec jewelry creation workshop in Montreal. Rings, necklaces, earrings, bracelets and cufflinks, for small and big occasions. In 18K gold and 925 silver.", "site_name": "Atelier \u00e9mig\u00e9"}
\ No newline at end of file
added data/enrich_cache/atelierformecreation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierformecreation.com", "logo_url": "https://static.wixstatic.com/media/819bf3_46b7e2da5c3e48869b286ca1f468de45%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/819bf3_46b7e2da5c3e48869b286ca1f468de45%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ateliergaston.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliergaston.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/226bfd66-bb7f-45b7-bb90-35b7760e1910/logo/a5b1923e-8ea3-45e1-a488-6e839cd7687a.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/226bfd66-bb7f-45b7-bb90-35b7760e1910/logo/a5b1923e-8ea3-45e1-a488-6e839cd7687a.jpg", "description_meta": null, "site_name": "Atelier GASTON"}
\ No newline at end of file
added data/enrich_cache/atelierhotelmotel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierhotelmotel.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/58c603cf2994cae7ec77d7f5/1489812534127-RLZZN3M86GBGI4118UU7/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/58c603cf2994cae7ec77d7f5/t/5a3014b00d9297e3b10a7ab0/1513100467212/hotelmotel_logo-01.png?format=1500w", "description_meta": "Sneakers and leather accessories, handmade in Montreal, Canada", "site_name": "ATELIER HOTEL MOTEL // SNEAKERS AND ACCESSORIES"}
\ No newline at end of file
added data/enrich_cache/atelierlaf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierlaf.com", "logo_url": "https://www.atelierlaf.com/cdn/shop/files/favicon_02_32x32.gif?v=1613700052", "cover_url": "https://cdn.shopify.com/s/files/1/0194/5847/files/atelier-LAF-logo-horizontal-logo-social-share.jpg?v=1686524981", "description_meta": "Make a statement with Atelier LAF&#39;s fine jewelry, handmade in Montreal. Online shop includes rings, bracelets, necklaces, and pendants for men and women in gold, silver with pearls, diamonds, sapphires, and more. Free shipping on jewellery orders over $50.", "site_name": "Atelier LAF Montreal"}
\ No newline at end of file
added data/enrich_cache/atelierluclaramee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierluclaramee.com", "logo_url": "https://static.wixstatic.com/media/a0b97d_5c1f5c72b6754fd38bc5ea88fbcdd3bd%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a0b97d_5c1f5c72b6754fd38bc5ea88fbcdd3bd%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/a0b97d_1f77ad47c91a49c3954aaa243d9a7e71%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/a0b97d_1f77ad47c91a49c3954aaa243d9a7e71%7Emv2.jpg", "description_meta": "Avec plus de 45 ans d\u2019exp\u00e9rience, Atelier Luc Laram\u00e9e Inc. est fier d\u2019\u00eatre reconnu comme un pilier dans le domaine de l\u2019\u00e9b\u00e9nisterie architecturale. Au fil du temps, l\u2019atelier a su d\u00e9velopper et mettre au point une expertise sup\u00e9rieure aux normes pr\u00e9-\u00e9tablies par l\u2019industrie.", "site_name": "Atelier Luc Laramee"}
\ No newline at end of file
added data/enrich_cache/ateliermajuli.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliermajuli.com", "logo_url": "https://ateliermajuli.com/cdn/shop/files/AtelierMajuli_Logo.png?crop=center&height=32&v=1745086927&width=32", "cover_url": "http://ateliermajuli.com/cdn/shop/files/2025_01_19_02_13_430x_af93cd9e-2ae9-4e40-bc6a-5301d1bff1d8.webp?v=1745115926", "description_meta": "Handmade jewelry inspired by nature, magic, and the softness of the soul. Lovingly crafted in Montreal, each piece tells a story \u2014 your story.", "site_name": "Atelier Majuli"}
\ No newline at end of file
added data/enrich_cache/ateliermoniqueratelle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliermoniqueratelle.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/atelieroboismassif.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelieroboismassif.com", "logo_url": "https://atelieroboismassif.com/apple-icon.png?apple-icon.0~6md9uv7mkgh.png", "cover_url": "https://atelieroboismassif.com/og-default.jpg", "description_meta": "Tables, comptoirs et meubles en bois massif faits \u00e0 la main dans les Basses-Laurentides, Qu\u00e9bec. Pi\u00e8ces uniques, 100% sur mesure.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/atelierora.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierora.ca", "logo_url": "https://www.atelierora.ca/favicon.ico", "cover_url": "http://www.atelierora.ca/cdn/shop/files/Collaboration_Ora3491_1c9ee97d-f12f-4f79-911a-2aacb6ee2751.jpg?v=1747678864", "description_meta": "Atelier de fabrication de lunettes \u00e0 Montr\u00e9al, Qu\u00e9bec. Chaque monture est fa\u00e7onn\u00e9e lentement dans un m\u00e9lange subtil d&#39;art et de pr\u00e9cision. Offrez \u00e0 votre regard une signature unique tout en soutenant le commerce local et l&#39;environnement.", "site_name": "Atelier Ora"}
\ No newline at end of file
added data/enrich_cache/atelierpare.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierpare.com", "logo_url": "https://atelierpare.com/favicon.ico", "cover_url": null, "description_meta": "Le monde de la sculpture et des l&eacutegendes qu&eacutebecoises en direct de l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ateliersaintcerf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliersaintcerf.com", "logo_url": "https://static.wixstatic.com/media/a4baf9_7f87156425b74236b0f47fa60eb3b7c8%7Emv2_d_1800_1800_s_2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a4baf9_7f87156425b74236b0f47fa60eb3b7c8%7Emv2_d_1800_1800_s_2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ateliersderegis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliersderegis.com", "logo_url": "https://components.mywebsitebuilder.com/sitebuilder/apple-touch-icon.png", "cover_url": "https://storage.googleapis.com/wzsitethumbnails/site-48150759/800x500.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ateliertrilobe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliertrilobe.com", "logo_url": "https://static.wixstatic.com/media/e741b2_52dd49329e5c4466a90a325d0f080e9b.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/e741b2_52dd49329e5c4466a90a325d0f080e9b.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ateliervcuir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ateliervcuir.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5e85fc747044216f4f138a2e/1586885637566-17PBDXPS8WFKVQEP5K5I/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5e85fc747044216f4f138a2e/t/5e9f53a27a41fc3c1a1b34c3/1587499941037/LOGO+SOCIAL+SHARING.png?format=1500w", "description_meta": "D\u00e9couvrez nos nos diff\u00e9rents mod\u00e8les de sacs, accessoires et articles de d\u00e9coration pour la maison de cuir v\u00e9ritable, faits \u00e0 la main au Qu\u00e9bec. D\u00e9couvrez plus de 30 mod\u00e8les de sacs \u00e0 bandouill\u00e8re, sac-\u00e0-dos, sac de transport, ceintures, portefeuilles, portecl\u00e9s, jardini\u00e8res, tabliers de travail, na", "site_name": "Atelier V Cuir"}
\ No newline at end of file
added data/enrich_cache/atelierverred.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atelierverred.com", "logo_url": "https://img1.wsimg.com/isteam/ip/b41724d3-8abb-407c-8690-f2066ca5d10e/blob-d58ca40.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/b41724d3-8abb-407c-8690-f2066ca5d10e/D%C3%B4me.jpg", "description_meta": "L&#x27;art de pr\u00e9server la tradition!\nCours de vitraux, Cr\u00e9ationVitrail, VitrailContemporain,VitrailArtistiqueVitrailClassique,cours de vitrail.", "site_name": "Atelier Verred"}
\ No newline at end of file
added data/enrich_cache/atestrie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atestrie.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/atikuss.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atikuss.com", "logo_url": "https://atikuss.com/favicon.ico", "cover_url": null, "description_meta": "Mukluks, Mocassins &amp; bottes de l&#39;espoir : Tous nos produits sont authentiques et fabriqu\u00e9s \u00e0 la main dans une communaut\u00e9 autochtones du Qu\u00e9bec!", "site_name": "Atikuss"}
\ No newline at end of file
added data/enrich_cache/atkinsetfreres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "atkinsetfreres.com", "logo_url": "https://www.atkinsetfreres.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/67ffe30b486d6643ce07af0e/t/6a0e2f2e68dc3c55cb48e214/1781262581238/ATKINS+ET+FRE%CC%80RES.jpg?format=1500w", "description_meta": "D\u00e9couvrez les charcuteries de la mer d", "site_name": "Atkins et fr\u00e8res - Charcutiers de la mer"}
\ No newline at end of file
added data/enrich_cache/attitudeanimale.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "attitudeanimale.com", "logo_url": "https://www.attitudeanimale.com/cdn/shop/files/LOGO_AttitudeAnimale_32x32.jpg?v=1614314260", "cover_url": "http://www.attitudeanimale.com/cdn/shop/files/Attitude_animale_-_Accessoires_pour_chiens_et_chats_1200x1200.png?v=1660062840", "description_meta": "Attitude animale cr\u00e9e avec soin des accessoires pour chiens et chats faits principalement \u00e0 partir de tissus recycl\u00e9s. Fleur, cravate, foulard, porte-sacs \u00e0 d\u00e9chets, jouet pour chat et + encore. D\u00e9couvrez nos accessoires pour chien r\u00e9actif, chien de soutien ou chien d&#39;assistance. Magasinez en ligne maintenant.", "site_name": "Attitude Animale"}
\ No newline at end of file
added data/enrich_cache/attitudenutrition.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "attitudenutrition.ca", "logo_url": "https://attitudenutrition.ca/cdn/shop/files/Icone_attitude_rvb_ff0d57ff-996f-4a53-a1a8-8b3cf0500672.png?crop=center&height=32&v=1748048314&width=32", "cover_url": "http://attitudenutrition.ca/cdn/shop/files/Cans_spalsh_2.png?v=1785423168", "description_meta": "Sparkling plant-based protein drink with 10g of protein, 2g of fiber, 1g of sugar, and no caffeine. An alternative to shakes.", "site_name": "Attitude Nutrition"}
\ No newline at end of file
added data/enrich_cache/aubainerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubainerie.com", "logo_url": "https://aubainerie.com/cdn/shop/files/icon_logo_favi_A.png?crop=center&height=32&v=1699458748&width=32", "cover_url": "http://aubainerie.com/cdn/shop/files/Aubainerie_SM.jpg?v=1715188332", "description_meta": "Mode tendance et abordable pour femmes, hommes, ados, enfants et b\u00e9b\u00e9s. Livraison gratuite \u00e0 partir de 75$ d&#39;achat et retours gratuits!", "site_name": "Aubainerie"}
\ No newline at end of file
added data/enrich_cache/auberge3canards.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auberge3canards.com", "logo_url": "https://d397xw3titc834.cloudfront.net/images/original/1/9b/19b3f116ff225c31f2d77498858e6e59.", "cover_url": "https://d397xw3titc834.cloudfront.net/images/width/575/4/7a/47a5fa10ea25f292470c76e5b6c92914.jpg", "description_meta": "Auberge de 48 chambres et restaurant renomm\u00e9, situ\u00e9 \u00e0 La Malbaie, dans la r\u00e9gion de Charlevoix, R\u00e9serve Mondiale de la Biosph\u00e8re. D\u00e9cor champ\u00eatre avec vue imprenable sur le Fleuve Saint-Laurent.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergealachouenne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergealachouenne.com", "logo_url": "https://static.eviivo.media/ui/wl/4.381/images/favicons/globe/icon32x32.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergeancrage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergeancrage.com", "logo_url": "https://aubergeancrage.com/favicon.ico", "cover_url": null, "description_meta": "G\u00eete en plein coeur de Baie-St-Paul dans Charlevoix, l&#039;Auberge Ancrage, maison des ann\u00e9es 20 enti\u00e8rement r\u00e9nov\u00e9e, borde la rivi\u00e8re du Gouffre.", "site_name": "Auberge Ancrage"}
\ No newline at end of file
added data/enrich_cache/aubergebeausejour.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergebeausejour.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergecampdebase.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergecampdebase.com", "logo_url": "https://www.aubergecampdebase.com/wp-content/uploads/2019/01/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "Dormir \u00e0 l&#039;auberge Faire du camping Profiter des spectacles Salut! Kuei! Kwe! Qey! On aime vraiment \u00e7a recevoir \u00e0 la maison, dans notre belle auberge-resto-bar situ\u00e9e \u00e0 L&#039;Anse-Saint-Jean, un beau petit village lov\u00e9 dans le fjord du Saguenay. Le camp de base, c&#039;est un lieu de rassemblement o\u00f9 se croisent touristes et locaux. Entre h\u00e9bergement,", "site_name": "Auberge Le Camp de Base - Posez les pieds au Saguenay et cr\u00e9ez votre aventure!"}
\ No newline at end of file
added data/enrich_cache/aubergecarpediem.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergecarpediem.ca", "logo_url": "https://aubergecarpediem.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergecheztruchon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergecheztruchon.com", "logo_url": "https://static.wixstatic.com/media/8ad384_cc28f0c3b7b34d43aaee7ec3382f4cc2%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/8ad384_cc28f0c3b7b34d43aaee7ec3382f4cc2%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/7b9eb0_802cc60608974a7db6dce1b003132d10%7Emv2.png/v1/fit/w_2500,h_1330,al_c/7b9eb0_802cc60608974a7db6dce1b003132d10%7Emv2.png", "description_meta": "Bistro-Auberge Chez Truchon vous offre une cuisine go\u00fbteuse et pleine d", "site_name": "Auberge Chez Truchon"}
\ No newline at end of file
added data/enrich_cache/aubergedes21.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergedes21.ca", "logo_url": "https://aubergedes21.ca/favicon.ico", "cover_url": "https://aubergedes21.ca/wp-content/uploads/2023/02/Auberge-des-21-Hotel-a-La-Baie.png", "description_meta": "S\u00e9journez au centre-ville de La Baie \u00e0 l\u2019Auberge des 21. H\u00f4tel \u00e0 Saguenay avec vue sur le Fjord du Saguenay", "site_name": "Auberge des 21 | La Baie | Saguenay"}
\ No newline at end of file
added data/enrich_cache/aubergedesfalaises.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergedesfalaises.com", "logo_url": "https://aubergedesfalaises.com/app/themes/auberge-falaises/img/fav/android-icon-192x192.png", "cover_url": null, "description_meta": "Auberge de La Malbaie, Charlevoix, qui marie les plaisirs du g\u00eete, de la table et de la d\u00e9tente avec un spa nature.", "site_name": "Auberge des Falaises"}
\ No newline at end of file
added data/enrich_cache/aubergedesgallant.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergedesgallant.com", "logo_url": "https://aubergedesgallant.com/wp-content/uploads/2022/10/cropped-Flavicon-180x180.png", "cover_url": null, "description_meta": "S\u00e9jour d\u00e9tente avec spa entre Montr\u00e9al et Ottawa \u00e0 l&#039;Auberge des Gallant. Ressourcez-vous en nature et savourez une cuisine gastronomique.", "site_name": "Auberge des Gallant"}
\ No newline at end of file
added data/enrich_cache/aubergedesglacis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergedesglacis.com", "logo_url": "https://aubergedesglacis.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergedumarchand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergedumarchand.com", "logo_url": "https://cdn.prod.website-files.com/66015daa1543bfab68d9d8ca/660561c17a9a09b4be03484b_web256.svg", "cover_url": "https://cdn.prod.website-files.com/66015daa1543bfab68d9d8ca/66229277d737926234df8b55_S%C3%A9lection_039.png", "description_meta": "Combinant plusieurs types d\u2019h\u00e9bergement, un r\u00e9put\u00e9 restaurant et une \u00e9picerie fine, l\u2019Auberge du Marchand se d\u00e9marque par son offre en trois volets. Notre mission : vous offrir un h\u00e9bergement confortable et une exp\u00e9rience gourmande distinctive dans un \u00e9tablissement chaleureux et convivial.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergegodefroy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergegodefroy.com", "logo_url": "https://www.aubergegodefroy.com/favicon-32x32.png", "cover_url": "https://www.aubergegodefroy.com/images/site/facebook.jpg", "description_meta": "Auberge Godefroy, chic h\u00f4tel pr\u00e8s de Trois-Rivi\u00e8res, entre Montr\u00e9al et Qu\u00e9bec. Spa, gastronomie, golf, d\u00e9tente, mariage, affaires et forfaits personnalis\u00e9s", "site_name": "Auberge Godefroy"}
\ No newline at end of file
added data/enrich_cache/aubergelachatelaine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergelachatelaine.com", "logo_url": "https://cdn.prod.website-files.com/68063d3808a1eb9e4df4f141/68d7252bd1167c443280ae97_256x256Auberge.jpg", "cover_url": "https://cdn.prod.website-files.com/68063d3808a1eb9e4df4f141/6862fec62a316af79377f58d_2ebe675fb5999f0ab02da6286eb0f550_AubergeLaChateleine.jpg", "description_meta": "D\u00e9couvrez nos superbes chambres et venez profiter d\u2019un moment de d\u00e9tente, d\u2019\u00e9change et de convivialit\u00e9 \u00e0 notre auberge tout au long de l\u2019ann\u00e9e.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergeladaina.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergeladaina.com", "logo_url": "https://static.wixstatic.com/media/79d598_06eed2fd450949bbb79e320b951893af%7Emv2.jpeg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/79d598_06eed2fd450949bbb79e320b951893af%7Emv2.jpeg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergelamarmite.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergelamarmite.ca", "logo_url": "https://www.aubergelamarmite.ca/wp-content/uploads/2022/03/cropped-favicon-la-marmite-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergelamarre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergelamarre.com", "logo_url": "https://aubergelamarre.com/wp-content/uploads/2020/04/cropped-anchor-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergelefourapain.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergelefourapain.com", "logo_url": "https://aubergelefourapain.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergelessources.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergelessources.com", "logo_url": "https://static.wixstatic.com/media/839f51_628ba706b2a947c2b41a496cf5b78963%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/839f51_628ba706b2a947c2b41a496cf5b78963%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergelesunshine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergelesunshine.com", "logo_url": "https://www.aubergelesunshine.com/favicon.png", "cover_url": null, "description_meta": "L", "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergepresbytere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergepresbytere.com", "logo_url": "https://img1.wsimg.com/isteam/ip/6d145b06-1689-42de-a59a-05355b5d0919/auberge%20logo.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/6d145b06-1689-42de-a59a-05355b5d0919/auberge%20logo.jpg", "description_meta": "L&#x27;Auberge Presbyt\u00e8re Mont lac-vert, situ\u00e9 \u00e0 la sortie du Parc des Laurentides, relais \u00e0 motoneige l&#x27;hiver et pour les motos, cyclistes et amateur de quad l&#x27;\u00e9t\u00e9.", "site_name": "Auberge Presbytere, Mont Lac-Vert"}
\ No newline at end of file
added data/enrich_cache/aubergesurlacote.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergesurlacote.com", "logo_url": "https://d397xw3titc834.cloudfront.net/images/original/a/2b/a2b6b0650f77adb9d6371f7f5efd7899.", "cover_url": "https://d397xw3titc834.cloudfront.net/images/width/575/f/6f/f6f90782635cdc91c5003121a33d1b3c.jpg", "description_meta": "Situ\u00e9e \u00e0 Pointe-au-Pic, secteur pris\u00e9 de La Malbaie, l\u2019Auberge sur la C\u00f4te est le pied-\u00e0-terre parfait pour acc\u00e9der \u00e0 toutes les activit\u00e9s et d\u00e9couvertes que vous propose la merveilleuse r\u00e9gion de Charlevoix.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/aubergesuttonbrouerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubergesuttonbrouerie.com", "logo_url": "https://aubergesuttonbrouerie.com/favicon.ico", "cover_url": "https://aubergesuttonbrouerie.com/wp-content/uploads/2018/10/sutton-brouerie-e1541190053133.jpg", "description_meta": "D\u00e9couvrez notre bistro et sa cuisine locale, d\u00e9gustez nos bi\u00e8res de microbrasserie et s\u00e9journez dans l&#039;une de nos chambres des plus conviviales.", "site_name": "Auberge Sutton Brou&euml;rie"}
\ No newline at end of file
added data/enrich_cache/aubiermicrobrasserie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubiermicrobrasserie.com", "logo_url": "https://img1.wsimg.com/isteam/ip/98e09dfd-f3ce-43e4-ad2e-3c25e0875334/blob-7aed1b3.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/98e09dfd-f3ce-43e4-ad2e-3c25e0875334/Aubier_Microbrasserie_279-f98a211.jpg", "description_meta": "D\u00e9couvrez Aubier Microbrasserie \u00e0 Drummondville, votre destination pour des bi\u00e8res artisanales et une cuisine d\u00e9licieuse.", "site_name": "Aubier Microbrasserie"}
\ No newline at end of file
added data/enrich_cache/aubonheurdespains.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubonheurdespains.ca", "logo_url": "https://aubonheurdespains.ca/favicon.ico", "cover_url": "https://www.aubonheurdespains.ca", "description_meta": "Au Bonheur des Pains vous offre une vari\u00e9t\u00e9 de produits faits main, frais du jour, selon les principes de la boulangerie artisanale \u00e0 l\u2019ancienne.", "site_name": "Au bonheur des pains - Boulangerie Artisanale"}
\ No newline at end of file
added data/enrich_cache/aubut.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aubut.ca", "logo_url": "https://www.aubut.ca/assets/img/shared/favicon/apple-touch-icon.png", "cover_url": "https://www.aubut.ca/assets/img/frontend/icons/aubut-main-logo-2022.png", "description_meta": "Magasinez tous vos produits alimentaires chez Aubut, avec une large s\u00e9lection de plus de 10 000 produits et ce au meilleurs prix. Tout pour les restaurateurs, d\u00e9panneurs et le grand public.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/auchaletenboisrond.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auchaletenboisrond.com", "logo_url": "https://www.auchaletenboisrond.com/assets/images/favicon.png", "cover_url": null, "description_meta": "Vivez une exp\u00e9rience de vacances inoubliable! D\u00e9couvrez nos luxueux chalets authentiques en bois rond et participez \u00e0 de nombreuses activit\u00e9s sur place.", "site_name": "Fran\u00e7ais"}
\ No newline at end of file
added data/enrich_cache/aucoeurdelapomme.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aucoeurdelapomme.ca", "logo_url": "https://aucoeurdelapomme.ca/wp-content/uploads/2018/08/cropped-favicon-1-300x300.png", "cover_url": "https://aucoeurdelapomme.ca/wp-content/uploads/2020/02/au-coeur-de-la-pomme-FB.jpg", "description_meta": "Au coeur de la pomme, verger \u00e0 Frelighsburg depuis 1982. Vinaigre de cidre artisanal et une vari\u00e9t\u00e9 de confitures, gel\u00e9es, moutardes et marinades.", "site_name": "Vergers Au Coeur de la Pomme"}
\ No newline at end of file
added data/enrich_cache/aucoeurdesarts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aucoeurdesarts.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Au Coeur des Arts de Saint-Sim\u00e9on est un rassemblement artistique estival annuel sous la formule d\u2019un \u00ab March\u00e9 d", "site_name": "Au Coeur Des Arts"}
\ No newline at end of file
added data/enrich_cache/aucoeurdesbois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aucoeurdesbois.ca", "logo_url": "https://aucoeurdesbois.ca/favicon.ico", "cover_url": null, "description_meta": "Cueillette de produits forestiers, \u00e9coresponsable, offrant aux particuliers et restaurateurs du Saguenay, de Qu\u00e9bec et des Laurentides des produits frais et s\u00e9ch\u00e9s.", "site_name": "Au coeur des bois"}
\ No newline at end of file
added data/enrich_cache/aucoeurfondant.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aucoeurfondant.com", "logo_url": "https://aucoeurfondant.com/favicon.ico", "cover_url": null, "description_meta": "La chocolaterie Au Coeur Fondant offre de nombreux produits qui satisferont les fins gourmets que vous \u00eates, la diversit\u00e9e des bouch\u00e9es sucr\u00e9es vous enchanteron", "site_name": "Chocolaterie Au Coeur Fondant"}
\ No newline at end of file
added data/enrich_cache/audiablevert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "audiablevert.com", "logo_url": "https://audiablevert.com/wp-content/uploads/2020/09/fav57.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/audreyseyer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "audreyseyer.com", "logo_url": "https://www.audreyseyer.com/favicon.ico", "cover_url": "http://www.audreyseyer.com/cdn/shop/files/Logo_Audrey_Seyer.png?v=1628281311", "description_meta": "J&#39;aide les femmes fortes et p\u00e9tillantes \u00e0 faire briller leur f\u00e9minit\u00e9 pour qu&#39;elles se sentent libres d&#39;\u00eatre elles-m\u00eames. Je cr\u00e9e des bijoux en argent et en or textur\u00e9s et minimalistes. Je r\u00e9alise aussi des bijoux sur mesure ainsi que des alliances \u00e0 votre image.", "site_name": "Audrey Seyer Joailli\u00e8re"}
\ No newline at end of file
added data/enrich_cache/aufindelice.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aufindelice.com", "logo_url": "https://aufindelice.com/cdn/shop/files/AFDE-Logomark_32x32.png?v=1613518291", "cover_url": "http://aufindelice.com/cdn/shop/files/AFDE-SocialThumbnail_1200x1200.jpg?v=1613519299", "description_meta": "Bleueti\u00e8re et \u00e9rabli\u00e8re biologiques \u00e0 moins de 45 minutes de l&#39;Ouest de Montr\u00e9al.", "site_name": "Au Fin D\u00e9lice"}
\ No newline at end of file
added data/enrich_cache/aufinpalais.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aufinpalais.com", "logo_url": "https://res.cloudinary.com/dtdsjzhcg/image/upload/v1776392054/FAVICONX500X500_qzvvxl.png", "cover_url": "https://res.cloudinary.com/dsatxsprr/image/upload/v1784169632/MEGAWIN_oztrkn.png", "description_meta": "MEGAWIN adalah platform slot gacor yang menyediakan link utama Au Fin Palais untuk login dan deposit tanpa verifikasi.", "site_name": "MEGAWIN"}
\ No newline at end of file
added data/enrich_cache/aufrontibus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aufrontibus.com", "logo_url": "https://static.wixstatic.com/media/fcbea6_10980e5da1da4c5698ddbd0f8dc237eb%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/fcbea6_10980e5da1da4c5698ddbd0f8dc237eb%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/fcbea6_5a4ccef0499f4b0f848fe775fc39d4f9~mv2.png/v1/fill/w_1920,h_1080,al_c/fcbea6_5a4ccef0499f4b0f848fe775fc39d4f9~mv2.png", "description_meta": "Microbrasserie Au Frontibus | Bi\u00e8res artisanales | plus de 300 points de vente | Boutique en ligne | Pub restaurant | produits gasp\u00e9siens", "site_name": "Microbrasserie Au Frontibus"}
\ No newline at end of file
added data/enrich_cache/auhavredelanse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auhavredelanse.com", "logo_url": "https://static.wixstatic.com/media/0f58e9_09b6777a129845d392b8e689cb98d51f%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/0f58e9_09b6777a129845d392b8e689cb98d51f%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aujardinnoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aujardinnoir.com", "logo_url": "https://www.aujardinnoir.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Au Jardin Noir"}
\ No newline at end of file
added data/enrich_cache/aumenu.info.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aumenu.info", "logo_url": "http://aumenu.info/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aumilieudeschamps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aumilieudeschamps.com", "logo_url": "https://aumilieudeschamps.com/wp-content/uploads/2025/01/amdc-favicon-512x512-1.svg", "cover_url": "https://aumilieudeschamps.com/wp-content/uploads/2025/01/repas-cabane-sucre-maison-authentique-scaled.webp", "description_meta": "D\u00e9couvrez Au milieu des champs, une cabane \u00e0 sucre authentique situ\u00e9e \u00e0 Mirabel pr\u00e8s de Montr\u00e9al. Profitez d&#039;une exp\u00e9rience chaleureuse avec un menu 100% fait maison et rencontrez nos animaux de ferme.", "site_name": "Cabane \u00e0 sucre Au milieu des champs"}
\ No newline at end of file
added data/enrich_cache/aupaturage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aupaturage.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/64107dca9d26af19841b87d8/281e1d56-276f-4f46-af62-6aec02541af7/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/64107dca9d26af19841b87d8/t/641dda56ef63710c132c2fef/1679678038213/aupat_chanetleschamps.jpg?format=1500w", "description_meta": null, "site_name": "Au p\u00e2turage"}
\ No newline at end of file
added data/enrich_cache/aupavillonnoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aupavillonnoir.com", "logo_url": "https://aupavillonnoir.com/ressources/images/favicon/android-icon-192x192.png", "cover_url": "https://aupavillonnoir.com/uploads/resultats-recherche-google.png", "description_meta": "Au Pavillon Noir est un restaurant chic et sympathique situ\u00e9 devant le quai des croisi\u00e8res \u00e0 La Baie.", "site_name": "Restaurant Au Pavillon Noir"}
\ No newline at end of file
added data/enrich_cache/aupetitpoucet.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aupetitpoucet.ca", "logo_url": "https://aupetitpoucet.ca/wp-content/uploads/2015/06/ppfav.jpg", "cover_url": null, "description_meta": "Venez d\u00e9couvrir une cuisine typiquement qu\u00e9becoise et authentique \u00e0 notre restaurant Au Petit Poucet \u00e0 Val David, dans les Laurentides.", "site_name": "Au Petit Poucet"}
\ No newline at end of file
added data/enrich_cache/aupieddecochon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aupieddecochon.ca", "logo_url": "https://cdn.shoplightspeed.com/shops/649413/themes/16825/v/781642/assets/apple-touch-icon.png?20230602151521", "cover_url": "https://cdn.shoplightspeed.com/shops/649413/themes/16825/v/787359/assets/social-media-image.jpg?20230922185302", "description_meta": "Entreprise qu\u00e9b\u00e9coise \u00e9tablie depuis une vingtaine d&#039;ann\u00e9es, regroupant, entre autre, deux cabanes \u00e0 sucre et une cidrerie situ\u00e9es \u00e0 Mirabel, un restaura", "site_name": "Au Pied de Cochon"}
\ No newline at end of file
added data/enrich_cache/aupiedleve.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aupiedleve.ca", "logo_url": "http://aupiedleve.ca/images/favicon.ico?crc=350759862", "cover_url": null, "description_meta": "\u00c0 la Ferme Au Pied Lev\u00e9, on vous accueille pour sa table de produits locaux, pour sa nuit\u00e9 \u00e0 la campagne, pour y voir ses animaux. Tout \u00e7a ici avec vous !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/aupoulailler.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aupoulailler.ca", "logo_url": "https://aupoulailler.ca/gallery/favicons/favicon-192x192.png", "cover_url": "https://aupoulailler.ca/gallery_gen/1e7bee78573171d4d228a1243ad6dd26_fit.png", "description_meta": "Ferme mara\u00eech\u00e8re, transformation alimentaire, ateliers et \u00e9v\u00e9nements", "site_name": null}
\ No newline at end of file
added data/enrich_cache/auptitbonheur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auptitbonheur.com", "logo_url": "https://auptitbonheur.com/cdn/shop/files/favicon_32x32.png?v=1627063682", "cover_url": "http://auptitbonheur.com/cdn/shop/files/galerie-d-art-au-ptit-bonheur.jpg?v=1645462849", "description_meta": "D\u00e9couvrez une galerie d&#39;art unique! Destination coup de coeur dans Charlevoix, le P&#39;tit Bonheur propose une s\u00e9lection distinctive d&#39;oeuvres figuratives dans une ambiance familiale et chaleureuse. Y exposent une quarantaine d&#39;artistes - peintres et sculpteurs - parmi les plus r\u00e9put\u00e9s au Qu\u00e9bec et au Canada.", "site_name": "Galerie d&#39;art Au P&#39;tit Bonheur"}
\ No newline at end of file
added data/enrich_cache/aureletcompagnie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aureletcompagnie.com", "logo_url": "https://aureletcompagnie.com/app/themes/arsenalweb/assets/img/favicon/apple-touch-icon.png", "cover_url": "https://aureletcompagnie.com/app/uploads/2023/06/logo-aurel-et-compagnie.svg", "description_meta": "Aurel et Compagnie - description", "site_name": "Aurel et Compagnie"}
\ No newline at end of file
added data/enrich_cache/aurelie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aurelie.ca", "logo_url": "https://static.wixstatic.com/media/242a9c_6ccbd3a95cd6412494b18d81ce9d06ee%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/242a9c_6ccbd3a95cd6412494b18d81ce9d06ee%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/aurythmedestemps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aurythmedestemps.com", "logo_url": "https://aurythmedestemps.com/favicon.ico", "cover_url": "https://aurythmedestemps.com/wp-content/uploads/brizy/imgs/erabliere-au-rythme-des-temps-int-915x686x0x0x915x686x1549468969.jpg", "description_meta": "\u00c9rabli\u00e8re Au rythme des temps, cabane \u00e0 sucre dans Lanaudi\u00e8re \u00e0 Saint-Lin Laurentides. Repas traditionnels \u00e0 volont\u00e9, atmosph\u00e8re familiale.", "site_name": "\u00c9rabli\u00e8re Au rythme de temps"}
\ No newline at end of file
added data/enrich_cache/ausentierdelerable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ausentierdelerable.com", "logo_url": "https://www.ausentierdelerable.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ausucredor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ausucredor.com", "logo_url": "https://ausucredor.com/app/themes/arsenalweb/assets/favicon/apple-touch-icon.png", "cover_url": "https://ausucredor.com/app/uploads/2026/02/OG.jpg", "description_meta": "D\u00e9couvrez l\u2019authenticit\u00e9 de l\u2019\u00c9rabli\u00e8re Au Sucre d\u2019Or : cabane \u00e0 sucre chaleureuse, produits d\u2019\u00e9rable artisanaux et exp\u00e9riences typiquement qu\u00e9b\u00e9coises.", "site_name": "\u00c9rabli\u00e8re au Sucre d&#039;Or"}
\ No newline at end of file
added data/enrich_cache/authentiquecabane.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "authentiquecabane.com", "logo_url": "https://www.authentiquecabane.com/favicon.ico", "cover_url": null, "description_meta": "L", "site_name": null}
\ No newline at end of file
added data/enrich_cache/authentiqueerabliere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "authentiqueerabliere.com", "logo_url": "https://authentiqueerabliere.com/wp-content/uploads/2024/02/cropped-favicon-512px-180x180.png", "cover_url": "https://authentiqueerabliere.com/wp-content/uploads/2023/09/img-facebook_fr.jpg", "description_meta": "L\u2019Authentique \u00c9rabli\u00e8re, \u00e0 Saint-Stanislas-de-Kostka, vous re\u00e7oit pour le temps des sucres! Notre salle de r\u00e9ception est aussi disponible pour vos \u00e9v\u00e9nements.", "site_name": "L\u2019Authentique \u00c9rabli\u00e8re"}
\ No newline at end of file
added data/enrich_cache/autourdelapomme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "autourdelapomme.com", "logo_url": "https://autourdelapomme.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/autournantdelart.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "autournantdelart.com", "logo_url": "https://autournantdelart.com/favicon.ico?1779974954", "cover_url": null, "description_meta": "Le tournage sur bois permet d&#039;exploiter la beaut\u00c3\u00a9 naturelle du bois et de cr\u00c3\u00a9er des objets uniques. Plusieurs choix s&#039;offrent \u00c3\u00a0 vous: stylos, plumes fontaines, bols, poivri\u00c3\u00a8res, sali\u00c3\u00a8res, ensemble de rasage, ...", "site_name": null}
\ No newline at end of file
added data/enrich_cache/autournantdessaisons.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "autournantdessaisons.ca", "logo_url": "https://static.wixstatic.com/media/3fd270_35fe2c0427ab407492406137f067c7e9%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/3fd270_35fe2c0427ab407492406137f067c7e9%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/auval.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auval.ca", "logo_url": "https://auval.ca/wp-content/uploads/2018/03/cropped-dual-logos-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/auventdunord.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auventdunord.ca", "logo_url": "https://auventdunord.ca/favicon.ico", "cover_url": "https://auventdunord.ca/wp-content/uploads/2018/11/VDN_ROCK-FO-1-copy.jpg", "description_meta": "La plus grande s\u00e9lection de bi\u00e8res de microbrasseries qu\u00e9b\u00e9coises \u00e0 Sherbrooke! Deux magasins pour vous servir et un service de d\u00e9gustation \u00e0 domicile.", "site_name": "Vent du Nord"}
\ No newline at end of file
added data/enrich_cache/auventssignature.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auventssignature.com", "logo_url": "https://static.wixstatic.com/media/1c1aee_125ffc5ff2464b8e82e10732337f9526%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1c1aee_125ffc5ff2464b8e82e10732337f9526%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/auxcoureursdeschamps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxcoureursdeschamps.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/60ad48d61f05a23acdd6b749/a5bc1754-5f34-45fa-b21c-939f60113e25/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/60ad48d61f05a23acdd6b749/t/6756e60d32f33653b68ed72c/1733748237729/2009_LogoAuxCoureursdesChamps_2000px+%282%29.png?format=1500w", "description_meta": null, "site_name": "La Ferme Aux Coureurs Des Champs"}
\ No newline at end of file
added data/enrich_cache/auxfousbrassant.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxfousbrassant.com", "logo_url": "https://www.auxfousbrassant.com/wp-content/uploads/2020/10/favicon.png", "cover_url": null, "description_meta": "Brass\u00e9es de fa\u00e7on artisanale, nos bi\u00e8res sont issues de mati\u00e8res premi\u00e8res de qualit\u00e9 cultiv\u00e9es ici au Qu\u00e9bec. Les malteries et les houblonni\u00e8res qu\u00e9b\u00e9coises nous offrent de magnifiques produits que nous nous faisons une joie de transformer en d\u00e9licieux nectars.", "site_name": "Microbrasserie Aux Fous Brassant"}
\ No newline at end of file
added data/enrich_cache/auxfruitsdubiscuitier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxfruitsdubiscuitier.com", "logo_url": "https://auxfruitsdubiscuitier.com/img/icon.webp", "cover_url": null, "description_meta": "Venez d\u00c3\u00a9couvrir et savourer les fruits du Biscuitier. Dans une ambiance magique, faites r\u00c3\u00aaver vos sens en vous d\u00c3\u00a9lectant de biscuits, desserts et p\u00c3\u00a2tisseries, accompagn\u00c3\u00a9s d\u00e2\u0080\u0099un succulent caf\u00c3\u00a9. Sur notre terrasse ou \u00c3\u00a0 l\u00e2\u0080\u0099int\u00c3\u00a9rieur, rafraichissez vos papilles de cr\u00c3\u00a8mes glac\u00c3\u00a9es et breuvages glac\u00c3\u00a9s. Faites des provisions de douceurs gourmandes et rapportez un cadeau original et de bon go", "site_name": null}
\ No newline at end of file
added data/enrich_cache/auxglacesdelanse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxglacesdelanse.com", "logo_url": "https://www.auxglacesdelanse.com/wp-content/uploads/2021/02/Fav-1.png", "cover_url": null, "description_meta": "Aux glaces de l&#039;Anse, ce sont 2 bars laitiers en Gasp\u00e9sie, \u00e0 Perc\u00e9 et ses environs. On y d\u00e9guste les meilleures glaces du Qu\u00e9bec!", "site_name": "Aux glaces de l&#039;Anse - Les meilleures glaces du Qu&eacute;bec!"}
\ No newline at end of file
added data/enrich_cache/auxjardins.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxjardins.ca", "logo_url": "https://auxjardins.ca/wp-content/uploads/2023/01/Logo_AuxJardins_fermiere-et-mouton-500px-300x300.png", "cover_url": "https://auxjardins.ca/wp-content/uploads/2023/01/Logo_AuxJardins_fermiere-et-mouton-500px.png", "description_meta": "Bienvenue Aux Jardins de la Berg\u00e8re \u00e0 Saint-Damien, Lanaudi\u00e8re. D\u00e9couvrez notre ferme biologique, nos paniers de l\u00e9gumes et nos activit\u00e9s.", "site_name": "Aux Jardins de la Berg\u00e8re"}
\ No newline at end of file
added data/enrich_cache/auxmontsfleuris.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxmontsfleuris.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "D\u00e9couvrez Aux Monts Fleuris dans Charlevoix, une entreprise passionn\u00e9e offrant fleurs, bouquets et cr\u00e9ations uniques inspir\u00e9es de la beaut\u00e9 naturelle de Charlevoix.", "site_name": "Aux Monts Fleuris 2"}
\ No newline at end of file
added data/enrich_cache/auxpetitsmoutonstoutronds.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxpetitsmoutonstoutronds.com", "logo_url": "https://img1.wsimg.com/isteam/ip/8aef60f0-25c3-44d9-a37e-5e5f157f98ad/logo.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/getty/1445526234", "description_meta": "agritourisme et agrotourisme", "site_name": "Aux petits moutons tout ronds"}
\ No newline at end of file
added data/enrich_cache/auxptitsfruits.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxptitsfruits.ca", "logo_url": "https://auxptitsfruits.ca/wp-content/uploads/2025/02/cropped-img_5006.jpg?w=180", "cover_url": "https://auxptitsfruits.ca/wp-content/uploads/2020/11/thumbnail_img_0140-1.jpg", "description_meta": "Ferme mara\u00eech\u00e8re biologique", "site_name": "Aux P&#039;tits Fruits"}
\ No newline at end of file
added data/enrich_cache/auxsaveursduprintemps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxsaveursduprintemps.com", "logo_url": "https://auxsaveursduprintemps.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/auxvergerspetit.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxvergerspetit.com", "logo_url": "https://www.auxvergerspetit.com/favicon.ico", "cover_url": null, "description_meta": "Profitez de la cueillette de pommes \u00e0 Mont-Saint-Hilaire dans un verger familial depuis 1896, avec cidrerie, cr\u00eaperie et activit\u00e9s. Planifiez votre visite!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/auxvivres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "auxvivres.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5bf1ede5365f02bd2bfbfe3e/1542582079483-3910W9A44LZCC3Z8QPYO/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5bf1ede5365f02bd2bfbfe3e/t/5c86b9649140b77c3672314a/1552333157319/bird-favicon.png?format=1500w", "description_meta": "D\u00e9couvrez une cuisine saine et savoureuse avec des plats gourmands \u00e0 petits prix. Cliquez pour voir le menu de nos restaurants au Plateau et \u00e0 Westmount.", "site_name": "Restaurant Aux Vivres"}
\ No newline at end of file
added data/enrich_cache/avanaa.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "avanaa.ca", "logo_url": "https://avanaa.ca/cdn/shop/files/logo-avana-noir_32x32.png?v=1676663173", "cover_url": "http://avanaa.ca/cdn/shop/files/combo-chai_0c187bd5-03fd-458e-a53f-2d7dc958c426.jpg?v=1677266576", "description_meta": "Nous fabriquons des tablettes de chocolat aux saveurs \u00e9piques \u00e0 partir de f\u00e8ves de cacao d&#39;exception. Commandez nos chocolats en ligne. Visitez l&#39;atelier \u00e0 Montr\u00e9al.", "site_name": "Chocolat Avanaa"}
\ No newline at end of file
added data/enrich_cache/aventurerosedesvents.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aventurerosedesvents.com", "logo_url": "https://aventurerosedesvents.com/wp-content/uploads/2022/11/cropped-logo-180x180.png", "cover_url": "https://aventurerosedesvents.com/wp-content/uploads/2023/01/wintersunset.jpg", "description_meta": "S\u00e9journez \u00e0 l\u2019Auberge Rose des vents : h\u00e9bergement chaleureux, restauration et cuisine locale et kayak de mer sur le fjord du Saguenay.", "site_name": "Aventure Rose des Vents"}
\ No newline at end of file
added data/enrich_cache/aventurex.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "aventurex.ca", "logo_url": "https://aventurex.ca/apple-touch-icon.png?v=2", "cover_url": "https://aventurex.ca/og-image.jpg", "description_meta": "Aventurex propose des aventures de montagne au Qu\u00e9bec. Via ferrata, escalade, alpinisme, tyrolienne, rappel, glamping, escalade de glace et plus. Activit\u00e9s guid\u00e9es pour tous les niveaux, \u00e9t\u00e9 comme hiver. R\u00e9servez votre exp\u00e9rience!", "site_name": "Aventurex | Organisation et forfaits d"}
\ No newline at end of file
added data/enrich_cache/axecreation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "axecreation.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "Axecreation"}
\ No newline at end of file
added data/enrich_cache/ayke.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ayke.ca", "logo_url": "https://ayke.ca/wp-content/uploads/2025/03/cropped-ayke-favicon-sirop-erable-maple-syrup-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/azulee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "azulee.ca", "logo_url": "https://azulee.ca/cdn/shop/files/Azulee_Favicon.png?crop=center&height=32&v=1640465414&width=32", "cover_url": "http://azulee.ca/cdn/shop/files/Produits_Azulee-71.jpg?v=1655470779", "description_meta": "Azul\u00e9e est une productrice de lavande certifi\u00e9e biologique \u00e0 Baie-Saint-Paul, Qu\u00e9bec. Nous offrons des produits \u00e0 base de lavande et accueillons les visiteurs dans notre champ pendant l&#39;\u00e9t\u00e9.", "site_name": "Azul\u00e9e"}
\ No newline at end of file
added data/enrich_cache/babacool.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "babacool.ca", "logo_url": "https://babacool.ca/wp-content/uploads/2023/03/BabaCool_logo_brun-300x300.png", "cover_url": "https://babacool.ca/wp-content/uploads/2025/07/Babacool-cafe-boutique-mont-blanc_ambiance-4.jpg", "description_meta": "Caf\u00e9 Babacool \u00e0 Mont&#x2d;Blanc dans les Laurentides : chocolats artisanaux, caf\u00e9, limonade et produits du Qu\u00e9bec, au c\u0153ur du village sur le P\u2019tit Train du Nord.", "site_name": "Atelier BabaCool"}
\ No newline at end of file
added data/enrich_cache/babahummus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "babahummus.com", "logo_url": "https://www.babahummus.com/cdn/shop/files/baba_logomark_32x32.png?v=1718809657", "cover_url": "http://www.babahummus.com/cdn/shop/files/Screenshot_2024-06-02_at_9.40.31_PM_a12ee982-847b-4959-940b-7dd029130967.png?v=1717380876", "description_meta": "Baba Hummus est un houmous de qualit\u00e9 sup\u00e9rieure fabriqu\u00e9 en petits lots. Il est fait avec amour \u00e0 Montr\u00e9al par un Hummusier passionn\u00e9. Baba Hummus is the best Hummus in Canada. It\u2019s premium hummus made in Montreal by a passionate Hummusier.", "site_name": "Baba Hummus"}
\ No newline at end of file
added data/enrich_cache/baiecycle.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baiecycle.org", "logo_url": "https://static.wixstatic.com/media/f0d7d4_5790eb593cf9444ba7d224a8cbc0f9f7%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/f0d7d4_5790eb593cf9444ba7d224a8cbc0f9f7%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/f0d7d4_88c34a1e0c944f6cb35e218b42d0a79d~mv2.jpg/v1/fill/w_1552,h_1077,al_c/f0d7d4_88c34a1e0c944f6cb35e218b42d0a79d~mv2.jpg", "description_meta": "Baiecycle - Le service de v\u00e9lo-partage de Baie-Saint-Paul", "site_name": "Baiecycle"}
\ No newline at end of file
added data/enrich_cache/baielactee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baielactee.com", "logo_url": "https://www.baielactee.com/uploads/b/84c865c0-deeb-11e9-ae4f-9b66cbcb89cb/icon_180x180_ios_ODUxNz.png?width=180", "cover_url": null, "description_meta": "D\u00e9couvrez notre s\u00e9lections de fruits, l\u00e9gumes, fleurs et plants. Nous avons la volont\u00e9 de produire des produits locaux de qualit\u00e9.", "site_name": "Les Jardins Baielactee"}
\ No newline at end of file
added data/enrich_cache/baiesaintpaul.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baiesaintpaul.com", "logo_url": "https://www.baiesaintpaul.com/themes/bsp/assets/medias/images/favicon.svg", "cover_url": "https://www.baiesaintpaul.com/themes/bsp/assets/medias/images/share.jpg", "description_meta": "D&#x00E9;couvrez&#x20;Baie-Saint-Paul&#x20;&#x3A;&#x20;son&#x20;histoire,&#x20;ses&#x20;services&#x20;municipaux,&#x20;les&#x20;nombreuses&#x20;activit&#x00E9;s&#x20;culturelles&#x20;disponibles&#x20;pour&#x20;ses&#x20;citoyens&#x20;et&#x20;visiteurs&#x20;et&#x20;bien&#x20;plus.", "site_name": "Ville de Baie-Saint-Paul"}
\ No newline at end of file
added data/enrich_cache/baiestecatherine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baiestecatherine.com", "logo_url": "https://static.wixstatic.com/media/0e2fb2_30428d248fca4064ab9e9bbd2c09e150.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/0e2fb2_30428d248fca4064ab9e9bbd2c09e150.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/baiestpomme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baiestpomme.com", "logo_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQU8jrXhY6R4Fbha04E3rOFvJJ4mgBQAso1ZTXbWiGgebBSKEf8s14LIUPcUJq9NnTj29sjYTNTrK9BofoJy2zcPmTtF-B7QoDTao_JUZjQoiTiyWpMdULyVQhKBwSmBWfvLfNzoSyH4cx8Kwauuc7fHK3XrNPzm3A52I_sbZLAhJ3OOELKMTxI1yIBWmXrI_LvKTCqZ_ZtD6zLLgSCI4MU", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQW5YoA8v9Q4TMdoNcG0NJQR_fa02EWL2uuvFD-Grd_qFaTUSNj2nQeyJvsD-azS66DDpM2cFett3jPIFrxDeonvDfNdUmzApFpMxmjBXOeEgMf9-5RnY2xRQNhgdzACtnHKao3Si7Gv3hY65UtT78tby57AcNseVu6oDFdz7LJXk9jvfVG1Fs4olPtejZk=w16383", "description_meta": "Nos produits", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bainmarie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bainmarie.ca", "logo_url": "https://static.wixstatic.com/media/44b8ef_d1365f71b59649689094d715599a2f83%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/44b8ef_d1365f71b59649689094d715599a2f83%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/baladegourmande.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baladegourmande.ca", "logo_url": "https://baladegourmande.ca/images/favicon.svg", "cover_url": "https://baladegourmande.ca/images/og-image.jpg", "description_meta": "La Balade Gourmande propose 6 circuits signalis\u00e9s (42 sites) traversant plusieurs municipalit\u00e9s de Victoriaville et sa r\u00e9gion ainsi que de la r\u00e9gion de l\u2019\u00c9rable. Au fil des trajets color\u00e9s par l\u2019automne, les visiteurs sont invit\u00e9s \u00e0 rencontrer des producteurs et des transformateurs agroalimentaires passionn\u00e9s pour d\u00e9guster leurs succulents produits de qualit\u00e9.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/baleineendiablee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baleineendiablee.com", "logo_url": "https://static.wixstatic.com/media/7e20ac_b0dcf3afdee849a4aab4b5f8e46b0a3e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7e20ac_b0dcf3afdee849a4aab4b5f8e46b0a3e%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/balsai.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "balsai.ca", "logo_url": "https://www.balsai.ca/wp-content/uploads/2018/11/Logo.jpg", "cover_url": null, "description_meta": "Gousses couleur anthracite, texture fondante, l&#039;ail noir est pris\u00e9 des chefs et a m\u00eame des vertus th\u00e9rapeutiques. En savoir plus!", "site_name": "Balsai"}
\ No newline at end of file
added data/enrich_cache/balsamumm.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "balsamumm.com", "logo_url": "https://static.wixstatic.com/media/d776ab_d254cfa4bd74434dbb84b8a460158673%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d776ab_d254cfa4bd74434dbb84b8a460158673%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/baraqueapots.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baraqueapots.com", "logo_url": "https://static.wixstatic.com/media/b51b53_55a4ea96b12f4d9dab581a5546b2ec70%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/b51b53_55a4ea96b12f4d9dab581a5546b2ec70%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/barbenoire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "barbenoire.com", "logo_url": "https://barbenoire.com/cdn/shop/files/favicon_194x194_crop_center.png?v=1621956345", "cover_url": "https://cdn.shopify.com/s/files/1/0570/8100/4241/files/OG_image_f20a3379-9e61-4880-b2d3-39751052ee85.jpg?v=1630328943", "description_meta": "D\u00e9couvrez nos produits de viandes fum\u00e9es \u00e0 chaud au bois d\u2019\u00e9rable. Meilleur rapport qualit\u00e9 prix, de notre fumoir \u00e0 votre table sans interm\u00e9diaire.", "site_name": "Barbe Noire"}
\ No newline at end of file
added data/enrich_cache/barbuck.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "barbuck.com", "logo_url": "https://barbuck.com/favicon.ico", "cover_url": "https://barbuck.com/wp-content/uploads/2024/10/Barbuck-Display-Picture.jpg", "description_meta": "Discover how call tracking software can help you identify a true ROI, measure campaign performance and increase revenue.", "site_name": "Barbuck"}
\ No newline at end of file
added data/enrich_cache/barlaitier138.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "barlaitier138.com", "logo_url": "https://barlaitier138.com/favicon.ico", "cover_url": "https://barlaitier138.com/wp-content/uploads/2023/03/cropped-Logo-good.png", "description_meta": "Un arr\u00eat obligatoire! D\u00e9couvrez notre \u00e9tablissement! Inspir\u00e9 de la mythique route 66 vous serez transport\u00e9 dans notre univers r\u00e9tro et chaleureux!", "site_name": "Bar Laitier Route 138 -"}
\ No newline at end of file
added data/enrich_cache/barlaitierchouinard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "barlaitierchouinard.com", "logo_url": "https://static.wixstatic.com/media/d90e67_bdd4805446d24d1d9d661fed4e0cf93c%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d90e67_bdd4805446d24d1d9d661fed4e0cf93c%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/d90e67_3ab9ad49ea4541e09e875c9f1cbf438b%7Emv2.png/v1/fit/w_2500,h_1330,al_c/d90e67_3ab9ad49ea4541e09e875c9f1cbf438b%7Emv2.png", "description_meta": "Depuis 1960, le Bar laitier Chouinard et son fameux foodtruck, situ\u00e9s sur la 132 \u00e0 Saint-Jean-Port-Joli, sont r\u00e9put\u00e9s pour leur cr\u00e8me glac\u00e9e molle artisanale et leurs garnitures maison faites avec des produits frais et locaux. D\u00e9couvrez aussi des options sans lactose et v\u00e9ganes!", "site_name": "Barlaitier Chouinard"}
\ No newline at end of file
added data/enrich_cache/baskacuisine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baskacuisine.ca", "logo_url": "https://www.baskacuisine.ca/apple-touch-icon.png", "cover_url": "https://www.baskacuisine.ca/assets/img/og-image.jpg", "description_meta": "D\u00e9couvrez Baska, partenaire de choix en transformation alimentaire des produits de viande et sauces pour restaurants, h\u00f4tels, h\u00f4pitaux, RPA, garderie et CPE.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/baskhour.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baskhour.com", "logo_url": "https://baskhour.com/cdn/shop/files/bh-blanc.png?crop=center&height=32&v=1725891458&width=32", "cover_url": "http://baskhour.com/cdn/shop/files/logo-blue.png?height=628&pad_color=ffffff&v=1725891284&width=1200", "description_meta": "Discover Bask Hour&#39;s best natural and non-toxic candles in Montreal. Handcrafted with a sustainable blend of soy, coconut, and beeswax. Our eco-friendly candles offer clean-burning, long-lasting scents\u2014from classic to funky and Asian-inspired. Phthalate-free, paraben-free, with colorful labels and crackling wood wicks.", "site_name": "Bask Hour"}
\ No newline at end of file
added data/enrich_cache/basseslaurentides.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "basseslaurentides.com", "logo_url": "https://basseslaurentides.com/assets/assets/favicons/apple-touch-icon-180x180.png", "cover_url": "https://basseslaurentides.com/assets/assets/img/og-img.png", "description_meta": "Les Basses-Laurentides vous souhaitent la bienvenue au c\u0153ur de sa belle r\u00e9gion. Quoi faire, o\u00f9 manger, o\u00f9 dormir ? D\u00e9couvrez-le ici", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bastienindustries.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bastienindustries.ca", "logo_url": "https://bastienindustries.ca/cdn/shop/files/loading_9688fb87-61ea-4c8d-b2dc-5eb46d06810b.png?v=1670093935", "cover_url": "http://bastienindustries.ca/cdn/shop/files/WEB_bastien_industries_nov_2022-249_eb3c5e2d-7eac-4c50-b7ad-57560c69de92_1200x1200.jpg?v=1676232673", "description_meta": "Depuis 1972, Bastien fabrique des mocassins autochtones canadiens pour femme, homme, enfant et b\u00e9b\u00e9 dans le plus grand respect des techniques traditionnelles d&#39;autrefois. Faites de cuir d&#39;orignal, de vache et de su\u00e8de, nos chaussures d&#39;int\u00e9rieur et d&#39;ext\u00e9rieur apportent style et confort.", "site_name": "Bastien Industries"}
\ No newline at end of file
added data/enrich_cache/bateaubateau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bateaubateau.com", "logo_url": "https://bateaubateau.com/cdn/shop/files/favicon-bateaubateau_259d417e-ae25-4c70-8766-363c0550729c.png?crop=center&height=32&v=1692040644&width=32", "cover_url": "http://bateaubateau.com/cdn/shop/files/CoverFacebook-Shopify.png?v=1692046860", "description_meta": "Bateau bateau propose des produits \u00e9cologiques et des syst\u00e8mes complets et faciles d&#39;utilisation qui rendront votre quotidien plus confortable.", "site_name": "Bateau bateau"}
\ No newline at end of file
added data/enrich_cache/baumproduitsnaturels.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "baumproduitsnaturels.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/55bfb309e4b0b298495be956/1446225088223-SHPS5BUHL5ZQTKYHYW8S/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/55bfb309e4b0b298495be956/t/569c4013fd5d084e14a433c6/1453080595808/Capture+d%E2%80%99e%CC%81cran+2015-08-07+a%CC%80+09.07.21.png?format=1500w", "description_meta": "B\u00c4UM est une jeune entreprise montr\u00e9alaise de produits 100% naturels &amp;amp;&amp;nbsp;travel friendly con\u00e7us pour les besoins quotidiens et pens\u00e9s pour les voyageurs.&amp;nbsp;", "site_name": "B\u00c4UM"}
\ No newline at end of file
added data/enrich_cache/bbqquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bbqquebec.com", "logo_url": "https://bbqquebec.com/cdn/shop/files/flame_c7e67505-277e-484c-9827-df0ab9929ec5.png?crop=center&height=180&v=1698070401&width=180", "cover_url": "http://bbqquebec.com/cdn/shop/files/Vignette_BBQQC.png?crop=center&height=1200&v=1683142219&width=1200", "description_meta": "BBQ Qu\u00e9bec, C&#39;est La Culture du Gril. Grande s\u00e9lection de BBQ et d&#39;Accessoires. Recettes, Conseils &amp; Cours de BBQ Pour Que Tu Deviennes Un Vrai Ma\u00eetre Du Grill!", "site_name": "BBQ Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/bcifoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bcifoods.com", "logo_url": "https://bcifoods.com/wp-content/smush-avif/2018/11/cropped-BCI-logo-512-180x180.png.avif", "cover_url": null, "description_meta": "Your Store Brand and Branded Partners in the field of Food Innovation. We think cutting-edge food experiences. We think Food. We think out of the Can!", "site_name": "BCI Foods"}
\ No newline at end of file
added data/enrich_cache/beatetbetterave.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "beatetbetterave.com", "logo_url": "https://www.beatetbetterave.com/apple-touch-icon.png", "cover_url": "https://res.cloudinary.com/radicelles/image/upload/c_fill,w_1200,h_675/beatetbetterave-com/canettes_vracrt.jpg", "description_meta": "Le Beat &amp; Betterave fait battre le c\u0153ur culturel de Frelighsburg avec son caf\u00e9, sa programmation de spectacles et sa nano brasserie.", "site_name": "Beat &amp; Betterave"}
\ No newline at end of file
added data/enrich_cache/beaucerable.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "beaucerable.ca", "logo_url": "https://static.wixstatic.com/media/d32713_b460d320cf554250a11f4aaf59123594%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d32713_b460d320cf554250a11f4aaf59123594%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/d32713_b412d50111e34ae3910c3ff0a403e4f6%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/d32713_b412d50111e34ae3910c3ff0a403e4f6%7Emv2.jpg", "description_meta": "Produits de l", "site_name": "Beauc\u00e9rable"}
\ No newline at end of file
added data/enrich_cache/beaulieufoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "beaulieufoods.com", "logo_url": "https://beaulieufoods.com/wp-content/uploads/fbrfg/apple-touch-icon.png?v=001", "cover_url": null, "description_meta": "Fabricant alimentaire qu\u00e9b\u00e9cois fond\u00e9 en 1960, Beaulieu vous propose des sauces, \u00e9pices et condiments qui rehaussent vos plats pr\u00e9f\u00e9r\u00e9s.", "site_name": "Beaulieu Instantan\u00e9"}
\ No newline at end of file
added data/enrich_cache/beauxpresmicrobrasserie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "beauxpresmicrobrasserie.ca", "logo_url": "https://beauxpresmicrobrasserie.ca/wp-content/uploads/2023/06/MDBP-logos-mediassociaux-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bebefafa.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bebefafa.com", "logo_url": "https://bebefafa.com/cdn/shop/files/favicon_32x32.png?v=1699540594", "cover_url": "http://bebefafa.com/cdn/shop/files/valisette-olive_1200x1200.jpg?v=1747862006", "description_meta": "V\u00eatements, accessoires et ensembles-cadeaux pour b\u00e9b\u00e9s en fibres naturelles ultra doux 0-24 mois, sp\u00e9cialiste du cadeau de naissance", "site_name": "B\u00e9b\u00e9 Fafa"}
\ No newline at end of file
added data/enrich_cache/bedondaine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bedondaine.com", "logo_url": "https://bedondaine.com/wp-content/uploads/2021/11/cropped-cropped-bedondaine_logo-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/beds24.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "beds24.com", "logo_url": "https://beds24.com/webinclude/android-icon-192x192.png", "cover_url": null, "description_meta": "All-In-One Vacation Rental Management, Hotel Management Channel Management Software and Property Management System. for vacation rentals, hotel, bed and breakfast, motel, holiday rental, hostel, campground, agencies and professional property managers from \u20ac15.50/month.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/beerme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "beerme.com", "logo_url": "https://beerme.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/behance.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "behance.net", "logo_url": "https://a5.behance.net/4623fc85df63fc799a6a0d3a98a2849560328fb2/img/site/apple-touch-icon.png?cb=264615658", "cover_url": "https://a5.behance.net/4623fc85df63fc799a6a0d3a98a2849560328fb2/img/search/homepage-seo-image.webp", "description_meta": "Behance is the world", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bekebobo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bekebobo.com", "logo_url": "https://bekebobo.com/favicon.ico", "cover_url": "http://bekebobo.com/cdn/shop/files/viseul-facebook.png?v=1740075986", "description_meta": "B\u00e9k\u00e9-Bobo&#39;s therapeutic products quickly help to relieve ear infections, migraines, teething and stomach aches.", "site_name": "B\u00e9k\u00e9-Bobo"}
\ No newline at end of file
added data/enrich_cache/bel-gaufre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bel-gaufre.com", "logo_url": "https://belgaufre19.wpenginepowered.com/wp-content/uploads/2019/03/petitegauffre2.png", "cover_url": "https://bel-gaufre.com/wp-content/themes/module_base/assets/images/belgaufre.png", "description_meta": "Les meilleures gaufres sur le march\u00e9. Bel gaufre pour vous r\u00e9galer. Disponibles dans toutes les \u00e9piceries. Nos gaufres sont d\u00e9licieuses au petit-d\u00e9jeuner, comme snack ou en dessert. Un p\u2019tit gout d\u2019bonheur!", "site_name": "Bel-Gaufre"}
\ No newline at end of file
added data/enrich_cache/belacaro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "belacaro.com", "logo_url": "https://belacaro.com/cdn/shop/files/Untitled_4.png?crop=center&height=32&v=1708715078&width=32", "cover_url": "http://belacaro.com/cdn/shop/files/Untitled_4.png?v=1708715078", "description_meta": "Lifetime artisanal knitwear made for motion with natural fibers", "site_name": "BELACARO"}
\ No newline at end of file
added data/enrich_cache/belpom.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "belpom.com", "logo_url": "https://www.belpom.com/favicon.ico", "cover_url": "https://www.belpom.com/uploads/9/8/8/6/9886898/editor/logo-v2-v-2x.png?1640970931", "description_meta": "D\u00e9couvrez le Verger Belpom \u00e0 B\u00e9cancour : pommes fra\u00eeches, cueillette familiale, miel local et plus encore.", "site_name": "VERGER BELPOM"}
\ No newline at end of file
added data/enrich_cache/belvache.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "belvache.ca", "logo_url": "https://belvache.ca/resources/logoferme.jpg", "cover_url": null, "description_meta": "Ferme de grandes cultures biologiques, production laiti\u00e8re, d\u00e9neigement commercial, \u00e9rabli\u00e8re et produits d&#039;\u00e9rables \u00e0 Ste-Anne-des-Plaines dans les Laurentides, Qu\u00e9bec, Canada", "site_name": null}
\ No newline at end of file
added data/enrich_cache/benoitcotecpa.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "benoitcotecpa.com", "logo_url": "https://benoitcotecpa.com/wp-content/uploads/2020/11/13256431_975550042561385_8232007517928133612_n-300x300.png", "cover_url": "https://benoitcotecpa.com/wp-content/uploads/2020/11/cropped-logo.png", "description_meta": "Depuis maintenant 20 ans,\u00a0Beno\u00eet C\u00f4t\u00e9 CPA\u00a0est fier d&#039;offrir des services de comptabilit\u00e9 dans la r\u00e9gion de Charlevoix.", "site_name": "BENOIT C\u00d4T\u00c9"}
\ No newline at end of file
added data/enrich_cache/bercee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bercee.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bergeriedpl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bergeriedpl.com", "logo_url": "https://static.wixstatic.com/media/00ac10_e5ac821cfcb84fbf983e3d76b5ddfac4%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/00ac10_e5ac821cfcb84fbf983e3d76b5ddfac4%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bergerieenherbe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bergerieenherbe.com", "logo_url": "https://www.bergerieenherbe.com/favicon.ico", "cover_url": "http://www.bergerieenherbe.com/uploads/1/1/2/5/112592803/brebis-au-champs_orig.jpg", "description_meta": "La bergerie en herbe est une ferme \u00e9ducative qui permet aux enfants d&#039;explorer le monde agricole. Diff\u00e9rentes animations et activit\u00e9s en lien avec l&#039;agriculture sont offertes : sorties scolaires, accueil de groupe, animations \u00e0 l&#039;\u00e9cole, camp de jour.", "site_name": "La bergerie en herbe"}
\ No newline at end of file
added data/enrich_cache/bergerieinnovin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bergerieinnovin.com", "logo_url": "https://static.wixstatic.com/media/602531_f2694fa1bda249e78d8437562b0a09c7%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/602531_f2694fa1bda249e78d8437562b0a09c7%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/602531_f2694fa1bda249e78d8437562b0a09c7%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/602531_f2694fa1bda249e78d8437562b0a09c7%7Emv2.jpg", "description_meta": "D\u00e9couvrez Bergerie InnOvin! Agneau local \u00e9lev\u00e9 sans antibiotique en Beauce. Vente directe aux particuliers, restaurateurs et \u00e9leveurs partout au Qu\u00e9bec.", "site_name": "L"}
\ No newline at end of file
added data/enrich_cache/beteaunaturel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "beteaunaturel.com", "logo_url": "https://beteaunaturel.com/cdn/shop/files/Creation_sans_titre_20.png?crop=center&height=32&v=1768932085&width=32", "cover_url": "http://beteaunaturel.com/cdn/shop/files/Bete_au_naturel_14.png?v=1777899497", "description_meta": "Parce que chaque animal m\u00e9rite le meilleur, nous proposons des produits et services de qualit\u00e9 accessibles \u00e0 tous les budgets.", "site_name": "B\u00eate au naturel"}
\ No newline at end of file
added data/enrich_cache/beurd-shop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "beurd-shop.com", "logo_url": "https://beurd-shop.com/cdn/shop/files/logo-beurd_e357c3a4-3367-45a9-be98-0be19087dbe2.png?crop=center&height=32&v=1678814278&width=32", "cover_url": "https://cdn.shopify.com/s/files/1/1337/4969/files/logo-beurd.png?height=628&pad_color=ffffff&v=1671633546&width=1200", "description_meta": "D\u00e9couvrez la marque funky inspir\u00e9e du Sud, Beurd! Ajoutez de l&#39;originalit\u00e9 \u00e0 votre style en optant pour des articles uniques confectionn\u00e9s \u00e0 Montr\u00e9al ! Livraison gratuite d\u00e8s 100$ d&#39;achat.", "site_name": "Beurd"}
\ No newline at end of file
added data/enrich_cache/bibec.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bibec.ca", "logo_url": "https://bibec.ca/cdn/shop/files/Bibec-logo-couleur-creux-blanc.png?crop=center&height=32&v=1712521553&width=32", "cover_url": "http://bibec.ca/cdn/shop/files/Bibec-logo-couleur-full_crop.png?height=628&pad_color=ffffff&v=1769109994&width=1200", "description_meta": "Bibec est une biscuiterie fine artisanale \u00e0 Saint-Hippolyte dans les Laurentides au Qu\u00e9bec. Nous mettons en avant le terroir qu\u00e9b\u00e9cois gr\u00e2ce \u00e0 nos cr\u00e9ations. Des plantes des for\u00eats bor\u00e9ales jusqu\u2019aux fromages locaux, qu&#39;ils soient sucr\u00e9s, sal\u00e9s, croustillants ou fondants, d\u00e9couvrez nos d\u00e9licieux biscuits et craquelins!", "site_name": "Biscuiterie Bibec"}
\ No newline at end of file
added data/enrich_cache/bibinebuvette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bibinebuvette.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/66fff9918422d4133e1d9afd/bfd13a37-cea3-471b-a79d-a0374fb580c3/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/66fff9918422d4133e1d9afd/t/67000082ba845a2269aa4a12/1728053378455/Bibine_fav.png?format=1500w", "description_meta": null, "site_name": "Buvette Bibine"}
\ No newline at end of file
added data/enrich_cache/biererieshelton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "biererieshelton.com", "logo_url": "https://biererieshelton.com/favicon-194x194.png", "cover_url": "http://biererieshelton.com/img/website-preview.jpg", "description_meta": "Cr\u00e9ateurs de bi\u00e8res artisanales hautes en couleur - Par ici pour en savoir plus sur les bi\u00e8res de Bi\u00e8rerie Shelton et les points de vente", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bieresilo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bieresilo.com", "logo_url": "https://bieresilo.com/wp-content/uploads/2021/11/cropped-SILO_noir-2-e1637768961332-180x180.png", "cover_url": null, "description_meta": "Nos bi\u00e8res Venez boire nos bi\u00e8res sur place Le saviez-vous? Il est possible de boire ET DE MANGER sur place dans notre belle brasserie.", "site_name": "Silo"}
\ No newline at end of file
added data/enrich_cache/bijouteriealarie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriealarie.com", "logo_url": "https://static.wixstatic.com/media/9d809a_2c826950882c44e5be37da19175dc269%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/9d809a_2c826950882c44e5be37da19175dc269%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bijouteriebrenda.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriebrenda.ca", "logo_url": "https://www.bijouteriebrenda.ca/ressources/favicons/apple-touch-icon.png", "cover_url": "https://www.bijouteriebrenda.ca/ressources/images/logo-fb-large.jpg", "description_meta": "Bijoutier d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bijouteriebrouillette.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriebrouillette.ca", "logo_url": "https://bijouteriebrouillette.ca/boutique/image/catalog/-images/logo/Bijouterie-Brouillette-logo-noir.png", "cover_url": null, "description_meta": "Bijouterie familiale \u00e0 Granby depuis 1939. Sp\u00e9cialiste en bagues \u00e0 diamants, bagues et joncs de mariage, cha\u00eenes et pendentifs. \u00c9l\u00e9gance et qualit\u00e9.", "site_name": "Bijouterie Brouillette"}
\ No newline at end of file
added data/enrich_cache/bijouterieconcept.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouterieconcept.com", "logo_url": "https://bijouterieconcept.com/image/catalog/Concept/favicon-concept.jpg", "cover_url": null, "description_meta": "Grand choix de bijoux pour hommes, femmes et enfants. - Bijouterie Concept - Sherbrooke", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bijouteriedeziel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriedeziel.com", "logo_url": "https://bijouteriedeziel.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bijouteriediplomate.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriediplomate.com", "logo_url": "https://www.bijouteriediplomate.com/cdn/shop/t/22/assets/diplomate-logo-icon.png?v=61514568342197139841779981316", "cover_url": "http://www.bijouteriediplomate.com/cdn/shop/files/BIJOUTERIE_DIPLOMATE__SOCIAL.png?v=1706020865", "description_meta": "Joaillier familial sur le Plateau Mont-Royal depuis 1965. Bagues de fian\u00e7ailles, montres Tissot et Casio, bijoux en or et cr\u00e9ations sur mesure \u00e0 Montr\u00e9al.", "site_name": "BijouterieDiplomate"}
\ No newline at end of file
added data/enrich_cache/bijouteriegiffard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriegiffard.ca", "logo_url": "https://www.bijouteriegiffard.ca/cdn/shop/files/Path.png?v=1745030911&width=180", "cover_url": null, "description_meta": "Bijouterie qu\u00e9b\u00e9coise, \u00e0 votre service depuis 1944. Bijoux sur mesure, r\u00e9paration, boutique en ligne, montres, per\u00e7age d&#39;oreilles, cr\u00e9ations exclusives.", "site_name": "Bijouterie Giffard"}
\ No newline at end of file
added data/enrich_cache/bijouterieguerin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouterieguerin.com", "logo_url": "https://bijouterieguerin.com/cdn/shop/files/Design_sans_titre.png?v=1765310575&width=180", "cover_url": "http://bijouterieguerin.com/cdn/shop/files/Bijouterie_Guerin_accueil.png?v=1709211269&width=2048", "description_meta": "D\u00e9couvrez l&#39;\u00e9l\u00e9gance intemporelle chez Bijouterie Gu\u00e9rin. Parcourez notre collection de bijoux exquis pour trouver le cadeau parfait ou ajouter une touche de luxe \u00e0 votre style. Qualit\u00e9, artisanat et beaut\u00e9 se rejoignent ici.", "site_name": "Bijouterie Gu\u00e9rin"}
\ No newline at end of file
added data/enrich_cache/bijouteriejadore.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriejadore.com", "logo_url": "https://bijouteriejadore.com/wp-content/uploads/cropped-logo-bijouterie-jadore-180x180.png", "cover_url": "https://bijouteriejadore.com/wp-content/uploads/bijouterie-jadore-terrebonne.jpg", "description_meta": "Bijouterie Terrebonne J&#039;Adore \u00e0 un vaste inventaire de bijoux pour homme et pour femme.", "site_name": "Bijouterie J&#039;Adore Terrebonne"}
\ No newline at end of file
added data/enrich_cache/bijouteriejodoin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriejodoin.com", "logo_url": "https://www.bijouteriejodoin.com/favicon.ico", "cover_url": "http://www.bijouteriejodoin.com/cdn/shop/files/PICT-0246.jpg?v=1613733134", "description_meta": "Entreprise familiale \u00e9tablie depuis plus de 79 ans ayant b\u00e2ti sa solide r\u00e9putation gr\u00e2ce \u00e0 sa grande surface, \u00e0 son vaste choix, \u00e0 ses marques exclusives ainsi qu&#39;\u00e0 son atmosph\u00e8re des plus chaleureuses. Bref, ils sont des passionn\u00e9s contagieux toujours \u00e0 l&#39;aff\u00fbt des derni\u00e8res tendances dans le domaine! Bienvenue!", "site_name": "Bijouterie Jodoin"}
\ No newline at end of file
added data/enrich_cache/bijouterielampron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouterielampron.com", "logo_url": "https://bijouterielampron.com/wp-content/uploads/favicon.png", "cover_url": "https://bijouterielampron.com/wp-content/uploads/fb-share.jpg", "description_meta": "D\u00e9couvrez la Bijouterie Lampron : cr\u00e9ations uniques, bagues de fian\u00e7ailles, montres haut de gamme et service de r\u00e9paration rapide. Expertise, qualit\u00e9 et savoir-faire \u00e0 Drummondville.", "site_name": "Bijouterie Lampron"}
\ No newline at end of file
added data/enrich_cache/bijouterielanglois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouterielanglois.com", "logo_url": "https://bijouterielanglois.com/pub/media/favicon/default/favicon-blue-02.png", "cover_url": "https://bijouterielanglois.com/pub/media/og_image/default/bijouterie_langlois_optimise_photo_bijouterie.jpg", "description_meta": "La Bijouterie Langlois offre ses bijoux haut de gamme \u00e0 Qu\u00e9bec et en ligne. Faites confiance \u00e0 nos experts bijoutiers pour vous aider \u00e0 trouver le bijou parfait.", "site_name": "Bijouterie Langlois"}
\ No newline at end of file
added data/enrich_cache/bijouteriepenelope.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriepenelope.com", "logo_url": "https://cdn.shoplightspeed.com/shops/645762/themes/6715/v/629109/assets/favicon.ico?20221012094529", "cover_url": "https://cdn.shoplightspeed.com/shops/645762/themes/6715/v/634076/assets/logo.png?20221020145649", "description_meta": "P\u00e9n\u00e9lope est une bijouterie familiale de la ville de Qu\u00e9bec r\u00e9put\u00e9e pour sa tr\u00e8s grande diversit\u00e9 de produits exclusifs, ses marques de renom et son impr", "site_name": "Penelope"}
\ No newline at end of file
added data/enrich_cache/bijouterierussell.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouterierussell.ca", "logo_url": "https://www.bijouterierussell.ca/favicon.ico", "cover_url": null, "description_meta": "La Bijouterie Russell \u00e0 Laval offre une vaste gamme de bijoux en or, argent ou en platine et pierres pr\u00e9cieuses. En affaires depuis plus de soixante ans.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bijouteriesergegagnon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriesergegagnon.com", "logo_url": "https://bijouteriesergegagnon.com/wp-content/uploads/2022/02/fav.png", "cover_url": null, "description_meta": null, "site_name": "Bijouterie Serge Gagnon"}
\ No newline at end of file
added data/enrich_cache/bijouteriesimard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriesimard.ca", "logo_url": "https://bijouteriesimard.ca/boutique/image/catalog/logo/logo bijouterie petit.jpg", "cover_url": null, "description_meta": "Vente et r\u00e9paration de bijoux, montres et horloges. Bijoux en or , \u00e0 diamants, en argent, en perles, en acier , en cuir et Mode mode. Bijoux en or et \u00e0 diamants, bagues de fian\u00e7ailles, bagues de mariage, joncs en or 10 k. Boucles d", "site_name": "Bijouteriesimard.ca Boutique"}
\ No newline at end of file
added data/enrich_cache/bijouteriestjean.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouteriestjean.com", "logo_url": "https://bijouteriestjean.com/cdn/shop/files/icon_logo_monogram_noir_32x32.png?v=1743083471", "cover_url": null, "description_meta": "Joaillerie St-Jean", "site_name": "Joaillerie St-Jean"}
\ No newline at end of file
added data/enrich_cache/bijouterieveronneau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouterieveronneau.com", "logo_url": "https://www.bijouterieveronneau.com/favicon.ico", "cover_url": "http://www.bijouterieveronneau.com/cdn/shop/files/IMG_3208_356f3c66-fef7-4bd8-9755-da34cdca35eb_1200x1200.jpg?v=1713552546", "description_meta": "Bijoutier-joaillier familial \u00e0 Longueuil depuis 1950. Cr\u00e9ation sur mesure, diamants certifi\u00e9s, r\u00e9paration de bijoux et de montres. 4,9 \u00e9toiles, 250+ avis Google.", "site_name": "Bijouterie Veronneau"}
\ No newline at end of file
added data/enrich_cache/bijouxgli.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouxgli.com", "logo_url": "https://static.wixstatic.com/media/fd16d8_06e39606f1a341f38994a4b83041a3ae%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/fd16d8_06e39606f1a341f38994a4b83041a3ae%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bijouxmedusa.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouxmedusa.com", "logo_url": "https://www.bijouxmedusa.com/cdn/shop/files/Logo_Medusa_Versace_Or_Jaune_Bijouterie_Canada_Quebec_228x228.png?v=1613788436", "cover_url": "https://www.bijouxmedusa.com/cdn/shop/files/Bijoux_Medusa_Versace_Or_Diamant_Hommes_et_Femmes_10K_600x600.JPG?v=1615925547", "description_meta": "Looking for the BEST Jewellery Online?! Don&#39;t look anymore! We specialize in Gold and Diamond Jewelry imported from Italy. Expert in Grillz and Custom Customs Jewellery. A Vast Selection of Chains, Necklaces, Rings, Bracelets, Pendants, Watches, Versace Gold Jewels and Rolex ICED OUT Watch", "site_name": "Bijoux Medusa"}
\ No newline at end of file
added data/enrich_cache/bijouxmousseline.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouxmousseline.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Bijoux Qu\u00e9b\u00e9cois. Bijoux artisanaux inspir\u00e9s par la nature. Mousseline Jewelry. Nature-inspired jewelry, handmade in Quebec, Canada.", "site_name": "mousseline"}
\ No newline at end of file
added data/enrich_cache/bijouxosmose.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouxosmose.ca", "logo_url": "https://www.bijouxosmose.ca/cdn/shop/files/Logo-resize-740-24_32x32.png?v=1613539614", "cover_url": "https://cdn.shopify.com/s/files/1/0332/0217/6131/files/osmose-logo-resized-nom-38.png?height=628&pad_color=dedede&v=1613540914&width=1200", "description_meta": "Bijoux Osmose vous propose une gamme compl\u00e8te de bijoux en \u00e9tain, cr\u00e9\u00e9 au Qu\u00e9bec par Sonia Ferland joailli\u00e8re. Achat en ligne ou en magasin et livraison partout dans le monde!", "site_name": "Bijoux Osmose"}
\ No newline at end of file
added data/enrich_cache/bijouxzoeflare.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bijouxzoeflare.com", "logo_url": "https://bijouxzoeflare.com/cdn/shop/files/ZF_32x32.png?v=1779634555", "cover_url": "http://bijouxzoeflare.com/cdn/shop/files/BZF_-_Logo_noir.png?v=1650908713", "description_meta": "Choisissez parmi nos collections de colliers, bracelets, boucles d&#39;oreilles et bagues confectionn\u00e9es au Qu\u00e9bec. Confection de bijoux sur mesure. Guide de mesures. Livraison rapide.", "site_name": "Bijoux Zo\u00ebFlare"}
\ No newline at end of file
added data/enrich_cache/bilboquetmicrobrasserie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bilboquetmicrobrasserie.com", "logo_url": "https://bilboquetmicrobrasserie.com/favicon.ico", "cover_url": "https://bilboquetmicrobrasserie.com/wp-content/plugins/bilboquet-temp/assets/img/og-image.jpg", "description_meta": "Nouvelle identit\u00e9 visuelle pour Bilboquet Microbrasserie. Notre nouveau site arrive bient\u00f4t.", "site_name": "Bilboquet"}
\ No newline at end of file
added data/enrich_cache/bio-actif.quebec.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bio-actif.quebec", "logo_url": "https://bio-actif.quebec/favicon.ico", "cover_url": "http://bio-actif.quebec/cdn/shop/files/Creation_sans_titre_3.webp?v=1757689270", "description_meta": "Depuis 1968, Bio-Actif offre des produits naturels qu\u00e9b\u00e9cois : soins du corps, suppl\u00e9ments et sant\u00e9 articulaire. Livraison rapide partout au Canada.", "site_name": "Bio-Actif"}
\ No newline at end of file
added data/enrich_cache/bio-vert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bio-vert.com", "logo_url": "https://bio-vert.com/wp-content/uploads/2021/03/cropped-biovert_logo_v2-180x180.png", "cover_url": "https://bio-vert.com/wp-content/uploads/2023/08/Famille-de-produits.png", "description_meta": "Inspir\u00e9 par la nature, cr\u00e9\u00e9 pour l\u2019environnement Brillant de Nature Un environnement plus propre d\u00e9bute \u00e0 la maison avec les produits Biovert! Une gamme de produits nettoyants enti\u00e8rement biod\u00e9gradables, faits au Qu\u00e9bec et certifi\u00e9s \u00e0 impact r\u00e9duit sur l\u2019environnement. En savoir plus Notre engagement envers vous Biovert s\u2019engage \u00e0 am\u00e9liorer continuellement la valeur environnementale de [&hellip;]", "site_name": "BIOVERT\u00ae | Biodegradable Cleaning Products"}
\ No newline at end of file
added data/enrich_cache/biobio.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "biobio.ca", "logo_url": "https://www.biobio.ca/gx/apple-touch-icon.png", "cover_url": "https://www.biobio.ca/gx/partage.jpg", "description_meta": "Biobio vous propose plusieurs type de fromage biologique sans lactose, gluten, pr\u00e9sure animale et OGM de tr\u00e8s haute qualit\u00e9 disponible \u00e0 travers le Qu\u00e9bec", "site_name": "BioBio.ca"}
\ No newline at end of file
added data/enrich_cache/biobon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "biobon.ca", "logo_url": "https://www.biobon.ca/favicon.png", "cover_url": null, "description_meta": "Bio-Bon inc. vous offre des v\u00e9g\u00e9-p\u00e2t\u00e9s haut de gamme mais \u00e0 prix abordable et dont le go\u00fbt est recherch\u00e9.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/biodiversite.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "biodiversite.net", "logo_url": "https://www.biodiversite.net/wp-content/uploads/2021/05/Biodiversite_sigle.png", "cover_url": "https://www.biodiversite.net/wp-content/uploads/2022/04/Musee-de-la-bio.jpg", "description_meta": "Au mus\u00e9e : circuits guid\u00e9s, expositions, rencontres avec les animaux, sentiers forestiers, un verger, un circuit interactif nocturne et plus!", "site_name": "Mus\u00e9e de la biodiversit\u00e9 du Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/biofermedescaps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "biofermedescaps.com", "logo_url": "https://www.biofermedescaps.com/wp-content/uploads/2021/03/cropped-bio-ferme-logo-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": "La Bio Ferme des Caps"}
\ No newline at end of file
added data/enrich_cache/bird-food.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bird-food.ca", "logo_url": "https://www.bird-food.ca/wp-content/uploads/2019/02/favicon-PicarieMonCopain.png", "cover_url": "https://www.bird-food.ca/wp-content/uploads/2019/04/Thumbnail-pages-1.jpg", "description_meta": "Les gammes Picardie et Mon Copain offrent des produits pour oiseaux domestiques, oiseaux sauvages et pour petits animaux. Plus de 200 produits et formats.", "site_name": "Ferme Picardie &amp; Mon Copain"}
\ No newline at end of file
added data/enrich_cache/biscotteyarns.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "biscotteyarns.com", "logo_url": "https://leslainesbiscotte.com/cdn/shop/files/Favicon_8a142467-6ca6-4867-9298-f5f6b7bda2a5.png?crop=center&height=32&v=1727368385&width=32", "cover_url": "http://leslainesbiscotte.com/cdn/shop/files/Logo_Biscotte_2024_Vectoriel_V3-600px.jpg?v=1737721599&width=1024", "description_meta": "Biscotte Yarns specializes in hand-dyed yarns since 2007, we also carry the most popular brands of knitting yarns online and in our LYS. In addition to our collection of knitting needles and accessories, we work with knitwear designers from around the world to provide you with exclusive knitting patterns and designs.", "site_name": "Les Laines Biscotte Yarns"}
\ No newline at end of file
added data/enrich_cache/bistreauderable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistreauderable.com", "logo_url": "https://bistreauderable.com/cdn/shop/files/bitreauderable_favicon.png?crop=center&height=32&v=1667929884&width=32", "cover_url": "http://bistreauderable.com/cdn/shop/files/Bistreau-erable-image-sharing.jpg?v=1770135013", "description_meta": "Le Bistreau d\u2019\u00e9rable est une cabane \u00e0 sucre familiale o\u00f9 tradition et gourmandise se rencontrent. Profitez d\u2019une salle \u00e0 manger de 50 places, de visites guid\u00e9es, de d\u00e9gustations de produits d\u2019\u00e9rable, de la tire sur la neige et d\u2019une boutique gourmande. Notre sirop d\u2019\u00e9rable biologique, certifi\u00e9 par Ecocert, refl\u00e8te tout", "site_name": "Le Bistreau d&#39;\u00e9rable"}
\ No newline at end of file
added data/enrich_cache/bistro.cool.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistro.cool", "logo_url": "https://bistro.cool/favicon.ico", "cover_url": "https://bistro.cool/wp-content/uploads/2018/07/bistro-maree-haute-banniere-titre1-2.png", "description_meta": "Le bistro La Mar\u00e9e Haute, de l\u2019h\u00f4tel Le Manoir de Baie-Comeau, vous offre un menu diversifi\u00e9 et une salle \u00e0 manger avec une vue imprenable sur le fleuve St-Laurent. Nous pouvons vous servir pour un souper en t\u00eate-\u00e0-t\u00eate ou vous pr\u00e9parer un menu traiteur pour une r\u00e9ception de grande envergure.", "site_name": "Bistro la Mar\u00e9e haute"}
\ No newline at end of file
added data/enrich_cache/bistro4saisons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistro4saisons.com", "logo_url": "https://bistro4saisons.com/wp-content/uploads/2024/10/b4s-favicon-300x300.png", "cover_url": "https://bistro4saisons.com/wp-content/uploads/2025/05/le-bistro.jpg", "description_meta": "Situ\u00e9 au pied du mont Orford, le restaurant Bistro 4 Saisons vous offre une cuisine simple et raffin\u00e9e \u00e0 tendance europ\u00e9enne.", "site_name": "Bistro 4 Saisons"}
\ No newline at end of file
added data/enrich_cache/bistrokapzak.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistrokapzak.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/686bf6e36c5b3d2a7857e488/c4a91c77-e348-4bd9-bf12-773810c88683/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/686bf6e36c5b3d2a7857e488/t/687e5e6e2a22961e0314150c/1753112174235/LogoNoirSquare.png?format=1500w", "description_meta": "Bistro Kapzak est un restaurant \u00e0 Granby offrant une cuisine polonaise\u2011qu\u00e9b\u00e9coise cr\u00e9ative et des cocktails signatures. Une des meilleures tables des Cantons\u2011de\u2011l\u2019Est.", "site_name": "Your Site Title"}
\ No newline at end of file
added data/enrich_cache/bistrolestran.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistrolestran.ca", "logo_url": "https://bistrolestran.ca/onewebmedia/bistro-estran_logo.png?etag=W%2F%2211e19-5e69283e%22&amp;sourceContentType=image%2Fpng&amp;resize=57,57&amp;ignoreAspectRatio", "cover_url": "https://bistrolestran.ca/onewebmedia/bistro-estran_logo%20(1)___serialized1.png?etag=W%2F%2215be6-5fcea849%22&amp;sourceContentType=image%2Fpng&amp;quality=85", "description_meta": null, "site_name": "Bistro de l"}
\ No newline at end of file
added data/enrich_cache/bistrolocal245.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistrolocal245.com", "logo_url": "https://www.bistrolocal245.com/wp-content/uploads/2016/12/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bistropicbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistropicbois.com", "logo_url": "https://bistropicbois.com/wp-content/uploads/2020/07/cropped-favicon-1-180x180.png", "cover_url": "https://bistropicbois.com/wp-content/uploads/2020/07/seo-share-image.jpg", "description_meta": "Impr\u00e9gnez-vous de l&#039;ambiance branch\u00e9e, style bistro, du Pic Bois et appr\u00e9ciez tout le savoir-faire du chef et de\u00a0sa\u00a0brigade.", "site_name": "Bistro Pic Bois"}
\ No newline at end of file
added data/enrich_cache/bistrostben.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistrostben.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bistrostcharles.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistrostcharles.com", "logo_url": "https://bistrostcharles.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bistrotdesartistes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bistrotdesartistes.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/0973ac_e32efa7cc6ce424d865550a81a600f63%7Emv2.png/v1/fit/w_2500,h_1330,al_c/0973ac_e32efa7cc6ce424d865550a81a600f63%7Emv2.png", "description_meta": "Le caf\u00e9 des artistes - Tapas inspir\u00e9s des produits de Charlevoix, caf\u00e9, pizzas, sandwichs, burgers, moules, plats produits loceaux", "site_name": "Bistrot des Artistes"}
\ No newline at end of file
added data/enrich_cache/bizzcoop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bizzcoop.com", "logo_url": "https://www.bizzcoop.com/uploads/b/d2601eb0-95da-11ee-a0e1-cbc1565fcbd6/icon_180x180_ios_NDMxNz.png?width=180", "cover_url": null, "description_meta": "\u00c9picerie coop, achat local, produits en vrac, z\u00e9ro-d\u00e9chets, produits r\u00e9gionaux, alimentation saine", "site_name": "BIZZ coop\u00e9rative d&#039;alimentation locale"}
\ No newline at end of file
added data/enrich_cache/bkind.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bkind.com", "logo_url": "https://bkind.com/cdn/shop/files/FEUILLE-Noir.png?crop=center&height=32&v=1738962505&width=32", "cover_url": "http://bkind.com/cdn/shop/files/BKIND_BaumeDemNett-10-0.jpg?v=1758901637", "description_meta": "Montreal-based company that offers plant-based, vegan skincare. Shop sustainable face, hair, nail &amp; body care.", "site_name": "BKIND"}
\ No newline at end of file
added data/enrich_cache/blackhockscreation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "blackhockscreation.com", "logo_url": "https://blackhockscreation.com/favicon.ico", "cover_url": "https://blackhockscreation.com/wp-content/uploads/2022/10/logo-black-hocks-creation_OFFICIEL.png", "description_meta": "D\u00e9couvrez nos articles en cuir faits \u00e0 la main uniques et sur mesure avec des cuirs provenant des meilleures tanneries. Magasinez maintenant!", "site_name": "Black Hocks Creation"}
\ No newline at end of file
added data/enrich_cache/blancmeringue.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "blancmeringue.com", "logo_url": "https://blancmeringue.com/favicon.ico", "cover_url": null, "description_meta": "Nous offrons des superbe g&acirc;teaux pour toute occasion : f&ecirc;te d&#39;enfants, mariage, bapt&ecirc;me, anniversaires, &eacute;v&eacute;nements corporatifs. Nous livrons jusqu&#39;&agrave; 50 km", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bleu-nature.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleu-nature.com", "logo_url": "https://bleu-nature.com/favicon.ico", "cover_url": null, "description_meta": "Bleu-nature offre des produits du terroir au Saguenay\u2013Lac-Saint-Jean,Production, transformation et vente de produits de camerise, vinaigrettes de camerises, bleuets et framboises,tartinade et beurre.", "site_name": "Bleu-Nature"}
\ No newline at end of file
added data/enrich_cache/bleucitron.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleucitron.ca", "logo_url": "https://bleucitron.ca/wp-content/uploads/2025/04/favicon.svg", "cover_url": null, "description_meta": "Resto-Bistro chic et sympathique situ\u00e9 au coeur du magnifique village de Saint-Charles-de-Bellechasse, \u00e0 seulement 20 minutes des ponts.", "site_name": "Bleu Citron"}
\ No newline at end of file
added data/enrich_cache/bleucommeleciel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleucommeleciel.com", "logo_url": "data:;base64,iVBORw0KGgo=", "cover_url": null, "description_meta": "Bijouterie au concept unique qui propose \u00e0 sa client\u00e8le une s\u00e9lection exclusive de bijoux pr\u00e9cieux et de fantaisie haut-de-gamme provenant de cr\u00e9ateurs r\u00e9put\u00e9s de Paris ainsi que de la C\u00f4te d\u2019Azur.", "site_name": "Bleu Comme Le Ciel"}
\ No newline at end of file
added data/enrich_cache/bleuetbon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetbon.com", "logo_url": "https://bleuetbon.com/wp-content/uploads/2025/04/cropped-favicon-bleuetbon-bleu-fonce-180x180.png", "cover_url": "https://bleuetbon.com/wp-content/uploads/2025/12/OGtag-BleuBon-v2.jpg", "description_meta": "Petits fruits du Qu\u00e9bec surgel\u00e9s et tartinades saines sucr\u00e9es uniquement avec du sirop d\u2019\u00e9rable et \u00e9paissies avec de la graine de chia.", "site_name": "Bleu &amp; Bon"}
\ No newline at end of file
added data/enrich_cache/bleuetiere-saguenoise.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetiere-saguenoise.ca", "logo_url": "https://www.bleuetiere-saguenoise.ca/android-icon-192x192.png", "cover_url": "https://www.bleuetiere-saguenoise.ca/images/background.jpg", "description_meta": "Situ\u00e9 en bordure du chemin Saint-\u00c9tienne \u00e0 mi-chemin entre Petit-Saguenay et le Village-Vacances Petit-Saguenay, Bleueti\u00e8re Saguenoise offrent l\u2019autocueillette.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bleuetierebenoit.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetierebenoit.com", "logo_url": "https://static.wixstatic.com/media/a3eab5_22d7a5fafc004cf785a35a6e881ca820%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a3eab5_22d7a5fafc004cf785a35a6e881ca820%7Emv2.png", "cover_url": null, "description_meta": "Bienvenue \u00e0 la Bleueti\u00e8re Benoit. D\u00e8s la mi-juillet et jusqu\u2019\u00e0 la fin ao\u00fbt, venez vivre l\u2019exp\u00e9rience de l\u2019autocueillette ou simplement faire provision de nos d\u00e9licieux bleuets frais cueillis. Profitez de l", "site_name": "Bleueti\u00e8re Benoit"}
\ No newline at end of file
added data/enrich_cache/bleuetieregiard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetieregiard.ca", "logo_url": "https://bleuetieregiard.ca/wp-content/uploads/2021/02/cropped-favicon_bleuetiere-giard-180x180.png", "cover_url": null, "description_meta": null, "site_name": "Bleueti\u00e8re Giard"}
\ No newline at end of file
added data/enrich_cache/bleuetieregoulet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetieregoulet.com", "logo_url": "https://bleuetieregoulet.com/wp-content/uploads/2024/10/cropped-bleuetiere-goulet-2024-FINAL_icon-fond-clair-RECADRE-CARRE-180x180.jpg", "cover_url": null, "description_meta": "La Bleueti\u00e8re de Saint-Fr\u00e9d\u00e9ric vous offre plusieurs activit\u00e9s et produits du bleuet, des vins et alcools, une \u00e9rabli\u00e8re, un verger, un bar laitier et un kiosque \u00e0 la ferme.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bleuetieremarland.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetieremarland.com", "logo_url": "https://s0.wp.com/i/webclip.png", "cover_url": "https://i0.wp.com/bleuetieremarland.com/wp-content/uploads/2020/02/tourisme-chaudiere-appalaches-ete-gourmand-jour-3-jeff-frenette-photography-43.jpg?fit=1200%2C800&#038;ssl=1", "description_meta": "La Bleueti\u00e8re Marland est une entreprise familiale agrotouristique sp\u00e9cialis\u00e9e dans la culture des petits fruits et l\u00e9gumes. La r\u00e9putation de cette entreprise familiale provient de la propret\u00e9 des lieux, de la qualit\u00e9 des produits, du service \u00e0 la client\u00e8le courtois ainsi que de l&#039;exp\u00e9rience authentique qu&#039;on y propose.", "site_name": "Bleueti\u00e8re Marland"}
\ No newline at end of file
added data/enrich_cache/bleuetnordic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetnordic.com", "logo_url": "https://bleuetnordic.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bleuetorbleu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetorbleu.com", "logo_url": "https://bleuetorbleu.com/favicon.ico", "cover_url": null, "description_meta": "Bleueti\u00e8re en Estrie", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bleuetroyal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetroyal.com", "logo_url": "https://bleuetroyal.com/favicon.ico", "cover_url": null, "description_meta": "Bleuet Royal Acueil description", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bleuets-mistassini.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuets-mistassini.com", "logo_url": "https://bleuets-mistassini.com/wp-content/uploads/2024/07/cropped-bm-favicon-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bleuetsauvage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetsauvage.com", "logo_url": "https://bleuetsauvage.com/resources/20150825_071633.jpg", "cover_url": null, "description_meta": "Producteur de bleuet sauvage. Petite entreprise du Lac Saint Jean, Qu\u00e9bec, Canada. Le bleuet sauvage est un petit fruit qui pousse naturellement dans la r\u00e9gion et tout le nord qu\u00e9bequois.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/bleuetsparisville.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleuetsparisville.ca", "logo_url": "https://www.bleuetsparisville.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Bleueti\u00e8re et P\u00e9pini\u00e8re de Parisville"}
\ No newline at end of file
added data/enrich_cache/bleulavande.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bleulavande.com", "logo_url": "https://bleulavande.com/cdn/shop/files/favicon-bleulavande_9.png?v=1771603584&width=96", "cover_url": "http://bleulavande.com/cdn/shop/files/bleu-lavande-boutique-et-champs-de-lavande.jpg?v=1692039313&width=1024", "description_meta": "Since 2004, Bleu Lavande embodies wellness, purity &amp; authenticity. Explore the soothing benefits of lavender through unique range of body and home products.", "site_name": "Bleu Lavande"}
\ No newline at end of file
added data/enrich_cache/bluepearldistillerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bluepearldistillerie.com", "logo_url": "https://bluepearldistillerie.com/favicon.ico", "cover_url": "http://bluepearldistillerie.com/cdn/shop/files/Social-Logo_35fafbc9-014e-456a-91aa-791900a214e5_1024x.png?v=1608242252", "description_meta": "Notre site BluePearl Distillerie est actuellement en maintenance alors que nous travaillons \u00e0 la cr\u00e9ation d&#39;une nouvelle version am\u00e9lior\u00e9e. Nous avons h\u00e2te de vous accueillir bient\u00f4t sur notre nouveau site, plus intuitif et riche en contenu!", "site_name": "BluePearl Distillerie"}
\ No newline at end of file
added data/enrich_cache/bmr.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bmr.ca", "logo_url": "https://www.bmr.ca/build/groupe-bmr/bmr/icons/bmr/icon-228.png?version1786450257", "cover_url": null, "description_meta": "Buy online everything you need for your renovation projects, home construction, decoration or your outdoor garden. Sales and liquidation, Free pick-up in store.", "site_name": "BMR"}
\ No newline at end of file
added data/enrich_cache/bocauxetco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bocauxetco.ca", "logo_url": "https://bocauxetco.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Bocaux &amp; co"}
\ No newline at end of file
added data/enrich_cache/bodhigourmet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bodhigourmet.com", "logo_url": "https://bodhigourmet.com/wp-content/uploads/2026/05/cropped-logo-BG-for-web-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boemevegan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boemevegan.com", "logo_url": "https://framerusercontent.com/images/IPUkjLdyNL9TCBVQR6H5GGOwoec.png", "cover_url": null, "description_meta": "Bo\u00c3\u00abme est n\u00c3\u00a9e d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boeufalfred.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boeufalfred.ca", "logo_url": "http://boeufalfred.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boisbelleau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boisbelleau.ca", "logo_url": "https://boisbelleau.ca/wp-content/uploads/2022/11/cropped-BoisBelleauNoir-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boisdestcyr.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boisdestcyr.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "Bois de St-Cyr"}
\ No newline at end of file
added data/enrich_cache/boisechoquette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boisechoquette.com", "logo_url": "https://www.boisechoquette.com/wp-content/uploads/2024/01/cropped-icone_barre_site500x500-180x180.png", "cover_url": "https://www.boisechoquette.com/wp-content/uploads/2025/08/seo_accueil-scaled.jpg", "description_meta": "Le Shiitake de Saveurs du bois\u00e9 Choquette, Un champignon savoureux au parfum doux et agr\u00e9able associ\u00e9 \u00e0 un go\u00fbt fin et bois\u00e9. Cultiv\u00e9 \u00e0 Danville, Qu\u00e9bec", "site_name": "Saveurs du bois\u00e9 Choquette"}
\ No newline at end of file
added data/enrich_cache/boissonchouchou.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boissonchouchou.ca", "logo_url": "https://boissonchouchou.ca/cdn/shop/files/favicon.png?v=1774638669&width=32", "cover_url": "http://boissonchouchou.ca/cdn/shop/files/social.png?v=1772570623", "description_meta": "Boisson p\u00e9tillante pr\u00e9par\u00e9e avec de vrais fruits et des ingr\u00e9dients naturels, chouchou\u00a0propose un go\u00fbt authentique et juste assez sucr\u00e9.", "site_name": "Boisson chouchou"}
\ No newline at end of file
added data/enrich_cache/boissonsduroy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boissonsduroy.com", "logo_url": "https://boissonsduroy.com/wp-content/uploads/2023/12/favicon-boisson-du-roy-300x300.png", "cover_url": "https://boissonsduroy.com/wp-content/uploads/2024/04/Nouveaux-logos-BDR-5.jpg", "description_meta": "Les Boissons du Roy, une entreprise familiale, se sp\u00e9cialise dans la fabrication de boissons alcoolis\u00e9es et de produits du terroir \u00e0 base des fruits de nos champs.", "site_name": "boissonsduroy.com"}
\ No newline at end of file
added data/enrich_cache/boiteavins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boiteavins.com", "logo_url": "https://boiteavins.com/cdn/shop/files/Logo_BAV-_1_-2_228x228.png?v=1738592979", "cover_url": "https://boiteavins.com/cdn/shop/files/Boite-a-vins--Specialiste-des-vins-du-Quebec_17aa735d-3371-4c7b-aef9-c7902f57f44c_1200x.jpg?v=1738627664", "description_meta": "D\u00e9couvrez notre s\u00e9lection exclusive de vin du Qu\u00e9bec \u269c\ufe0f. Nos produits sont s\u00e9lectionn\u00e9s par un sommelier et ne sont g\u00e9n\u00e9ralement pas disponibles \u00e0 la SAQ.", "site_name": "La Bo\u00eete \u00e0 Vins"}
\ No newline at end of file
added data/enrich_cache/boldairpur.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boldairpur.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bomdesign.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bomdesign.ca", "logo_url": "https://bomdesign.ca/wp-content/uploads/2019/04/iOS-icon-1.png", "cover_url": "https://bomdesign.ca/wp-content/uploads/2020/03/BOM-Vignette.png", "description_meta": null, "site_name": "bom (design)"}
\ No newline at end of file
added data/enrich_cache/bonnetier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bonnetier.com", "logo_url": "https://bonnetier.com/cdn/shop/files/favicon_12b49d82-30b8-45c0-a3b4-9fcfdf910d48_32x32.png?v=1674482773", "cover_url": "http://bonnetier.com/cdn/shop/files/logo-bonnetier_2_51e89b88-f315-4872-b922-52e3fb3ce3b7.png?v=1754409130", "description_meta": "We offer high quality merino clothing entirely made in North America. Also, we suggest you try our cozy wool socks and our crazy comfi tees.", "site_name": "BONNETIER"}
\ No newline at end of file
added data/enrich_cache/bonsaieternel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bonsaieternel.com", "logo_url": "https://bonsaieternel.com/favicon.ico", "cover_url": "https://bonsaieternel.com/wp-content/uploads/2022/12/Bonsai_Frelighsburg_0773-scaled.jpg", "description_meta": "Discover handcrafted copper tree sculptures by Canadian artist Michael Dinardo. Each sculpture is inspired by nature and created with exceptional realism.", "site_name": "Bonsa\u00ef \u00c9ternel - Inspired by Nature. Shaped by Time."}
\ No newline at end of file
added data/enrich_cache/bontedistribution.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bontedistribution.com", "logo_url": "https://bontedistribution.com/images/fav_icon.png", "cover_url": null, "description_meta": "Des produits de qualit\u00e9 \u00e0 base de miel Bont\u00e9", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boosthe.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boosthe.ca", "logo_url": "https://boosthe.ca/cdn/shop/files/Creation_sans_titre_40.png?crop=center&height=32&v=1707614104&width=32", "cover_url": "http://boosthe.ca/cdn/shop/files/Creation_sans_titre-5_copie.jpg?v=1774831151", "description_meta": "Sans sucre. Sans crash. 5 ingr\u00e9dients. \u2014 Une \u00e9nergie qui fait du bien.", "site_name": "Boosth\u00e9"}
\ No newline at end of file
added data/enrich_cache/boreaco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boreaco.ca", "logo_url": "https://boreaco.ca/favicon.ico", "cover_url": null, "description_meta": "Produits alimentaires artisanaux \u00c3\u00a0 base de champignons et de l\u00c3\u00a9gumes frais locaux.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boreadecouverte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boreadecouverte.com", "logo_url": "https://boreadecouverte.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/borealait.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "borealait.com", "logo_url": "https://static.wixstatic.com/ficons/3f877e_a1dfb020a3074d9e90f61841bc80474e%7Emv2.ico", "cover_url": null, "description_meta": "Bor\u00e9alait, c", "site_name": "Bor\u00e9alait"}
\ No newline at end of file
added data/enrich_cache/boreale.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boreale.com", "logo_url": "https://www.boreale.com/dist/meta/favicon/apple-touch-icon.png", "cover_url": "https://s3.ca-central-1.amazonaws.com/media.boreale.com/files/_1200x630_crop_center-center_82_none/249103552_4818080841559862_5704928879334323432_n.jpg?mtime=1667937236", "description_meta": "Des bi\u00e8res de qualit\u00e9 faites \u00e0 partir d&#039;ingr\u00e9dients naturels, sans compromis. Chaque bi\u00e8re offre une combinaison unique de go\u00fbts et de saveurs.", "site_name": "Bor\u00e9ale"}
\ No newline at end of file
added data/enrich_cache/boreasens.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boreasens.com", "logo_url": "https://boreasens.com/cdn/shop/files/cropped-favicon-192x192.webp?crop=center&height=32&v=1729523540&width=32", "cover_url": "http://boreasens.com/cdn/shop/files/Forest-banner-bs-1920x1000_9cd70da3-9311-45d4-95c5-e04ec3939621.webp?v=1776859625", "description_meta": "Discover the power of nature with Borea Sens. Our organic products are guaranteed 100% pure, natural, and authentic. Our product line comes directly from the Boreal Forest in Quebec and is certified by Ecocert Canada.", "site_name": "BoreA SENS"}
\ No newline at end of file
added data/enrich_cache/boscocharlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boscocharlevoix.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/88588511-1dc8-4f04-9957-1f48b65faaba/Bosco_website_1.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/88588511-1dc8-4f04-9957-1f48b65faaba/thumbnails/thumbnail-a3bde5d8-3e59-44e3-a903-bd49753a0435.png", "description_meta": "D\u00e9couvrez l&#x27;activit\u00e9 de tra\u00eeneau \u00e0 chiens de 2h30 avec Bosco Charlevoix et rencontrez nos 34 adorables chiens.", "site_name": "Bosco Charlevoix"}
\ No newline at end of file
added data/enrich_cache/bosirop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bosirop.com", "logo_url": "https://bosirop.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boucanneriebelleriviere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucanneriebelleriviere.com", "logo_url": "https://static.wixstatic.com/media/5aaeff_29c8b00148d649f797ba189ea81c9097.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5aaeff_29c8b00148d649f797ba189ea81c9097.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bouchardartisanbio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bouchardartisanbio.com", "logo_url": "https://bouchardartisanbio.com/wp-content/uploads/2018/01/cropped-flavicon_bouchard-artisan-bio-180x180.png", "cover_url": "https://bouchardartisanbio.com/wp-content/uploads/2018/01/cropped-flavicon_bouchard-artisan-bio.png", "description_meta": null, "site_name": "Bouchard Artisan Bio"}
\ No newline at end of file
added data/enrich_cache/boucheriechezjoe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucheriechezjoe.com", "logo_url": "https://www.boucheriechezjoe.com/templates/gdw/favicon/apple-touch-icon.png", "cover_url": "https://www.boucheriechezjoe.com/images/img_partage_facebook.png", "description_meta": "Une client\u00e8le bien \u00e9tablie, des produits de toutes sortes pour les amateurs de BBQ, une grande diversit\u00e9 de produits locaux ainsi qu", "site_name": "Boucherie chez Joe - Boucherie La Malbaie"}
\ No newline at end of file
added data/enrich_cache/boucheriecote.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucheriecote.ca", "logo_url": "http://boucheriecote.ca/wp-content/uploads/2016/03/favicon.jpg", "cover_url": null, "description_meta": "D\u00e9couvrez la Boucherie A. C\u00f4t\u00e9 au Centre-du-Qu\u00e9bec, une institution o\u00f9 la viande est \u00e0 son honneur ainsi que les produits du terroir qu\u00e9b\u00e9cois\u00a0!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boucheriecoutu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucheriecoutu.com", "logo_url": "https://boucheriecoutu.com/favicon.ico", "cover_url": "https://boucheriecoutu.com/wp-content/uploads/logo-boucherie-coutu-200x200.jpg", "description_meta": "Boucherie Coutu &amp; Fr\u00e8res vous offre un comptoir de viandes fra\u00eeches, des charcuteries et bien plus. Sp\u00e9ciaux chaque semaine. Passez-nous voir !", "site_name": "Boucherie Coutu"}
\ No newline at end of file
added data/enrich_cache/boucherieduterroir.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucherieduterroir.ca", "logo_url": "https://boucherieduterroir.ca/cdn/shop/files/bdtfavorange_32x32.png?v=1657859179", "cover_url": null, "description_meta": "Artisans transformateurs de produits du terroir qu\u00e9b\u00e9cois et canadien. D\u00e9taillants de boeufs (Highland Qu\u00e9bec, Wagyu A5, AAA et Prime), porcs, poulets, agneau, viandes chevaline, poissons, fruits de mer, produits d&#39;\u00e9piceries et bi\u00e8res locales. 5 boucheries/comptoirs et ventes en ligne au meilleur rapport qualit\u00e9/prix.", "site_name": "Boucherie du Terroir"}
\ No newline at end of file
added data/enrich_cache/boucherieharvey.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucherieharvey.com", "logo_url": "https://boucherieharvey.com/favicon.ico", "cover_url": "http://boucherieharvey.com/images/logo_Boucherie_Harvey.png", "description_meta": "Service de d\u00c3\u00a9bitage pour viande de bois, abattoir de proximit\u00c3\u00a9 pour boeuf et porc et service de d\u00c3\u00a9coupe avec transformation des viandes au choix", "site_name": "boucherieharvey.com"}
\ No newline at end of file
added data/enrich_cache/boucheriehouleetguevin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucheriehouleetguevin.com", "logo_url": "https://boucheriehouleetguevin.com/favicon.ico", "cover_url": null, "description_meta": "La Boucherie Houle et Gu\u00e9vin est une entreprise qu\u00e9b\u00e9coise situ\u00e9e sur la rue Girouard depuis 1978. Nous mettons tout notre c\u0153ur \u00e0 l&#39;ouvrage, afin de vous offrir des produits incomparables.", "site_name": "Boucherie Houle et Gu\u00e9vin"}
\ No newline at end of file
added data/enrich_cache/boucheriejacko.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucheriejacko.com", "logo_url": "https://boucheriejacko.com/wp-content/uploads/2019/02/logo-fond-blanc.jpg", "cover_url": "https://boucheriejacko.com/wp-content/uploads/2019/02/logo-fond-blanc.jpg", "description_meta": "Produits : Viandes, mets cuisin\u00e9s &#x2d; Traiteur : Repas d\u00e9licieux et service professionnel &#x2d; Le meilleur jerky fait sur place au Qu\u00e9bec \u00e0 commander en ligne.", "site_name": "Boucherie Jacko"}
\ No newline at end of file
added data/enrich_cache/boucherienordest.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucherienordest.com", "logo_url": "https://boucherienordest.com/favicon.ico", "cover_url": null, "description_meta": "Boucherie Nordest offre en vente en ligne du b\u0153uf Angus, poulet, porc, agneau et veau, des viandes sans hormones et sans antibiotiques.", "site_name": "Boucherie Nordest"}
\ No newline at end of file
added data/enrich_cache/boucherieraymondetandre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucherieraymondetandre.com", "logo_url": "https://boucherieraymondetandre.com/wp-content/uploads/fbrfg/apple-touch-icon.png", "cover_url": "https://boucherieraymondetandre.com/app/uploads/2019/08/og-preview.jpg", "description_meta": null, "site_name": "Boucherie Raymond et Andr\u00e9"}
\ No newline at end of file
added data/enrich_cache/boucheriesthilaire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucheriesthilaire.com", "logo_url": "https://boucheriesthilaire.com/images/favicon/apple-touch-icon.png", "cover_url": "https://boucheriesthilaire.com/images/og-preview.jpg", "description_meta": "La boucherie St-Hilaire vous offre les meilleures viandes sur le march\u00e9, dont le b\u0153uf certifi\u00e9 Angus", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boucherville.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boucherville.ca", "logo_url": "https://www.boucherville.ca/wp-content/themes/boucherville.ca/assets/favicon/apple-touch-icon.png", "cover_url": "https://www.boucherville.ca/wp-content/uploads/2021/04/partage.jpg", "description_meta": "Bienvenue sur le nouveau site de la Ville de Boucherville. D\u00e9couvrez-y les services et les informations pratiques de la vie municipale.", "site_name": "Ville de Boucherville"}
\ No newline at end of file
added data/enrich_cache/bougiesdici.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bougiesdici.ca", "logo_url": "https://bougiesdici.ca/wp-content/uploads/2026/05/cropped-Bougiesdici_Favicon-180x180.webp", "cover_url": null, "description_meta": "Bougies parfum\u00e9es 100% naturelles et \u00e9cologiques, coul\u00e9es \u00e0 la main en petits lots et fi\u00e8rement fabriqu\u00e9es au Qu\u00e9bec.", "site_name": "bougies d&#039;ici"}
\ No newline at end of file
added data/enrich_cache/bougredor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bougredor.com", "logo_url": "https://bougredor.com/wp-content/uploads/2024/03/favicon-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boulangerieauger.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerieauger.com", "logo_url": "https://boulangerieauger.com/app/themes/effetweb/assets/icons/android-icon-192x192.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boulangeriebouchard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangeriebouchard.com", "logo_url": "http://www.boulangeriebouchard.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boulangerieduroyaume.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerieduroyaume.com", "logo_url": "https://www.nutrinor.com/app/uploads/sites/12/2021/03/cropped-Boulangerie-du-Royaume-1-180x180.png", "cover_url": null, "description_meta": "Fond\u00e9e en 1997, la Boulangerie du Royaume\u00a0est l\u2019un des plus grands fabricants et distributeurs de pain et autres produits de [&hellip;]", "site_name": "Boulangerie du royaume"}
\ No newline at end of file
added data/enrich_cache/boulangeriefarine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangeriefarine.ca", "logo_url": "https://cdn.prod.website-files.com/677c26d1da4b56a25f3a72eb/677e9f6d1bf657e64b010a73_favicon256.png", "cover_url": "https://cdn.prod.website-files.com/677c26d1da4b56a25f3a72eb/677e9eb55f51872a2f345915_og-image.webp", "description_meta": "Bienvenue \u00e0 la Boulangerie Farine \u00e0 Alma. D\u00e9couvrez notre recette de pain fait \u00e0 partir d\u2019ingr\u00e9dients r\u00e9gionaux pour un go\u00fbt unique et \u00e9coresponsable.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boulangeriegraintitude.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangeriegraintitude.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/65d0f00fcde927547c5ec015/aacdfd67-ab5f-4764-9b80-afcacbe0bf28/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/65d0f00fcde927547c5ec015/t/65eb6854a203bf72d0fe9759/1709926484782/logo-court.png?format=1500w", "description_meta": null, "site_name": "Boulangerie Graintitude &#124; pains au levain"}
\ No newline at end of file
added data/enrich_cache/boulangerieguay.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerieguay.ca", "logo_url": "https://boulangerieguay.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boulangerielalveole.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerielalveole.com", "logo_url": "https://www.boulangerielalveole.com/web/image/website/1/favicon?unique=1698b62", "cover_url": "https://boulangerielalveole.com/web/image/website/1/logo?unique=1698b62", "description_meta": null, "site_name": "Boulangerie L&#39;alv\u00e9ole"}
\ No newline at end of file
added data/enrich_cache/boulangerielapetrie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerielapetrie.com", "logo_url": "https://boulangerielapetrie.com/wp-content/uploads/2021/09/cropped-favicon-180x180.jpg", "cover_url": "https://boulangerielapetrie.com/wp-content/uploads/2021/09/montage_facebook1.jpg", "description_meta": "Des produits frais et savoureux confectionn\u00c3\u00a9s avec soin \u00c3\u00a0 partir de farines biologiques. Des effluves enivrantes et une ambiance chaleureuse. Que demander de plus!", "site_name": "La P\u00c3\u00a9trie"}
\ No newline at end of file
added data/enrich_cache/boulangerielareserve.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerielareserve.com", "logo_url": "https://boulangerielareserve.com/wp-content/uploads/2020/03/cropped-Logo-la-r\u00e9serve-1-180x180.jpg", "cover_url": "http://boulangerielareserve.com/wp-content/uploads/2020/04/banni\u00e8re-lar\u00e9serve.jpg", "description_meta": "La R\u00e9serve est une boulangerie artisanale install\u00e9e au centre-ville de Thetford Mines. D\u00e9couvrez nos pains frais du jour faits avec amour!", "site_name": "Boulangerie La R\u00e9serve"}
\ No newline at end of file
added data/enrich_cache/boulangerielepetitbreton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerielepetitbreton.com", "logo_url": "https://boulangerielepetitbreton.com/favicon.ico", "cover_url": "https://boulangerielepetitbreton.com/wp-content/uploads/2021/06/cropped-Logo_LePetitBreton_transperency-1-min.png", "description_meta": "Boulangerie Le Petit Breton est fiers de vous offrir une s\u00e9lection de plus de soixante-dix types de pains artisanaux.", "site_name": "Le Petit Breton"}
\ No newline at end of file
added data/enrich_cache/boulangerielepicurien.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerielepicurien.com", "logo_url": "https://boulangerielepicurien.com/wp-content/uploads/2025/03/fav-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boulangerieppain.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangerieppain.com", "logo_url": "https://boulangerieppain.com/wp-content/uploads/2020/02/cropped-logo_ppain-1-180x180.jpg", "cover_url": null, "description_meta": "Bienvenue sur notre nouveau site internet ! Vous pouvez consulter nos sortes de pains disponibles et nos c\u00e9l\u00e8bres pizza dans l&#039;onglet boulangerie.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boulangeriesibuet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangeriesibuet.com", "logo_url": "https://www.boulangeriesibuet.com/cdn/shop/files/Sibuet_Favicon.png?crop=center&height=32&v=1665509632&width=32", "cover_url": "http://www.boulangeriesibuet.com/cdn/shop/files/Sibuet_logo-WEB_pastille_1coul_rouge.jpg?height=628&pad_color=ffffff&v=1645710798&width=1200", "description_meta": "Boulangerie artisanale | Restaurant | \u00c9picerie fine. D\u00e8s 7h le matin, les portes du Sibuet s&#39;ouvrent! D\u00e9gustez la fameuse tarte Sibuet ou le bon pain au levain!", "site_name": "Sibuet boulangerie + resto"}
\ No newline at end of file
added data/enrich_cache/boulangeriestdonat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangeriestdonat.com", "logo_url": "https://boulangeriestdonat.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boulangeriestmethode.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boulangeriestmethode.com", "logo_url": "https://boulangeriestmethode.com/favicon.ico", "cover_url": "https://boulangeriestmethode.com/static/images/frontend/facebook_fr.jpg", "description_meta": "On n", "site_name": "Boulangerie St-M\u00e9thode"}
\ No newline at end of file
added data/enrich_cache/bouletdeliceserable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bouletdeliceserable.com", "logo_url": "https://bouletdeliceserable.com/cdn/shop/files/Erabliere-Boulet_Logo_Feuille-Erable-Seule_32x32.png?v=1621968260", "cover_url": "http://bouletdeliceserable.com/cdn/shop/files/Boulet-Delices-Erable-Logo-Couleur_1200x1200.jpg?v=1621967187", "description_meta": "Produits d&#39;\u00e9rable de grande qualit\u00e9 de la r\u00e9gion de Montmagny. D\u00e9couvrez le go\u00fbt d&#39;instinctif des produits d&#39;\u00e9rable du Qu\u00e9bec. Une exp\u00e9rience simple, agr\u00e9able et de grande qualit\u00e9. Livraison partout au Qu\u00e9bec.", "site_name": "Boulet d\u00e9lices \u00e0 l&#39;\u00e9rable"}
\ No newline at end of file
added data/enrich_cache/bourdeauartistepeintre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bourdeauartistepeintre.com", "logo_url": "https://bourdeauartistepeintre.com/owebo-votresite/sites/default/files/images/logo_ombre.png", "cover_url": "https://bourdeauartistepeintre.com/sites/default/files/images/logo_ombre.png", "description_meta": "Tableau, peinture acrylique, art figuratif et abstrait de l&#039;artiste peintre Bourdeau", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boutique.cafedelabrulerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.cafedelabrulerie.com", "logo_url": "https://boutique.cafedelabrulerie.com/wp-content/uploads/2023/12/favicon.png", "cover_url": "https://cafedelabrulerie.com/wp-content/uploads/2024/02/cb-opengraph.jpg", "description_meta": "D\u00e9couvrez nos diff\u00e9rentes torr\u00e9factions. Certifi\u00e9 carboneutre. Forfaits pour entreprises disponibles, avec livraison gratuite* ou ramassage en restaurant.", "site_name": "Caf\u00e9 de la Br\u00fblerie - UN CAF\u00c9 QUI SURPASSE LES ATTENTES"}
\ No newline at end of file
added data/enrich_cache/boutique.chocolatsvandeneynden.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.chocolatsvandeneynden.com", "logo_url": "https://boutique.chocolatsvandeneynden.com/cdn/shop/files/Favicon-vandeneynden_32x32.png?v=1643754850", "cover_url": "http://boutique.chocolatsvandeneynden.com/cdn/shop/files/logo_Vanden-Eynden.png?v=1597322373", "description_meta": "Chocolats Vanden Eynden est une chocolaterie artisanale fond\u00e9e en 2004 et situ\u00e9e \u00e0 Magog dans les Cantons de l&#39;Est. Tous nos chocolats sont confectionn\u00e9s, \u00e0 la main dans notre atelier que vous pouvez voir directement \u00e0 partir de la boutique. Nous travailons uniquement avec du chocolat de toute premi\u00e8re qualit\u00e9.", "site_name": "Chocolats Vanden Eynden"}
\ No newline at end of file
added data/enrich_cache/boutique.jeannotte.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.jeannotte.ca", "logo_url": "http://boutique.jeannotte.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boutique.labricole.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.labricole.co", "logo_url": "https://boutique.labricole.co/uploads/b/e3916140-fef1-11ec-9555-bd9eb7ddc31c/icon_180x180_ios_NTg5ND.png?width=180", "cover_url": "https://boutique.labricole.co/uploads/b/e3916140-fef1-11ec-9555-bd9eb7ddc31c/IMG_8435.JPG", "description_meta": "La Bricole est une ferme productrice de viande de canard (cuisses confites, poitrines), un produit unique au Saguenay.", "site_name": "La Bricole"}
\ No newline at end of file
added data/enrich_cache/boutique.laiteriedecoaticook.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.laiteriedecoaticook.com", "logo_url": "https://boutique.laiteriedecoaticook.com/cdn/shop/files/COAT_Favicon.png?crop=center&height=32&v=1747766001&width=32", "cover_url": "http://boutique.laiteriedecoaticook.com/cdn/shop/files/laiterie-de-coaticook.webp?v=1747770129", "description_meta": "Laiterie de Coaticook", "site_name": "Laiterie de Coaticook"}
\ No newline at end of file
added data/enrich_cache/boutique.legoutdelacotenord.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.legoutdelacotenord.ca", "logo_url": "https://boutique.legoutdelacotenord.ca/cdn/shop/files/fevicon_32x32.png?v=1614334199", "cover_url": "https://cdn.shopify.com/s/files/1/0505/6695/5174/files/annonce_site.jpg?v=1607636668", "description_meta": "Plongez dans l\u2019univers de puret\u00e9 sauvage et de magie bor\u00e9ale des produits du terroir nord-c\u00f4tier : un voyage entre tourbi\u00e8res, bord de mer, bois\u00e9 et marais sal\u00e9\u2026", "site_name": "Le go\u00fbt de la C\u00f4te-Nord"}
\ No newline at end of file
added data/enrich_cache/boutique.lesmauvaisesherbes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.lesmauvaisesherbes.com", "logo_url": "https://boutique.lesmauvaisesherbes.com/cdn/shop/t/31/assets/favicon-196x196.png?v=167803671280321930341704731285", "cover_url": "https://cdn.shopify.com/s/files/1/0107/2214/8410/files/89503908_1314951545368847_779447684170776576_o_c152ec0b-5c37-469c-86b6-b813bcf154f5.jpg?v=1631114040", "description_meta": "Notre mission? D\u00e9mocratiser le mode de vie \u00e9coresponsable et la fabrication de cosm\u00e9tiques et produits nettoyants maison, dans une d\u00e9marche minimaliste et de r\u00e9duction des d\u00e9chets. D\u00e9couvre ici tout ce qu&#39;il te faut pour fabriquer tes propres produits!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/boutique.maisonducafelarmorique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.maisonducafelarmorique.com", "logo_url": "https://boutique.maisonducafelarmorique.com/cdn/shop/t/2/assets/favicon.png?v=20326494297163490341507082516", "cover_url": "http://boutique.maisonducafelarmorique.com/cdn/shop/t/2/assets/logo_fb_graph.png?v=303", "description_meta": "Le meilleur caf\u00e9 pr\u00e9parer et torrifier \u00e0 la perfection! Nous avons nos m\u00e9langes de caf\u00e9s, caf\u00e9s provenant de pays d&#39;origines, caf\u00e9s micro-lot, infusion et le Caf\u00e9- Chocolat!", "site_name": "Maison du caf\u00e9 l&#39;Armorique"}
\ No newline at end of file
added data/enrich_cache/boutique.marie-evebordeleau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.marie-evebordeleau.com", "logo_url": "https://boutique.marie-evebordeleau.com/cdn/shop/products/bijou_marie-eve-bordeleau_32x32.jpg?v=1641841104", "cover_url": "http://boutique.marie-evebordeleau.com/cdn/shop/products/2020-logo-MEB-04_1200x628_pad_ffffff.png?v=1642630258", "description_meta": "La joailli\u00e8re Marie-Eve Bordeleau imagine et fabrique des bijoux en argent sterling depuis plus de 15 ans qui se d\u00e9marquent par leur texture unique. Les bijoux Marie-Eve Bordeleau sont confectionn\u00e9s artisanalement au Qu\u00e9bec et sont inspir\u00e9s par un coquillage d\u2019oursin de mer, de grains de caf\u00e9 et d&amp;#39;aliments textur\u00e9s.", "site_name": "Marie-Eve Bordeleau, Sculptures pr\u00eates \u00e0 porter"}
\ No newline at end of file
added data/enrich_cache/boutique.microdulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.microdulac.com", "logo_url": "http://boutique.microdulac.com/wp-content/themes/la_web_shop/images/apple-touch-icon.png", "cover_url": "http://boutique.microdulac.com/wp-content/themes/la_web_shop/images/facebook_image.png", "description_meta": "Situ\u00e9e \u00e0 proximit\u00e9 de la V\u00e9loroute des Bleuets, des plages et du march\u00e9 public, dans le charmant village de St-G\u00e9d\u00e9on, la Microbrasserie du Lac St-Jean vous convie \u00e0 un rendez-vous riche en saveur.", "site_name": "Microbrasserie du Lac Saint-Jean"}
\ No newline at end of file
added data/enrich_cache/boutique.mielabitemis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.mielabitemis.com", "logo_url": "https://boutique.mielabitemis.com/cdn/shop/files/favicon_32x32.png?v=1613704109", "cover_url": "https://cdn.shopify.com/s/files/1/1758/8591/files/logo-fond-blanc.png?height=628&pad_color=ffffff&v=1613704109&width=1200", "description_meta": "Boutique en ligne officielle de Miel Abit\u00e9mis, entreprise originaire de l&#39;Abitibi-T\u00e9miscamingue.", "site_name": "Miel Abit\u00e9mis"}
\ No newline at end of file
added data/enrich_cache/boutique.mielestrie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.mielestrie.com", "logo_url": "https://dhgf5mcbrms62.cloudfront.net/48265274/global/M7AmLiD-180x180.png", "cover_url": "https://dhgf5mcbrms62.cloudfront.net/48265274/global/5llk4bN-1200x1200.jpg", "description_meta": "D&eacute;couvrez Miellerie de l", "site_name": "Miellerie de l"}
\ No newline at end of file
added data/enrich_cache/boutique.pausematic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutique.pausematic.com", "logo_url": "https://boutique.pausematic.com/wp-content/uploads/2020/10/pausematic-favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/boutiquearomedeschamps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiquearomedeschamps.com", "logo_url": "https://boutiquearomedeschamps.com/favicon.ico", "cover_url": null, "description_meta": "Huilerie ar\u00f4me des champs", "site_name": "Huilerie ar\u00f4me des champs"}
\ No newline at end of file
added data/enrich_cache/boutiqueartinca.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiqueartinca.com", "logo_url": "https://boutiqueartinca.com/wp-content/uploads/2016/05/icon_blog.png", "cover_url": "https://boutiqueartinca.com/wp-content/uploads/2013/08/boutique-art-inca2.jpg", "description_meta": "Laine d&#039;alpaga, bas alpaga, couverture alpaga, produits d&#039;Am\u00e9rique du Sud et plus! Nous offrons des produits r\u00e9confortants et color\u00e9s.", "site_name": "Boutique art Inca"}
\ No newline at end of file
added data/enrich_cache/boutiquecitrouille.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiquecitrouille.com", "logo_url": "https://www.boutiquecitrouille.com/favicon.ico", "cover_url": "http://www.boutiquecitrouille.com/cdn/shop/files/boutique-citrouille-jeux-et-jouets-enfants-bebes.jpg?v=1744298501", "description_meta": "La Boutique Citrouille in Outremont, Montreal, offers quality toys made from wood and sustainable materials for babies and children.", "site_name": "Boutique Citrouille"}
\ No newline at end of file
added data/enrich_cache/boutiquelastation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiquelastation.com", "logo_url": "https://www.boutiquelastation.com/uploads/b/8ed72840-6ad7-11ea-83db-d17dcf20e1d4/icon_180x180_ios.png?width=180", "cover_url": "https://www.boutiquelastation.com/uploads/b/8ed72840-6ad7-11ea-83db-d17dcf20e1d4/Formule%20plateau%20pour%204.jpg", "description_meta": "Visitez notre boutique en ligne pour d\u00e9couvrir nos fromages fermiers biologiques et une s\u00e9lection de produits r\u00e9gionaux.", "site_name": "Fromagerie la Station"}
\ No newline at end of file
added data/enrich_cache/boutiquenomade.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiquenomade.net", "logo_url": "https://cdn.shoplightspeed.com/shops/648305/themes/8322/v/1128697/assets/favicon.ico?20251218005621", "cover_url": "https://cdn.shoplightspeed.com/shops/648305/themes/8322/assets/meta_fallback_image.png?2026071218151120201207162957", "description_meta": "Boutique de bijoux, v\u00eatements de designers qu\u00e9b\u00e9cois et d&#039;ailleurs, d\u00e9coration et accessoires mode avec une approche de commerce \u00e9quitable.", "site_name": "Boutique Nomade"}
\ No newline at end of file
added data/enrich_cache/boutiquerenaissance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiquerenaissance.com", "logo_url": "https://boutiquerenaissance.com/favicon.ico", "cover_url": "http://boutiquerenaissance.com/cdn/shop/files/IMG_0029_2bfa4522-cdd3-4541-8eed-31fe77c64d5f.png?v=1774832861", "description_meta": "D\u00e9couvrez nos bougies artisanales premium fabriqu\u00e9es en petites s\u00e9ries avec des mat\u00e9riaux naturels. Ambiance chaleureuse et \u00e9l\u00e9gante. Boutique en ligne au Qu\u00e9bec.", "site_name": "Cr\u00e9ations Renaissance"}
\ No newline at end of file
added data/enrich_cache/boutiquesimonturcotte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiquesimonturcotte.com", "logo_url": "https://boutiquesimonturcotte.com/cdn/shop/files/Simon_Turcotte_Confiturier_-_Favicon_c79905b6-4ef8-4c16-96b1-b7822dcaa12c.png?crop=center&height=32&v=1719706775&width=32", "cover_url": "http://boutiquesimonturcotte.com/cdn/shop/files/20230204-siteWeb-tout-les-pots-Francis-Boudrreau_A749890-2024_2a2824e7-8975-4ea4-8590-1cf8babc501f.jpg?v=1720804785", "description_meta": "Nous cr\u00e9ons, depuis maintenant 25 ans, des confitures, gel\u00e9es et moutardes artisanales, pr\u00e9par\u00e9es avec finesse \u00e0 partir des meilleurs fruits du Qu\u00e9bec et de sucre de canne biologique. Chaque pot est une invitation \u00e0 explorer des combinaisons de saveurs uniques.", "site_name": "Simon Turcotte Confiturier"}
\ No newline at end of file
added data/enrich_cache/boutiquesoha.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiquesoha.com"}
\ No newline at end of file
added data/enrich_cache/boutiquetartine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiquetartine.com", "logo_url": "https://boutiquetartine.com/cdn/shop/files/Logo_Rond.png?crop=center&height=32&v=1779061231&width=32", "cover_url": "http://boutiquetartine.com/cdn/shop/files/Logo_tartine_detoure_300dpi_2.png?v=1777262293", "description_meta": "D\u00e9couvrez les cr\u00e9ations de Boutique Tartine Inc. : bavoirs, attaches-suces, jouets de dentition, suces BIBS et accessoires personnalis\u00e9s fabriqu\u00e9s avec soin au Qu\u00e9bec.", "site_name": "Boutique Tartine Inc."}
\ No newline at end of file
added data/enrich_cache/boutiverre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "boutiverre.com", "logo_url": "https://www.boutiverre.com/uploads/b/5eea3d40-6599-11ea-a2c9-8539c609b1f6/icon_180x180_ios_MjQ2Nj.png?width=180", "cover_url": "https://www.boutiverre.com/uploads/b/5eea3d40-6599-11ea-a2c9-8539c609b1f6/5Formes%20(1)_NjQ3OT.jpg", "description_meta": "Conception sur mesure de luminaires en verre souffl\u00e9 pour le march\u00e9 r\u00e9sidentiel et commercial. Atelier \u00e0 Lac Brome, QC.", "site_name": "Luminaires en verre souffl\u00e9. Cr\u00e9ations sur mesure. Fabrication 100% locale."}
\ No newline at end of file
added data/enrich_cache/bouvillonjak.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bouvillonjak.com", "logo_url": "https://bouvillonjak.com/wp-content/uploads/2024/05/logosite1-300x300.png", "cover_url": "https://bouvillonjak.com/wp-content/uploads/2024/05/Menu-1.jpg", "description_meta": "Boucherie Le Bouvillon JAK GRAND CHOIX DE VIANDE DE PREMI\u00c8RE QUALIT\u00c9\u200b Parcourez nos cat\u00e9gories Viandes Profitez de la meilleure viande en ville! Boulangerie Go\u00fbtez aux merveilles qu&rsquo;offre la Maison Du Pain! Cuisine Le Bouvillon Repas pr\u00e9par\u00e9s, service de traiteur et plus encore! FAQ Quels sont vos heures d&rsquo;ouverture? Nous sommes ouvert du lundi au mercredi de 9h00 \u00e0 18h00, du jeudi au ", "site_name": "Bouvillon JAK"}
\ No newline at end of file
added data/enrich_cache/bouvrette.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bouvrette.ca", "logo_url": "https://www.bouvrette.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/brasseriealbion.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseriealbion.com", "logo_url": "https://www.brasseriealbion.com/wp-content/uploads/2023/11/cropped-favicon-180x180.png", "cover_url": "https://www.brasseriealbion.com/wp-content/uploads/2025/03/Medallion-1.jpg", "description_meta": "Venez essayer nos bi\u00e8res inspir\u00e9es, brass\u00e9es et port\u00e9es par la grande tradition britannique \u00e0 nos emplacements de Joliette et Sainte-M\u00e9lanie.", "site_name": "Brasserie Albion"}
\ No newline at end of file
added data/enrich_cache/brasserieboswell.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasserieboswell.com", "logo_url": "https://brasserieboswell.com/wp-content/uploads/2015/09/Boswell_Logo_verre_noir1.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/brasseriecampdebase.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseriecampdebase.com", "logo_url": "https://brasseriecampdebase.com/wp-content/uploads/2017/11/icone_camp_de_base_1.png", "cover_url": "http://brasseriecampdebase.com/wp-content/uploads/2019/03/arbres.jpg", "description_meta": "Brasserie Camp de base est une microbrasserie des Laurentides situ\u00e9e \u00e0 Saint-Adolphe-d&#039;Howard. D\u00e9couvrez nos bi\u00e8res lors de nos journ\u00e9es Porte ouvertes.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/brasseriedunham.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseriedunham.com", "logo_url": "https://www.brasseriedunham.com/wp-content/uploads/2015/10/Logo-brasserie-dunham-favicon.png", "cover_url": "http://www.brasseriedunham.com/wp-content/uploads/2014/03/Logo-brasserie-dunham1.png", "description_meta": "LA BRASSERIE DUNHAM La Brasserie Dunham a vu le jour le 1er juin 2011. Notre portfolio refl\u00e8te la passion pour ce noble nectar du peuple. Inspir\u00e9s par les traditions brassicoles classiques europ\u00e9ennes, notre savoir-faire est r\u00e9solument tourn\u00e9 vers l\u2019exploration et le renouveau des genres. Notre d\u00e9marche s\u2019inscrit dans", "site_name": "Brasserie Dunham"}
\ No newline at end of file
added data/enrich_cache/brasseriegaspard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseriegaspard.com", "logo_url": "https://brasseriegaspard.com/favicon.ico", "cover_url": "https://brasseriegaspard.com/wp-content/uploads/2026/02/Verre-neipa.png", "description_meta": "Une microbrasserie \u00e0 Boucherville o\u00f9 bi\u00e8res locales, cuisine maison et ambiance conviviale se rencontrent.", "site_name": "Gaspard Brasserie artisanale"}
\ No newline at end of file
added data/enrich_cache/brasserielaferme.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasserielaferme.ca", "logo_url": "https://static.wixstatic.com/media/83d476_32d96a86dcb34927b0fc407cb14cd579%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/83d476_32d96a86dcb34927b0fc407cb14cd579%7Emv2.png", "cover_url": null, "description_meta": "La Ferme - Brasserie Rurale, c\u2019est l\u2019expression du terroir dans des bi\u00e8res artisanales \u00e9labor\u00e9es avec cr\u00e9ativit\u00e9 et \u00e9l\u00e9gance. Nous cultivons nos c\u00e9r\u00e9ales et notre houblon directement \u00e0 la ferme et nous collaborons avec une multitude d\u2019agriculteurs de la r\u00e9gion pour notre approvisionnement.", "site_name": "Brasserie La Ferme"}
\ No newline at end of file
added data/enrich_cache/brasserielafosse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasserielafosse.com", "logo_url": "https://brasserielafosse.com/wp-content/uploads/2025/06/cropped-f-logo@3x-180x180.png", "cover_url": "https://brasserielafosse.com/wp-content/uploads/2021/12/Brasserie-La-Fosse_OGFacebook-01.jpg", "description_meta": "D\u00e9couvrez la Brasserie La Fosse \u00e0 Donnacona, au c\u0153ur du comt\u00e9 de Portneuf. Profitez d&#039;un savoureux repas local accompagn\u00e9 de bi\u00e8res artisanales, \u00e0 d\u00e9guster sur place ou \u00e0 emporter, dans une ambiance chaleureuse de resto-pub", "site_name": "Brasserie la Fosse"}
\ No newline at end of file
added data/enrich_cache/brasserielocomotiv.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasserielocomotiv.com", "logo_url": "https://brasserielocomotiv.com/cdn/shop/files/LOCO-LOGO1.png?crop=center&height=32&v=1614287226&width=32", "cover_url": "http://brasserielocomotiv.com/cdn/shop/files/facade_avec_motos_1200x1200.jpg?v=1723923057", "description_meta": "Microbrasserie artisanale \u00e0 Berthierville, au c\u0153ur de Lanaudi\u00e8re. Profitez de notre restaurant de style pub, de notre terrasse ouverte \u00e0 l\u2019ann\u00e9e et de nos bi\u00e8res locales sur place ou \u00e0 emporter. Animations, musique, humour et soir\u00e9es quiz rythment notre programmation. R\u00e9servez et vivez l\u2019ambiance unique.", "site_name": "Brasserie Locomotiv"}
\ No newline at end of file
added data/enrich_cache/brasseriemaltco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseriemaltco.com", "logo_url": "https://brasseriemaltco.com/wp-content/uploads/2026/06/cropped-Capture-decran-le-2026-06-12-a-16.30.43-180x180.png", "cover_url": "https://brasseriemaltco.com/wp-content/uploads/2023/12/a-propos.webp", "description_meta": "En alliant le plaisir et l\u2019innovation, la Brasserie Maltco est un endroit de cr\u00e9ation unique au savoir-faire artisanal.", "site_name": "Brasserie Maltco | Brasserie \u00e0 facture artisanale"}
\ No newline at end of file
added data/enrich_cache/brasserieportalfred.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasserieportalfred.ca", "logo_url": "https://static.wixstatic.com/media/47d1d1_6ca2d4435fab49c19541288d8ba9a1ad%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/47d1d1_6ca2d4435fab49c19541288d8ba9a1ad%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/brasseriereservoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseriereservoir.com", "logo_url": "https://img1.wsimg.com/isteam/ip/8492b0a6-82fb-4854-8429-75b7222f1751/blob.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/8492b0a6-82fb-4854-8429-75b7222f1751/IMG_2284%20(1).jpg", "description_meta": "Votre microbrasserie de quartier !", "site_name": "R\u00e9servoir"}
\ No newline at end of file
added data/enrich_cache/brasseriesirjohn.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseriesirjohn.com", "logo_url": "https://brasseriesirjohn.com/cdn/shop/files/Couronne_Gold_favicon.png?crop=center&height=32&v=1664499378&width=32", "cover_url": "http://brasseriesirjohn.com/cdn/shop/files/sir-john-logo2023.jpg?v=1692066430", "description_meta": "Sir John c\u2019est une brasserie ind\u00e9pendante, cr\u00e9ative et respectueuse. C\u2019est \u00e9galement un regard sur le pass\u00e9 avec une vision contemporaine et innovante qui s\u2019inspire de la nouvelle tradition brassicole am\u00e9ricaine.", "site_name": "Brasserie Sir John"}
\ No newline at end of file
added data/enrich_cache/brasseriewalkyrie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseriewalkyrie.com", "logo_url": "https://hostinggambar.com/images/2026/03/02/6854788ff1f22b0583ec6e79df8d5810.png", "cover_url": "https://brasseriewalkyrie.com/modern-dengan-login-cepat-resmi-anti-ribet.jpg", "description_meta": "SUKSES77 menghadirkan fitur login cepat resmi untuk para pecinta game online kekinian dengan akses lebih praktis, keamanan terjamin, tampilan nyaman digunakan, serta berbagai pengalaman bermain seru penuh kejutan menarik setiap hari.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/brasseurdesmonts.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseurdesmonts.ca", "logo_url": "https://brasseurdesmonts.ca/favicon.ico", "cover_url": "https://brasseurdesmonts.ca/wp-content/uploads/2023/03/SoifAventure.png", "description_meta": "D\u00e9couvrez notre microbrasserie \u00e0 proximit\u00e9 du Mont-Sainte-Anne Venez d\u00e9guster les meilleures bi\u00e8res de la r\u00e9gion!", "site_name": "Repaire du Brasseur des Monts"}
\ No newline at end of file
added data/enrich_cache/brasseursavantgarde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseursavantgarde.com", "logo_url": "https://www.brasseursavantgarde.com/public/media/favicon/android-icon-192x192.png?v=120826010834", "cover_url": null, "description_meta": "Une belle gang de jeunes gens dynamiques qui \u0153uvrent jour et nuit pour emplir votre bouche de bi\u00e8res et de pizza.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/brasseursdemontebello.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseursdemontebello.com", "logo_url": "https://brasseursdemontebello.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/brasseursdescollines.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseursdescollines.com", "logo_url": "https://brasseursdescollines.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Brasseurs Des Collines -"}
\ No newline at end of file
added data/enrich_cache/brasseursdewestshefford.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseursdewestshefford.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/58b83788414fb5cbe10d18d9/1488472508005-YU4KF3911I5BLS51LAL0/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/58b83788414fb5cbe10d18d9/t/58b84ab4be6594f99b4fe4fc/1488472757292/social-share.jpg?format=1500w", "description_meta": "Amateurs de microbrasseries, bienvenue \u00e0 l\u2019\u00e8re des bi\u00e8res d\u00e9st\u00e9r\u00e9otyp\u00e9es.", "site_name": "Les brasseurs de West Shefford"}
\ No newline at end of file
added data/enrich_cache/brasseursdumonde.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseursdumonde.ca", "logo_url": "https://www.brasseursdumonde.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/brasseursdumonde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseursdumonde.com", "logo_url": "https://brasseursdumonde.com/resources/assets/images/favicon-32x32.png", "cover_url": "https://assets.brasseriedumonde.ca/production/_1200x630_crop_center-center_82_none_ns/beercans.jpeg?mtime=1711634429", "description_meta": "Brasseurs du monde", "site_name": "Brasseurs du monde"}
\ No newline at end of file
added data/enrich_cache/brasseursrj.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brasseursrj.com", "logo_url": "https://brasseursrj.com/wp-content/uploads/2022/03/Favicon_BrasseursRJ_57px.png", "cover_url": "https://brasseursrj.com/wp-content/uploads/2018/10/LogoWhite-1.png", "description_meta": "NOS BI\u00c8RES\u00a0\u00c0 D\u00c9COUVRIR\r\n \r\n- R\u00e9seau sociaux -\u00a0\r\n \r\n#BRASSEURSRJ\r\n \r\nVous aimez nos bi\u00e8res? Inscrivez le hashtag #BRASSEURSRJ pour joindre notre communaut\u00e9.", "site_name": "Brasseurs RJ"}
\ No newline at end of file
added data/enrich_cache/bravaendurance.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bravaendurance.ca", "logo_url": "https://bravaendurance.ca/cdn/shop/files/BRAVA_noir_be26c02a-1df9-4f6d-ae29-1ec315ba627a_32x32.png?v=1738098150", "cover_url": "http://bravaendurance.ca/cdn/shop/files/Untitled_design_1_5d9a72c0-8102-477d-b0d1-b708d3cda67e.png?v=1744058099", "description_meta": "At Brava, we passionately create technical and durable products for active women who dare to embrace endurance sports like triathlon, swimming, cycling, and running\u2014whether on roads, gravel, or mountain trails. Made in Quebec, Canada.", "site_name": "BRAVA"}
\ No newline at end of file
added data/enrich_cache/brebisdebromont.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brebisdebromont.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/videos/uA41GmyyG8IMaxXdb", "description_meta": null, "site_name": "brebisdebromont.com"}
\ No newline at end of file
added data/enrich_cache/brecksinc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brecksinc.com", "logo_url": "https://brecksinc.com/favicon.ico", "cover_url": "https://brecksinc.com/wp-content/uploads/2023/02/Brecks-Logo-white.png", "description_meta": "[smartslider3 slider=&quot;8&quot;] Brecks is a major player in the Canadian Fishing industry.&nbsp; Established in 1948 in a basement in Sherbrooke, QC, Brecks is now importer and exclusive distributor of the Mister Twister and Maxima brands for Canada.&nbsp; We also own and manufacture the Williams, Lake Clear, and Mooselook brands. From our factory i", "site_name": "Brecks inc. - Brecks inc."}
\ No newline at end of file
added data/enrich_cache/brettetsauvage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brettetsauvage.com", "logo_url": "https://www.brettetsauvage.com/wordpress/wp-content/uploads/2021/07/cropped-Favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/brien-produitsderable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brien-produitsderable.com", "logo_url": "https://brien-produitsderable.com/favicon.ico", "cover_url": null, "description_meta": "Les Douceurs de l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/brindefibre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brindefibre.com", "logo_url": "https://brindefibre.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/brisebise.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brisebise.ca", "logo_url": "https://brisebise.ca/wp-content/uploads/2018/11/LogoBriseBise-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/briseoceane.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "briseoceane.ca", "logo_url": "https://briseoceane.ca/wp-content/uploads/2023/04/cropped-IconeSiteWeb_BriseOceane-180x180.png", "cover_url": null, "description_meta": "Le Chalet Oc\u00e9ane est \u00e0 louer au bord de l&#039;eau dans Charlevoix. Ici, rien entre le fleuve et vous. La Brise Oc\u00e9ane propose une vue fantastique sur 180 degr\u00e9s.", "site_name": "Brise Oc\u00e9ane -"}
\ No newline at end of file
added data/enrich_cache/britanniamills.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "britanniamills.com", "logo_url": "https://britanniamills.com/owebo-votresite/sites/default/files/images/lOGO_JPEG.jpg", "cover_url": "https://britanniamills.com/sites/default/files/images/72367845_2368252730102267_4543185039562637312_n.jpg", "description_meta": "Page d\u2019accueil, sauces piquantes culture piments fort qu\u00e9bec saint dominique saint liboire meilleure sauce faites au Qu\u00e9bec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/brix66.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brix66.com", "logo_url": "https://www.brix66.com/images/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "Brix 66, \u00e0 Hinchinbrooke, est un producteur de sirop et autres produits de l\u2019\u00e9rable et accueille les visiteurs \u00e0 sa cabane \u00e0 sucre! Commandez d\u00e8s maintenant!", "site_name": "Fran\u00e7ais"}
\ No newline at end of file
added data/enrich_cache/brixco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brixco.ca", "logo_url": "https://brixco.ca/cdn/shop/files/Logo_Brix_Co._32x32.png?v=1760551914", "cover_url": "http://brixco.ca/cdn/shop/files/Spritz_Pamplemousse_Retouch1_90799113-a265-4096-9779-a864cd2cdc0c.png?v=1757012678", "description_meta": "Un des meilleurs sirop d&#39;\u00e9rable biologique et carboneutre ! Honorez les for\u00eats qu\u00e9b\u00e9coises avec ce d\u00e9licieux sirop d&#39;\u00e9rable.", "site_name": "brixco"}
\ No newline at end of file
added data/enrich_cache/brixrechargeparlanature.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brixrechargeparlanature.com", "logo_url": "https://brixrechargeparlanature.com/cdn/shop/files/brix_icon_7c840680-fb87-4c14-b09f-7c8e01ba2edc_32x32.png?v=1630277667", "cover_url": "http://brixrechargeparlanature.com/cdn/shop/files/Untitled_design_1.png?v=1784655251", "description_meta": "BRIX fabrique des gels \u00e9nerg\u00e9tiques et des boissons d&#39;hydratation 100% naturels con\u00e7us \u00e0 partir de notre propre r\u00e9colte de sirop l&#39;\u00e9rable. Essayez nos produits lors de vos activit\u00e9s sportives.", "site_name": "Brix Recharg\u00e9 par la Nature"}
\ No newline at end of file
added data/enrich_cache/brodeserre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brodeserre.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/61e63bcb37920250b15c22da/d80e947f-0a16-4784-a19b-cef1050efe63/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/61e63bcb37920250b15c22da/t/652179fd06e4373a34d9fa88/1696692733661/Orange+Modern+Fun+Photography+Business+Card.png?format=1500w", "description_meta": "Que ce soit pour relaxer, pour agr\u00e9menter tes v\u00eatements, pour offrir en cadeau ou pour d\u00e9corer ta maison, on a tout ce qu", "site_name": "Brod\u00e9 Serr\u00e9"}
\ No newline at end of file
added data/enrich_cache/broquet.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "broquet.ca", "logo_url": "https://www.broquet.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/brouemalt.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brouemalt.com", "logo_url": "https://brouemalt.com/wp-content/uploads/2022/10/favicon-300x300.png", "cover_url": "https://brouemalt.com/wp-content/uploads/2025/06/Avant.jpg", "description_meta": "Microbrasserie artisanale situ\u00e9e \u00e0 St-Donat, Lanaudi\u00e8re. Une s\u00e9lection de 14 bi\u00e8res brass\u00e9es sur place sont disponibles pour d\u00e9gustation.", "site_name": "Microbrasserie Brouemalt"}
\ No newline at end of file
added data/enrich_cache/broueshop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "broueshop.com", "logo_url": "https://broueshop.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "-"}
\ No newline at end of file
added data/enrich_cache/brownsburgchatham.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brownsburgchatham.ca", "logo_url": "https://brownsburgchatham.ca/wp-content/uploads/2024/03/Vector.svg", "cover_url": "https://brownsburgchatham.ca/wp-content/uploads/2024/04/Marina-1.jpg", "description_meta": "Bienvenue sur le site web officiel de la Ville de Brownsburg-Chatham. Source d\u2019information pour les citoyens, les gens d\u2019affaires et les visiteurs.", "site_name": "Brownsburg-Chatham"}
\ No newline at end of file
added data/enrich_cache/bruleriecharlevoixmicrotorrefacteur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bruleriecharlevoixmicrotorrefacteur.com", "logo_url": "https://img1.wsimg.com/isteam/ip/4f9458d1-052a-430c-9165-06f69a412e56/blob-8eb702e.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/4f9458d1-052a-430c-9165-06f69a412e56/IMG_6092.jpg", "description_meta": "Caf\u00e9 sur place ou \u00e0 emporter\nRepas et p\u00e2tisseries du jour\nCaf\u00e9 torr\u00e9fi\u00e9 sur place\n7 vari\u00e9t\u00e9s diff\u00e9rentes", "site_name": "Brulerie Charlevoix Microtorrefacteur"}
\ No newline at end of file
added data/enrich_cache/bruleriedescantons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bruleriedescantons.com", "logo_url": "https://bruleriedescantons.com/wp-content/uploads/2025/11/brulerie-brun-fav-300x300.png", "cover_url": "https://bruleriedescantons.com/wp-content/uploads/2025/09/Accueil-Septembre-Automne.jpg", "description_meta": "Situ\u00e9e dans le Canton de Warwick, la Br\u00fblerie des Cantons con\u00e7oit et distribue des caf\u00e9s de sp\u00e9cialit\u00e9s. Besoin de conseils, notre personnel sp\u00e9cialement form\u00e9 vous guidera sur le caf\u00e9 et sa pr\u00e9paration.", "site_name": "Br\u00fblerie Des Cantons"}
\ No newline at end of file
added data/enrich_cache/bruleriedesmonts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bruleriedesmonts.com", "logo_url": "https://bruleriedesmonts.com/wp-content/uploads/2019/04/cropped-favicon-bdm-180x180.png", "cover_url": null, "description_meta": "Vente de caf\u00e9 en ligne, fraichement torr\u00e9fi\u00e9 et livr\u00e9 directement \u00e0 votre porte. D\u00e9couvrez le raffinement de nos caf\u00e9s, nous en avons pour tous les go\u00fbts!", "site_name": "Br\u00fblerie des Monts"}
\ No newline at end of file
added data/enrich_cache/brulerieduroy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brulerieduroy.com", "logo_url": "https://brulerieduroy.com/cdn/shop/files/logo_32x32.png?v=1625241623", "cover_url": "http://brulerieduroy.com/cdn/shop/files/logo_1200x1200.png?v=1625241623", "description_meta": "Br\u00fblerie du Roy vous transmet sa passion d&#39;artisan en torr\u00e9faction de caf\u00e9 depuis 2003. Venez d\u00e9guster un caf\u00e9 d&#39;exception \u00e0 Joliette aujourd&#39;hui!", "site_name": "Br\u00fblerie du Roy"}
\ No newline at end of file
added data/enrich_cache/brunet.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brunet.ca", "logo_url": "https://www.brunet.ca/cdn/src/img/favicon/brn/v-639178045750000000/favicon-57.png", "cover_url": "https://www.brunet.ca/templates/gjc/styles/images/generic/logo-facebook-brn.jpg", "description_meta": "Conseils sant&#233;, renouvellement d\u2019ordonnances, prise de rendez\u2011vous et services en ligne... votre pharmacie Brunet vous offre tout le n&#233;cessaire pour votre sant&#233; en un seul endroit.", "site_name": "Brunet"}
\ No newline at end of file
added data/enrich_cache/brunetteandco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "brunetteandco.com", "logo_url": "https://brunetteandco.com/wp-content/uploads/2026/04/cropped-logo12-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/bubulleetjujube.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bubulleetjujube.com", "logo_url": "https://bubulleetjujube.com/favicon.ico", "cover_url": "http://bubulleetjujube.com/cdn/shop/files/BJ-LOGO-GOUTTES-CMYK_1200x1200.jpg?v=1641564319", "description_meta": "Bubulle et Jujube est une entreprise Montr\u00e9alaise, qui confectionne des tabliers de bain pour b\u00e9b\u00e9 d&#39;une douceur incroyable! Nous offrons \u00e9galement une gamme de v\u00eatements \u00e9volutifs et des lingettes lavables de qualit\u00e9! Le tablier de bain est le cadeau de naissance id\u00e9al \u00e0 offrir \u00e0 de nouveaux parents!", "site_name": "Bubulle et Jujube"}
\ No newline at end of file
added data/enrich_cache/bucketfermentation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bucketfermentation.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5fd93520730cb7231c947d11/e41572b0-c0fc-43e1-b473-8b4ddfa6d3b0/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5fd93520730cb7231c947d11/t/6750b16b75f6de5dff378b23/1733341547615/BUCKET_LOGO_BEIGE.png?format=1500w", "description_meta": null, "site_name": "Bucket"}
\ No newline at end of file
added data/enrich_cache/bufalamaciocia.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bufalamaciocia.ca", "logo_url": "https://www.bufalamaciocia.ca/assets/Subsite8/SiteIcon/_resampled/FillWyIxNTIiLCIxNTIiXQ/buffalo-maciocia-icone.png", "cover_url": "https://www.bufalamaciocia.ca/../assets/Subsite8/SiteSocialImage/fromage-buffalo.jpg", "description_meta": "Une mozzarella typiquement qu\u00e9b\u00e9coise. \u00c9levages Buffalo Maciocia poss\u00e8de le plus important troupeau de bufflonne au Canada. La ferme est situ\u00e9e \u00e0 St-Charles sur Richelieu.", "site_name": "\u00c9levages Buffalo Maciocia"}
\ No newline at end of file
added data/enrich_cache/bullenature.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bullenature.ca", "logo_url": "https://bullenature.ca/favicon.ico", "cover_url": "http://bullenature.ca/cdn/shop/files/Collection_Accueil.png?v=1762694161", "description_meta": "Le meilleur endroit pour acheter vos savons, shampoings et revitalisants en barres, bougies et fondants, beurres et exfoliants corporels 100 % naturels et beaucoup d&#39;autres cosm\u00e9tiques naturels fait \u00e0 la main. La plupart des produits Bulle Nature sont v\u00e9gans et issus de l&#39;agriculture biologique.", "site_name": "Bulle nature"}
\ No newline at end of file
added data/enrich_cache/bulls-head.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "bulls-head.com", "logo_url": "https://static.wixstatic.com/media/c50897_c7364a1569e3424da1628cef35fe8d74%7Emv2.gif/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/c50897_c7364a1569e3424da1628cef35fe8d74%7Emv2.gif", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/burnbraefarms.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "burnbraefarms.com", "logo_url": "https://www.burnbraefarms.com/static/img/favicon.png", "cover_url": "https://www.burnbraefarms.com/static/img/burnbrae_logo.svg", "description_meta": "Burnbrae Farms Homepage", "site_name": null}
\ No newline at end of file
added data/enrich_cache/business.google.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "business.google.com", "logo_url": "https://business.google.com/static/images/google-favicon-180.png", "cover_url": null, "description_meta": "Annoncez votre entreprise sur Google avec un profil gratuit. Attirez de nouveaux clients dans la recherche et sur Maps.", "site_name": "Google"}
\ No newline at end of file
added data/enrich_cache/buvezvierge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "buvezvierge.com", "logo_url": "https://static.wixstatic.com/media/ad65cb_5872f79d63d4483882b2aea3d41b66ff%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/ad65cb_5872f79d63d4483882b2aea3d41b66ff%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ca.helight.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ca.helight.com", "logo_url": "https://ca.helight.com/cdn/shop/files/H-Logo-144px_96x96.png?v=1699291969", "cover_url": "http://ca.helight.com/cdn/shop/files/OG_image.jpg?v=1650911679", "description_meta": "Manufacturer of red light therapy devices (photobiomodulation) to help with sleep quality and help the body&#39;s natural recovery process.", "site_name": "Helight Canada"}
\ No newline at end of file
added data/enrich_cache/ca.solina.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ca.solina.com", "logo_url": "https://ca.solina.com/wp-content/uploads/sites/20/2021/08/cropped-favicon_solina-180x180.png", "cover_url": "https://ca.solina.com/wp-content/uploads/sites/20/2024/02/berthelet-lynch-solina-corpo-chef-customer-1-1024x683.png", "description_meta": "Solina creates customised culinary ingredient solutions for savoury food manufacturers in many sectors. Find out how we can make your food matter.", "site_name": "Solina Canada"}
\ No newline at end of file
added data/enrich_cache/cabaneasucrecheslock.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneasucrecheslock.ca", "logo_url": "https://cabaneasucrecheslock.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Stanley Cheslock\u2019s Sugar Camp"}
\ No newline at end of file
added data/enrich_cache/cabaneasucreducoteau.order-online.ai.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneasucreducoteau.order-online.ai", "logo_url": "https://cabaneasucreducoteau.order-online.ai/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cabaneasucrejacquesgregoire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneasucrejacquesgregoire.com", "logo_url": "https://cabaneasucrejacquesgregoire.com/favicon.ico", "cover_url": null, "description_meta": "La cabane \u00e0 sucre Jacques Gr\u00e9goire offre un menu traditionnel o\u00f9 tout est \u00e0 volont\u00e9 et de nombreuses activit\u00e9s.", "site_name": "Cabane Jacques Gregoire"}
\ No newline at end of file
added data/enrich_cache/cabaneasucrejocy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneasucrejocy.com", "logo_url": "https://cabaneasucrejocy.com/cdn/shop/files/Design_sans_titre_32x32.png?v=1710625923", "cover_url": "http://cabaneasucrejocy.com/cdn/shop/files/CabaneASucreJocy__2_-removebg-preview_3b564973-a825-4f5f-b867-ff3ba3e206bd.png?v=1740840716", "description_meta": "Cabane \u00e0 sucre Jocy", "site_name": "Cabane \u00e0 sucre Jocy"}
\ No newline at end of file
added data/enrich_cache/cabaneasucrelacoulee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneasucrelacoulee.com", "logo_url": "https://cabaneasucrelacoulee.com/wp-content/uploads/02312302-7af2-46b3-ba1d-19d9ecc79d48-removebg-preview-1-300x300.png", "cover_url": null, "description_meta": "CyberNHL offers clear guides to virtual hockey betting, Cyber NHL leagues, simulator patterns, match analysis, betting markets, and responsible strategy.", "site_name": "CyberNHL"}
\ No newline at end of file
added data/enrich_cache/cabaneasucreoswald.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneasucreoswald.ca", "logo_url": "https://cabaneasucreoswald.ca/apple-touch-icon.png", "cover_url": "https://www.cabaneasucreoswald.ca/og-images/og-acceuil.png", "description_meta": "Oswald offre des exp\u00e9riences authentiques au c\u0153ur de Lanaudi\u00e8re. Cabane \u00e0 sucre traditionnelle, mariages champ\u00eatres et \u00e9v\u00e9nements corporatifs dans un cadre naturel exceptionnel.", "site_name": "Oswald - Cabane \u00e0 Sucre &amp; \u00c9v\u00e9nements"}
\ No newline at end of file
added data/enrich_cache/cabaneaupieddelerable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneaupieddelerable.com", "logo_url": "https://cabaneaupieddelerable.com/favicon.ico", "cover_url": "https://cabaneaupieddelerable.com/wp-content/uploads/2022/01/40pxv2.png", "description_meta": "Une ambiance chaleureuse et familiale \r\n\r\n&quot;Une quatri\u00e8me g\u00e9n\u00e9ration qui fait revivre une tradition ancestrale du temps des sucres ! Venez rencontrer une \u00e9quipe formidable, chaleureuse et d\u00e9vou\u00e9e aupr\u00e8s de sa client\u00e8le. De votre accueil \u00e0 votre d\u00e9part vous vous sentirez comme chez-vous ! Nous sommes une cabane \u00e0 sucre familiale qui ne vous laissera", "site_name": "Au Pied de l&#039;\u00c9rable"}
\ No newline at end of file
added data/enrich_cache/cabanechezchristian.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanechezchristian.com", "logo_url": "https://cabanechezchristian.com/wp-content/uploads/2025/12/cropped-FAVICON_CabaneASucreChezChristian-180x180.jpg", "cover_url": "https://cabanechezchristian.com/wp-content/uploads/2026/01/Tire-en-baton-en-kiosque-seulement.jpg", "description_meta": "Venez vivre la cabane autrement : pas de repas, 100 % d\u00e9couverte. Une sortie \u00e0 la cabane\u2026 qui respecte votre budget !", "site_name": "Cabane \u00e0 sucre Chez Christian"}
\ No newline at end of file
added data/enrich_cache/cabanechezdany.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanechezdany.com", "logo_url": "https://cabanechezdany.com/wp-content/uploads/2021/05/Theme-image-250x250.jpg", "cover_url": null, "description_meta": "\u00c0 la Cabane \u00e0 sucre Chez Dany r\u00e8gne une atmosph\u00e8re chaleureuse et familiale. Une cabane \u00e0 sucre qui op\u00e8re \u00e0 l&#039;ann\u00e9e. R\u00e9servez maintenant!", "site_name": "Cabane \u00e0 sucre Chez Dany"}
\ No newline at end of file
added data/enrich_cache/cabaneclaudebenoit.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneclaudebenoit.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/6578ea342ae80c3bd3ceb49a/d9325829-75b6-496c-863c-b8658d7ff973/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6578ea342ae80c3bd3ceb49a/t/69815f865d822a3eddeb5d16/1770086278661/opengraph-cabane-claude-benoit.jpg?format=1500w", "description_meta": null, "site_name": "Cabane Claude Benoit"}
\ No newline at end of file
added data/enrich_cache/cabaneducoureur.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneducoureur.ca", "logo_url": "https://cabaneducoureur.ca/wp-content/themes/cabaneducoureur/images/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": "La Cabane du Coureur"}
\ No newline at end of file
added data/enrich_cache/cabanedupicbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanedupicbois.com", "logo_url": "https://www.cabanedupicbois.com/favicon.ico", "cover_url": null, "description_meta": "Pour l&#039;amour de l&#039;\u00e9rable", "site_name": "Cabane du Pic Bois"}
\ No newline at end of file
added data/enrich_cache/cabanedupuis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanedupuis.com", "logo_url": "https://img1.wsimg.com/isteam/ip/dcaf33f8-f1df-41d6-928f-954ee9c68ba0/ENTETE%20SITE%203%20.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/dcaf33f8-f1df-41d6-928f-954ee9c68ba0/ENTETE%20SITE%203%20.jpg", "description_meta": "Cabane Dupuis\nCabane \u00e0 sucre \n\u00c9rabli\u00e8re\nLanaudi\u00e8re\nSt-Jacques\nSirop d&#x27;\u00e9rable", "site_name": "Cabane Dupuis"}
\ No newline at end of file
added data/enrich_cache/cabanelacoulee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanelacoulee.ca", "logo_url": "https://cabanelacoulee.ca/images/logocabane3.png", "cover_url": null, "description_meta": "Cabane \u00e0 sucre La Coul\u00e9e. Produits d", "site_name": "Cabane \u00e0 sucre La Coul\u00e9e - Produits d&#039;\u00e9rable, pr\u00eat \u00e0 manger, activit\u00e9s hive"}
\ No newline at end of file
added data/enrich_cache/cabanelamartine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanelamartine.ca", "logo_url": "https://cabanelamartine.ca/wp-content/uploads/2020/01/cropped-logo-produits-la-martine-180x180.png", "cover_url": null, "description_meta": "Situ\u00e9e dans un d\u00e9cor pittoresque au c\u0153ur de la nature \u00e0 Saint-Romain, \u00e0 mi-chemin entre Montr\u00e9al et Qu\u00e9bec en Estrie, \u00e0 seulement une heure de Sherbrooke.Venez d\u00e9guster un repas qui fera honneur \u00e0 nos fameuses recettes d\u2019autrefois, tout en \u00e9tant revisit\u00e9es au go\u00fbt du jour avec formule apportez vos consommations.Tous sont unanimes, on adore les vinaigrettes, sauces, ketchups et marinades maison (to", "site_name": "Cabane \u00e0 Sucre la Martine"}
\ No newline at end of file
added data/enrich_cache/cabanelaroseaubois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanelaroseaubois.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cabaneleclerc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabaneleclerc.ca", "logo_url": "https://cabaneleclerc.ca/favicon.ico?2023-1-5-0-639097025053766127", "cover_url": "https://www.cabaneleclerc.ca/favImage.png", "description_meta": "Cabane \u00c3\u00a0 sucre Leclaire \u00c3\u00a0 Qu\u00c3\u00a9bec", "site_name": "CABANE A SUCRE LECLERC"}
\ No newline at end of file
added data/enrich_cache/cabanemarcbesner.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanemarcbesner.com", "logo_url": "https://cabanemarcbesner.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Cabane Marc Besner Traiteur"}
\ No newline at end of file
added data/enrich_cache/cabanemegantic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanemegantic.com", "logo_url": "https://www.cabanemegantic.com/wp-content/uploads/2022/11/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "Une ambiance chaleureuse autrefois!", "site_name": "Cabane \u00e0 sucre M\u00e9gantic S.E.N.C."}
\ No newline at end of file
added data/enrich_cache/cabanetilouisbrochu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanetilouisbrochu.com", "logo_url": "https://cabanetilouisbrochu.com/boutique/image/catalog/-images/logo/FAvicon.png", "cover_url": null, "description_meta": "D\u00e9gustez notre sirop d", "site_name": "CabaneTiLouisBrochu"}
\ No newline at end of file
added data/enrich_cache/cabanonconcept.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanonconcept.com", "logo_url": "https://www.cabanonconcept.com/wp-content/uploads/2018/03/favicon.png", "cover_url": null, "description_meta": "Plus de 40 mod\u00e8les de cabanons, remises de jardin et garages pr\u00e9fabriqu\u00e9s, en kit ou sur mesure, desservons la province de Qu\u00e9bec", "site_name": "Garage et Cabanon Concept"}
\ No newline at end of file
added data/enrich_cache/cabanonfortin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanonfortin.com", "logo_url": "https://www.cabanonfortin.com/favicon.ico", "cover_url": "https://www.cabanonfortin.com/wp-content/uploads/fenetres-cabanon-persienne-boite-fleurs.jpg", "description_meta": "Cabanon Fortin, sp\u00e9cialiste en fabrication et installation de cabanons et remises de jardin \u00e0 Montr\u00e9al et environs. Contactez-nous!", "site_name": "Cabanon Fortin"}
\ No newline at end of file
added data/enrich_cache/cabanonmercier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cabanonmercier.com", "logo_url": "https://www.cabanonmercier.com/favicon.ico", "cover_url": null, "description_meta": "Fabricant de cabanons et de gaz\u00e9bos de qualit\u00e9 sup\u00e9rieur \u00e0 un prix tr\u00e8s comp\u00e9titif.", "site_name": "Cabanon mercier"}
\ No newline at end of file
added data/enrich_cache/cacaoivoireqc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cacaoivoireqc.com", "logo_url": "https://cacaoivoireqc.com/wp-content/uploads/2022/04/cropped-favicon-180x180.png", "cover_url": "https://cacaoivoireqc.com/wp-content/uploads/2021/09/satisfied-farmer-on-his-cocoa-plantation-min-1024x683.jpg", "description_meta": "Nous sommes une compagnie qu\u00e9b\u00e9coise sp\u00e9cialis\u00e9e dans la transformation du cacao. Nous nous effor\u00e7ons de mettre sur le march\u00e9 des produits qui tiennent compte", "site_name": "Cacao Ivoire Qu\u00e9bec Inc."}
\ No newline at end of file
added data/enrich_cache/cactusenligne.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cactusenligne.ca", "logo_url": "https://cactusenligne.ca/cdn/shop/files/Favicon_32x32.png?v=1677792404", "cover_url": "https://cactusenligne.ca/cdn/shop/files/Cactus_en_ligne-logo_2_20cec4bd-ef30-4fa2-8346-a892be56988d_1292x630.png?v=1626745296", "description_meta": "Buy plants online! Free delivery in Canada with a minimum order. Healthy plant guarantee. Take a stroll through our oasis and see why thousands of Canadians shop our cactus, succulent, hoya and tropical house plants to create their personal green sanctuaries.", "site_name": "Cactus en Ligne"}
\ No newline at end of file
added data/enrich_cache/cactuskombucha.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cactuskombucha.ca", "logo_url": "https://cactuskombucha.ca/icons/icon-512x512.png?v=03671763d9521821dc3d9785953eeafc", "cover_url": "https://cactuskombucha.ca/images/cactus-kombucha-og.png", "description_meta": "Une boisson gazeuse locale, \u00e9co-responsable et sant\u00e9. Fait d\u2019ingr\u00e9dients majoritairement qu\u00e9b\u00e9cois et biologiques \u00e0 92 %. Tr\u00e8s faible en calorie et sucre.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cadeaugourmand.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cadeaugourmand.ca", "logo_url": "https://cadeaugourmand.ca/cdn/shop/files/favicon_32x32.jpg?v=1665337485", "cover_url": "http://cadeaugourmand.ca/cdn/shop/files/NOUS-SOMMES-CG-1200-628_1200x628.jpg?v=1760906059", "description_meta": "Discover gift boxes filled with our gourmet products. Whether you need a single gift or dozens or hundreds, we offer personalized options for every occasion. Fast delivery everywhere. Delight your employees, clients, suppliers, or loved ones.", "site_name": "Cadeau Gourmand"}
\ No newline at end of file
added data/enrich_cache/cadelliacosmetique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cadelliacosmetique.com", "logo_url": "https://cadelliacosmetique.com/cdn/shop/files/CADELLIA_logo_impression-05.svg?crop=center&height=32&v=1687625200&width=32", "cover_url": "http://cadelliacosmetique.com/cdn/shop/files/Creation-sans-titre-_17.webp?v=1734460415", "description_meta": "Explorez la gamme de produits cosm\u00e9tiques naturels de Cadellia Cosm\u00e9tique Raisonn\u00e9e Inc. 100% qu\u00e9b\u00e9cois, formul\u00e9s avec des ingr\u00e9dients de haute qualit\u00e9 pour des soins de peau, cr\u00e8mes hydratantes, soins pour le corps, et bien plus !", "site_name": "Cadellia Cosm\u00e9tique Raisonn\u00e9e"}
\ No newline at end of file
added data/enrich_cache/cafearagon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafearagon.ca", "logo_url": "https://cafearagon.ca/favicon.ico", "cover_url": "https://cafearagon.ca/wp-content/uploads/2022/04/banniere.png", "description_meta": "Le restaurant Caf\u00e9 Aragon vous offre une vari\u00e9t\u00e9 de repas concoct\u00e9s avec des produits frais et locaux. Venez nous voir !", "site_name": "Caf\u00e9 Aragon"}
\ No newline at end of file
added data/enrich_cache/cafearomesetsaveurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafearomesetsaveurs.com", "logo_url": "https://cafearomesetsaveurs.com/favicon.ico", "cover_url": "https://cafearomesetsaveurs.com/wp-content/uploads/2016/09/coeur.png", "description_meta": null, "site_name": "Caf\u00e9 Ar\u00f4mes et Saveurs, Baie St-Paul"}
\ No newline at end of file
added data/enrich_cache/cafebarista.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafebarista.ca", "logo_url": "https://cafebarista.ca/cdn/shop/files/FavIcon.png?crop=center&height=32&v=1666792716&width=32", "cover_url": "http://cafebarista.ca/cdn/shop/files/FacebookShare.png?v=1666793246", "description_meta": "Barista torr\u00e9fie du caf\u00e9 lentement chaque jour selon la tradition italienne. Commandez le meilleur caf\u00e9 espresso et filtre. Livr\u00e9 gratuitement \u00e0 la maison \u00e0 partir d&#39;un kilo. Trouvez la machine espresso parfaite pour vos besoins. Magasinez les accessoires de barista et les techniques d&#39;infusion manuelle.", "site_name": "Caf\u00e9 Barista"}
\ No newline at end of file
added data/enrich_cache/cafebontedivine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafebontedivine.com", "logo_url": "https://cafebontedivine.com/wp-content/themes/rosa-child/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": "M\u00e9langes uniques. Ambiances chaleureuse.", "site_name": "Caf\u00e9 Bont\u00e9 Divine"}
\ No newline at end of file
added data/enrich_cache/cafecambio.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafecambio.ca", "logo_url": "https://cafecambio.ca/wp-content/uploads/2021/07/logo.png", "cover_url": "https://cafecambio.ca/wp-content/uploads/2021/07/logo.png", "description_meta": "Nos favoris Mission Situ\u00e9 au centre-ville de Chicoutimi, \u00e0 Saguenay, le Caf\u00e9 Cambio coop\u00e9rative de solidarit\u00e9 est \u00e0 la fois un restaurant sant\u00e9, une micro-br\u00fblerie de caf\u00e9 certifi\u00e9 \u00e9quitable et biologique et un espace culturel. Que ce soit \u00e0 travers le mariage des saveurs et des odeurs, l&#039;art visuel, la musique, la danse, le chant,", "site_name": "Caf\u00e9 Cambio -"}
\ No newline at end of file
added data/enrich_cache/cafecastelo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafecastelo.com", "logo_url": "https://cafecastelo.com/cdn/shop/files/apple-touch-icon.png?v=1650247784&width=180", "cover_url": "http://cafecastelo.com/cdn/shop/files/LOGO_CASTELO.jpg?v=1681353720&width=2048", "description_meta": "Caf\u00e9 Castelo est un torr\u00e9facteur familial \u00e0 Qu\u00e9bec depuis 1996. Caf\u00e9s fra\u00eechement torr\u00e9fi\u00e9s chaque semaine pour les particuliers et les entreprises. Livraison partout au Canada. Grande gamme de produits : caf\u00e9 en grains, capsules compatibles avec Nespresso et Keurig, Mouture Universelle.", "site_name": "Caf\u00e9 Castelo"}
\ No newline at end of file
added data/enrich_cache/cafechagaboreal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafechagaboreal.com", "logo_url": "https://cafechagaboreal.com/cdn/shop/t/3/assets/icon-for-mobile.png?v=638", "cover_url": "http://cafechagaboreal.com/cdn/shop/t/3/assets/logo.png?v=638", "description_meta": "Des grains de caf\u00e9 s\u00e9lectionn\u00e9s et torr\u00e9fi\u00e9s avec passion et amour! Livraison gratuite avec achat de 75$ et plus. Magasinez", "site_name": "Caf\u00e9 Chaga Bor\u00e9al"}
\ No newline at end of file
added data/enrich_cache/cafecharlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafecharlevoix.ca", "logo_url": "https://cafecharlevoix.ca/cdn/shop/files/CafeCharlevoix_Favicon_Creme_256x256_RVB.png?crop=center&height=48&v=1762888998&width=48", "cover_url": "http://cafecharlevoix.ca/cdn/shop/files/CafeCharlevoix_ImageDePartage_1200x628_2a0bd2a9-2af0-496c-8c54-c706c9045c41.png?v=1782761154", "description_meta": "Du caf\u00e9 riche en culture. Depuis 2013, Caf\u00e9 Charlevoix fait vibrer les amateurs de caf\u00e9 avec sa micro-torr\u00e9faction artisanale en plein c\u0153ur de Baie-Saint-Paul. Chaque grain y est torr\u00e9fi\u00e9 m\u00e9thodiquement pour en faire ressortir des saveurs uniques et une qualit\u00e9 irr\u00e9prochable!", "site_name": "Caf\u00e9 Charlevoix"}
\ No newline at end of file
added data/enrich_cache/cafecimo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafecimo.com", "logo_url": "https://www.cafecimo.com/favicon.png", "cover_url": "https://www.cafecimo.com/og-500x370.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cafedelabrulerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafedelabrulerie.com", "logo_url": "https://cafedelabrulerie.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cafedescantons.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafedescantons.ca", "logo_url": "https://www.cafedescantons.ca/cdn/shop/files/FAVICON.png?crop=center&height=32&v=1721669562&width=32", "cover_url": "http://www.cafedescantons.ca/cdn/shop/files/rond_trsp_e73df617-58b1-445d-bd92-9acf67bd481c.png?v=1721671494", "description_meta": "Caf\u00e9 des Cantons est certifi\u00e9 &quot;Caf\u00e9 de Village&quot;! Le meilleur caf\u00e9 barista de la r\u00e9gion +d\u00e9licieux sandwiches artisanaux +soupes/salades du jour +desserts gourmands confectionn\u00e9s sur place. Notre coin March\u00e9 local vous offre aussi un vaste choix de produits alimentaires r\u00e9gionaux +Section Vins +Service Traiteur.", "site_name": "CAF\u00c9 DES CANTONS"}
\ No newline at end of file
added data/enrich_cache/cafeduclocheralma.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafeduclocheralma.com", "logo_url": "https://cafeduclocheralma.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cafeducouvent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafeducouvent.com", "logo_url": "data:,", "cover_url": null, "description_meta": "cafeducouvent.com", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cafedumarche.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafedumarche.ca", "logo_url": "https://cafedumarche.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cafelinoespresso.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafelinoespresso.com", "logo_url": "https://cafelinoespresso.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Caf&eacute; Lino espresso"}
\ No newline at end of file
added data/enrich_cache/cafemarcrobitaille.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafemarcrobitaille.com", "logo_url": "https://cdn.prod.website-files.com/661422e64a15cea5e10a2a47/662123e477f9f82eaa2beab9_webclip.png", "cover_url": "https://cdn.prod.website-files.com/661422e64a15cea5e10a2a47/6616ae209443d08dd4056f92_02454-2024-2.webp", "description_meta": "R\u00e9pondant aux besoins des entreprises et des particuliers, nous offrons une gamme vari\u00e9e de caf\u00e9s et une exp\u00e9rience givr\u00e9e in\u00e9gal\u00e9e. Distributeur r\u00e9gional autoris\u00e9 de Slush Puppie.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cafepierrejeanjase.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafepierrejeanjase.com", "logo_url": "https://cafepierrejeanjase.com/wp-content/themes/pjj/img/favicon.png", "cover_url": null, "description_meta": "Le Caf\u00e9 Pierre Jean Jase est un restaurant, \u00e0 Sherbrooke, qui a \u00e0 c\u0153ur de conserver son caract\u00e8re familier et intime. Pr\u00e9sent dans le quartier du Vieux-Nord sherbrookois depuis plusieurs d\u00e9cennies, des gens de tous les milieux s&rsquo;y rencontrent. La client\u00e8le l&rsquo;adopte, entre autres pour ses petits d\u00e9jeuners maison (incluant le fameux v\u00e9g\u00e9-p\u00e2t\u00e9!) et la... Voir l&#039;article", "site_name": "Caf\u00e9 Pierre Jean Jase"}
\ No newline at end of file
added data/enrich_cache/caferouge.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "caferouge.ca", "logo_url": "https://caferouge.ca/wp-content/uploads/2025/01/cafe-rouge-logo-site-logo-2025-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cafesdominicstpierre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafesdominicstpierre.com", "logo_url": "https://cafesdominicstpierre.com/media/system/images/joomla-favicon.svg", "cover_url": null, "description_meta": "Bienvenue chez Caf\u00e9s Dominic St-Pierre, votre partenaire caf\u00e9 de confiance depuis septembre 1995.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cafewilliam.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafewilliam.com", "logo_url": "https://cafewilliam.com/cdn/shop/files/Artwork_w_bleu_ab79cce3-dbe8-4944-a5f6-0db6e97a21a0.svg?crop=center&height=194&v=1694012267&width=194", "cover_url": "http://cafewilliam.com/cdn/shop/files/Thumbnail_SocialMedia.jpg?v=1694101357", "description_meta": "Dive into the world of Cafe William: premium organic beans, ethically sourced, and bursting with authentic flavors. Order your coffee online here!", "site_name": "Caf\u00e9 William"}
\ No newline at end of file
added data/enrich_cache/cafewilliamspartivento.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cafewilliamspartivento.com", "logo_url": "https://cafewilliam.com/cdn/shop/files/Artwork_w_bleu_ab79cce3-dbe8-4944-a5f6-0db6e97a21a0.svg?crop=center&height=194&v=1694012267&width=194", "cover_url": "http://cafewilliam.com/cdn/shop/files/Thumbnail_SocialMedia.jpg?v=1694101357", "description_meta": "Dive into the world of Cafe William: premium organic beans, ethically sourced, and bursting with authentic flavors. Order your coffee online here!", "site_name": "Caf\u00e9 William"}
\ No newline at end of file
added data/enrich_cache/cajoler.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cajoler.ca", "logo_url": "https://cajoler.ca/favicon.ico", "cover_url": null, "description_meta": "D\u00e9couvrez la ferme familiale CaJoler \u00e0 35 minutes de Sherbrooke en Estrie (Canton-de-l&#x27;est) : autocueillette, visites \u00e9ducatives, animaux, produits fermiers et plus.; Discover CaJoler, a family farm just 35 minutes from Sherbrooke in the Eastern Townships: pick-your-own berries, educational tours, farm visits, animals, farm products, and more.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/calmelabo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "calmelabo.com", "logo_url": "https://www.calmelabo.com/web/image/website/1/favicon?unique=2a1d40f", "cover_url": "https://www.calmelabo.com/web/image/2764-3e693834/6879-03.jpg", "description_meta": "Calme Laboratoires cr\u00e9e des soins naturels et hypoallerg\u00e9niques pour hommes actifs. Hydrate, prot\u00e8ge et optimise ta peau au quotidien.", "site_name": "calmelabo"}
\ No newline at end of file
added data/enrich_cache/calypsoeco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "calypsoeco.com", "logo_url": "https://www.calypsoeco.com/cdn/shop/files/CALYPSO_autocollants_rond_32x32.jpg?v=1614375158", "cover_url": "http://www.calypsoeco.com/cdn/shop/files/CALYPSO_autocollants_rond_1200x1200.jpg?v=1614375158", "description_meta": "\u00c9co-savonnerie z\u00e9ro d\u00e9chet, fabricant de produits de beaut\u00e9s \u00e9cologiques, cosm\u00e9tiques naturels et biologiques. Entreprise \u00e9coresponsable, fait \u00e0 la main au Qu\u00e9bec. Soins des cheveux : shampoing solide, revitalisant solide. Soins de la peau, visage, corps, barbe : nettoyant, s\u00e9rum, baume, huile, rasage, massage.", "site_name": "Calypso \u00c9co-savonnerie"}
\ No newline at end of file
added data/enrich_cache/camellia-sinensis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "camellia-sinensis.com", "logo_url": "https://camellia-sinensis.com/favicon-196x196.png", "cover_url": "https://camellia-sinensis.com/https&#x3A;&#x2F;&#x2F;camellia-sinensis.com&#x2F;images&#x2F;logos&#x2F;logo-1200x630.jpg", "description_meta": "Nous&#x20;proposons&#x20;une&#x20;vaste&#x20;s&#x00E9;lection&#x20;des&#x20;meilleurs&#x20;crus&#x20;de&#x20;th&#x00E9;&#x20;blanc,&#x20;th&#x00E9;&#x20;vert,&#x20;th&#x00E9;&#x20;noir,&#x20;wulong&#x20;&#x28;oolong&#x29;,&#x20;pu&#x20;er&#x20;et&#x20;matcha&#x20;choisis&#x20;directement&#x20;dans&#x20;les&#x20;jardins&#x20;de&#x20;Chine,&#x20;du&#x20;Japon,&#x20;de&#x20;l&#x2019;Inde&#x20;et&#x20", "site_name": "Camellia Sinensis"}
\ No newline at end of file
added data/enrich_cache/camerisequebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "camerisequebec.com", "logo_url": "https://camerisequebec.com/wp-content/uploads/2022/04/cropped-favicon.png", "cover_url": "https://camerisequebec.com/wp-content/uploads/2022/04/83455405_1073909516287539_5438923185225465856_n.jpg", "description_meta": "Camerise Qu\u00e9bec est le regroupement des producteurs de camerises du Qu\u00e9bec, ainsi que leur porte-parole officiel.", "site_name": "Camerise Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/camerisesmistouk.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "camerisesmistouk.com", "logo_url": "https://camerisesmistouk.com/cdn/shop/files/Logo_Noir_d5961c0c-fc59-40a0-b03f-db38847a38b3.png?crop=center&height=32&v=1662739584&width=32", "cover_url": "http://camerisesmistouk.com/cdn/shop/files/Ensemble_des_produits.png?v=1684374483", "description_meta": "Camerises Mistouk se sp\u00e9cialise dans la production et la transformation de la camerise. Nous offrons une vari\u00e9t\u00e9 de produits transform\u00e9s. L&#39;autocueillette est possible en saison. Profitez de votre visite pour venir d\u00e9couvrir l&#39;\u00e9conomus\u00e9e de la camerise et des \u00e9pices bor\u00e9ales.", "site_name": "SRE-Camerises Mistouk"}
\ No newline at end of file
added data/enrich_cache/camerisesstphilippe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "camerisesstphilippe.com", "logo_url": "https://img-to.nccdn.net/apple-touch-icon.png?V=7260935f#SYSTEM", "cover_url": null, "description_meta": "La camerise est un petit fruit \u00e0 saveur unique \u00e0 d\u00e9couvrir en autocueillette et en produits transform\u00e9s.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/camillette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "camillette.com", "logo_url": "https://camillette.com/cdn/shop/files/favicon_2018.png?v=1614290264&width=180", "cover_url": null, "description_meta": "Discover Camillette&#39;s exquisite, minimalistic jewelry in Montreal. Our delicate and elegant pieces are handcrafted with care &amp; perfect for any occasion.", "site_name": "Camillette"}
\ No newline at end of file
added data/enrich_cache/campagnedefinancementestrie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "campagnedefinancementestrie.com", "logo_url": "https://campagnedefinancementestrie.com/wp-content/uploads/2025/08/cropped-CFE-180x180.webp", "cover_url": "https://campagnedefinancementestrie.com/wp-content/uploads/2025/10/imagebannercfe-1.jpg", "description_meta": "Soutenez vos projets gr\u00e2ce \u00e0 Campagne de financement Estrie : campagnes simples, produits locaux et impact direct dans votre communaut\u00e9. Parfait pour \u00e9coles, clubs sportifs et organismes en Estrie.", "site_name": "Campagne de financement Estrie"}
\ No newline at end of file
added data/enrich_cache/campanipol.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "campanipol.com", "logo_url": "https://campanipol.com/wp-content/uploads/2021/02/cropped-favicon-180x180.png", "cover_url": "https://campanipol.com/wp-content/uploads/2021/02/tracteur.jpg", "description_meta": "Les paniers bio Jardins Bio Campanipol - Fruits et l\u00e9gumes frais, bio et locaux pendant 21 semaines! Commandez d\u00e8s maintenant!", "site_name": "Campanipol"}
\ No newline at end of file
added data/enrich_cache/campingauborddelariviere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "campingauborddelariviere.com", "logo_url": "https://campingauborddelariviere.com/wp-content/uploads/2020/07/cropped-favicon-camping-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/campingchutesfraser.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "campingchutesfraser.com", "logo_url": "http://campingchutesfraser.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/campingetranchdufjord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "campingetranchdufjord.com", "logo_url": "https://www.campingetranchdufjord.com/favicon.ico", "cover_url": "https://www.campingetranchdufjord.com/wp-content/uploads/2018/02/vue-vr2-e1743454232350.jpg", "description_meta": "Vous souhaitez vous \u00e9vader vers un endroit o\u00f9 la nature est reine? Le Camping et Ranch du Fjord saura combler votre besoin de ressourcement et vous offrir les", "site_name": "Camping et Ranch du Fjord"}
\ No newline at end of file
added data/enrich_cache/campinglevesque.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "campinglevesque.com", "logo_url": "http://campinglevesque.com/favicon.ico", "cover_url": null, "description_meta": "Le camping Levesque, entreprise familliale qui, depuis 70 ans, accueille ceux qui d\u00e9sirent se laisser envo\u00fbter par le Fleuve St-Laurent", "site_name": null}
\ No newline at end of file
added data/enrich_cache/campingsylvie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "campingsylvie.com", "logo_url": "https://campingsylvie.com/favicon.ico", "cover_url": null, "description_meta": "camping sylvie, Location de chalets et terrain de camping", "site_name": null}
\ No newline at end of file
added data/enrich_cache/campingunion.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "campingunion.com", "logo_url": "https://cdn.shortpixel.ai/spai/q_glossy+ret_img+to_webp/www.campingunion.com/wp-content/uploads/cropped-favicon-180x180.png", "cover_url": "https://www.campingunion.com/wp-content/uploads/2020/10/icone-test2.png", "description_meta": "Le plus beau r\u00e9seau de campings familiaux au Qu\u00e9bec. Profitez des paysages exceptionnels, d\u2019activit\u00e9s pour tous et d\u2019installations de qualit\u00e9. Vivez l&#039;\u00e9t\u00e9!", "site_name": "Camping Union"}
\ No newline at end of file
added data/enrich_cache/camplemanoir.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "camplemanoir.qc.ca", "logo_url": "https://cdn.prod.website-files.com/61ddcbc2454f694e1fe076cf/679fbb667c6401f375805c3f_CLM-Webclip.png", "cover_url": "https://cdn.prod.website-files.com/61ddcbc2454f694e1fe076cf/6733d508c7a3a85e5a309de1_CampLeManoir-Image-Emplois.webp", "description_meta": "D\u00e9couvrez le Centre de plein air et le Camp le Manoir, offrant des camps de vacances, des camps de jour, et des activit\u00e9s de plein air pour tous les \u00e2ges. Profitez de notre parcours arbre-en-arbre, de notre centre d\u2019escalade, d\u2019activit\u00e9s de loisirs d&#x27;\u00e9t\u00e9 et d&#x27;hiver, ainsi que des services de traiteur, d\u2019h\u00e9bergement touristique et de location de salles pour vos \u00e9v\u00e9nements. Cr\u00e9ez des souve", "site_name": null}
\ No newline at end of file
added data/enrich_cache/canabec.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canabec.net", "logo_url": "https://canabec.net/wp-content/uploads/2017/04/cropped-canabec-180x180.jpg", "cover_url": "https://canabec.net/wp-content/uploads/2021/04/logo-canabec11.jpeg", "description_meta": "D\u00e9couvrez les gibiers d&#039;\u00e9levage: cerf, wapiti, lapin, bison, faisan, pintade, perdrix, li\u00e8vre, sanglier, canard, caille, autruche, kangourou de Canabec.", "site_name": "Canabec"}
\ No newline at end of file
added data/enrich_cache/canac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canac.ca", "logo_url": "https://www.canac.ca/favicon.ico", "cover_url": null, "description_meta": "Canac", "site_name": null}
\ No newline at end of file
added data/enrich_cache/canadadumplings.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canadadumplings.com", "logo_url": "https://static.wixstatic.com/media/fa67e5_3aff4a70692849d084e776bd79990d3a%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/fa67e5_3aff4a70692849d084e776bd79990d3a%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/canadanut.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canadanut.ca", "logo_url": "https://canadanut.ca/favicon.ico", "cover_url": "https://canadanut.ca/wp-content/uploads/2023/05/Canada-Nut-Logo_Primary-Black-1.svg", "description_meta": "Founded in 1984 and based in Montreal, Quebec, Canada Nut is a leading importer and distributor of nuts, seeds, dried fruits, confectionary products and snacks.", "site_name": "Canada Nut - Founded in 1984 and based in Montreal, Quebec, Canada Nut is a lead"}
\ No newline at end of file
added data/enrich_cache/canadasauce.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canadasauce.ca", "logo_url": "https://canadasauce.ca/cdn/shop/files/marker_32x32.png?v=1619710251", "cover_url": "http://canadasauce.ca/cdn/shop/files/share-image_1200x1200.jpg?v=1619112100", "description_meta": "Canada Sauce propose des sauces et condiments comme le ketchup, la relish sucr\u00e9e et la moutarde fabriqu\u00e9s \u00e0 base d&#39;ingr\u00e9dients naturels et locaux au Canada, dans la belle r\u00e9gion du Saguenay. Magasinez en ligne d\u00e8s maintenant.", "site_name": "Canada Sauce"}
\ No newline at end of file
added data/enrich_cache/canadaspascouvert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canadaspascouvert.com"}
\ No newline at end of file
added data/enrich_cache/canardgoulu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canardgoulu.com", "logo_url": "https://canardgoulu.com/wp-content/uploads/2023/09/favicon-goulu.png", "cover_url": "https://canardgoulu.com/wp-content/uploads/2023/08/goulu-default.jpg", "description_meta": "D\u00e9couvrez notre passion pour le canard : experts en \u00e9levage et transformation, nous mettons en valeur chaque facettes de ce noble animal.", "site_name": "Le Canard Goulu"}
\ No newline at end of file
added data/enrich_cache/canardgouteux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canardgouteux.ca", "logo_url": "https://canardgouteux.ca/cdn/shop/files/logo-canard-favicon.png?crop=center&height=32&v=1712866107&width=32", "cover_url": "http://canardgouteux.ca/cdn/shop/files/CanardGouteux_LogoVerger.png?height=628&pad_color=ffffff&v=1713363951&width=1200", "description_meta": "\u00c9levage artisanal de canard reconnu pour sa viande et son foie gras fermier. Verger \u00e9cologique de pommes et produits de la ferme. Ferme agrotouristique au Centre-du-Qu\u00e9bec. Boutique \u00e0 la ferme ouverte \u00e0 l&#39;ann\u00e9e!", "site_name": "Verger Canard Go\u00fbteux"}
\ No newline at end of file
added data/enrich_cache/canardsdulacbrome.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canardsdulacbrome.com", "logo_url": "https://canardsdulacbrome.com/#", "cover_url": null, "description_meta": "Toute l\u2019information sur les Canards du Lac Brome : recette de canard, canard entier, poitrine de canard, cuisse de canard, recette canard.", "site_name": "Canards du Lac Brome"}
\ No newline at end of file
added data/enrich_cache/candylabs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "candylabs.ca", "logo_url": "https://candylabs.ca/cdn/shop/files/Round_Favicon_-_Regular.png?v=1671159653&width=180", "cover_url": null, "description_meta": "Candylabs is an artisanal candy boutique founded in Montr\u00e9al, Qu\u00e9bec, since 2014. All our candies are customizable, and handcrafted on location with quality and allergy-friendly ingredients and carefully packaged with love. We now have over 200 flavours and designs for our signature rock candies.", "site_name": "Candylabs"}
\ No newline at end of file
added data/enrich_cache/canisource.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canisource.com", "logo_url": "https://www.canisource.com/favicon.ico", "cover_url": null, "description_meta": "Fabricants de nourriture pour chiens et pour chats dont les ingr\u00e9dients de tr\u00e8s grande qualit\u00e9 sont approuv\u00e9s pour la consommation humaine. D\u00e9couvrez nos gammes de produits et les bienfaits de la nourriture CaniSource sur votre animal.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/canneberge.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canneberge.qc.ca", "logo_url": "https://www.canneberge.qc.ca/favicon.ico", "cover_url": "https://www.canneberge.qc.ca/wp-content/uploads/2022/04/Canneberge-Logo.jpg", "description_meta": "D\u00e9couvrez tous les secrets de l&#039;industrie de la canneberge, ses bienfaits et ses saveurs, en visitant le centre d&#039;interpr\u00e9tation de la canneberge!", "site_name": "Centre d&#039;interpr\u00e9tation de la canneberge - CIC"}
\ No newline at end of file
added data/enrich_cache/cantonsdelest.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cantonsdelest.com", "logo_url": "https://cloud.cantonsdelest.com/theme/images/favicon/CE_512x512.png", "cover_url": "https://cloud.cantonsdelest.com/theme/images/header_velo_campagne.jpg", "description_meta": "Site officiel de Tourisme Cantons-de-l&#039;Est. Information pour planifier votre s\u00e9jour dans les Cantons de l&#039;Est : forfaits, activit\u00e9s, h\u00e9bergements.", "site_name": "Tourisme Cantons-de-l"}
\ No newline at end of file
added data/enrich_cache/canyoning-quebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "canyoning-quebec.com", "logo_url": "https://canyoning-quebec.com/wp-content/uploads/2022/06/logo-Canyoning-Quebec-e_3c51f01b-5056-a36a-07d33fbee0a04d34-1.png", "cover_url": "https://canyoning-quebec.com/wp-content/uploads/2022/06/Jeanlarose01.jpg", "description_meta": "LE CANYONING CONSISTE \u00c0 PARCOURIR UN COURS D\u2019EAU ACCIDENT\u00c9 EN RANDONN\u00c9E, \u00c0 LA NAGE ET EN RAPPEL SUR CORDE", "site_name": "Canyoning-Quebec"}
\ No newline at end of file
added data/enrich_cache/capauleste.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "capauleste.com", "logo_url": "https://capauleste.com/wp-content/uploads/2024/12/cropped-favicon-512-180x180.png", "cover_url": "https://capauleste.com/wp-content/uploads/2025/02/chambre-chalet-naskapi-hebergement-hotel-chicoutimi-03--780x477.jpg", "description_meta": "S\u00e9journez \u00e0 l&#039;Auberge du Cap au Leste \u00e0 Sainte-Rose-du-Nord, face au fjord du Saguenay. D\u00e9couvrez des chambres confortables, une cuisine r\u00e9gionale et des activit\u00e9s en plein air pour des vacances inoubliables en harmonie avec la nature.", "site_name": "Cap au Leste"}
\ No newline at end of file
added data/enrich_cache/capelfoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "capelfoods.com", "logo_url": "https://img1.wsimg.com/isteam/ip/34b91620-31fa-4484-a4aa-39f791e17ad7/logo/4fd5d368-7c47-4b3a-b6fe-6328ffaaf151.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/34b91620-31fa-4484-a4aa-39f791e17ad7/9d712f21-abee-426b-9123-97df09b3dd97.jpg", "description_meta": "M\u00e9lange CREPES minces NATURE SARRASIN MAGICIEL \u00e9paisse pancake gaufre belge \u00c9RABLE PUR CANADIEN SACHETS INDIVIDUELS n&#x27;ajoutez que de l&#x27;eau Pr\u00e9par\u00e9 au Qu\u00e9bec CA. Coronavirus Victoriaville Princeville Plessisville", "site_name": "Aliments Capel Foods"}
\ No newline at end of file
added data/enrich_cache/caprijol.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "caprijol.com", "logo_url": "http://caprijol.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/capriravioli.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "capriravioli.com", "logo_url": "https://capriravioli.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/caprougefood.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "caprougefood.com", "logo_url": "https://static.wixstatic.com/media/e45d6d_dfb5002e7027452fa71d0c0bb7383ab2%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/e45d6d_dfb5002e7027452fa71d0c0bb7383ab2%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/captiveatelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "captiveatelier.com", "logo_url": "https://captiveatelier.com/assets/favicon-32x32.png", "cover_url": "https://captiveatelier.com/img/asset/YXNzZXRzL3NpdGUvamFkZS1ob21lcGFnZS5qcGc/jade-homepage.jpg?p=seo_pro_og&s=18b39fb2e7e1778b00078f00fcdbd451", "description_meta": "Handmade statement jewellery by fine jeweller Jade in Montr&eacute;al &mdash; rings, necklaces, earrings and one-off pieces in precious metals and genuine stones.", "site_name": "Captive Atelier"}
\ No newline at end of file
added data/enrich_cache/caramelsfaa.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "caramelsfaa.com", "logo_url": "https://caramelsfaa.com/cdn/shop/files/CaramelsFAA_Favicon_Plan_de_travail_1_32x32.png?v=1616341496", "cover_url": "http://caramelsfaa.com/cdn/shop/files/ImagePartage_CaramelsFAA-1_1200x1200.jpg?v=1626061290", "description_meta": "Caramels FAA est une entreprise 100% qu\u00e9b\u00e9coise se consacrant \u00e0 la conception et la distribution de caramels et de produits d\u00e9riv\u00e9s du caramel. Goutez d\u00e8s maintenant au meilleur caramel au Qu\u00e9bec! D\u00e9couvrez nos Caramels, Tablette de caramel-chocolat, Sauce BBQ Caramel, Cupcake au Caramel, Tarte au Caramel et bien plus!", "site_name": "Caramels FAA - Le v\u00e9ritable caramel du Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/cargill.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cargill.com", "logo_url": "https://cargill.com/favicon.ico", "cover_url": "https://www.cargill.com/image/1432075835913/cargill-logo.png", "description_meta": "Cargill is a family company providing food, ingredients, agricultural solutions and industrial products to nourish the world.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/carigingembre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "carigingembre.com", "logo_url": "https://carigingembre.com/resources/favicons/apple-touch-icon.png", "cover_url": "https://carigingembre.com/resources/images/metaimage.png", "description_meta": "Plaisirs \u00e0 emporter pour un souper improvis\u00e9, laissez-vous charmer par nos plats de qualit\u00e9 restaurant dans le confort de votre maison.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/carismo-creations.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "carismo-creations.com", "logo_url": "https://carismo-creations.com/cdn/shop/files/Logo-carismo-tuile-carre.png?crop=center&height=32&v=1752617703&width=32", "cover_url": "http://carismo-creations.com/cdn/shop/files/Logo-Carismo-Blanc.svg?height=628&pad_color=ffffff&v=1752617632&width=1200", "description_meta": "D\u00e9couvrez la bo\u00eete cadeau lumineuse carismo : unique, r\u00e9utilisable et durable, elle sublime vos pr\u00e9sents et fait rayonner chaque occasion.", "site_name": "carismo"}
\ No newline at end of file
added data/enrich_cache/carnetdautrepart.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "carnetdautrepart.com", "logo_url": "https://carnetdautrepart.com/cdn/shop/files/LOGO-Carnet_d_autre_part_32x32.png?v=1613794021", "cover_url": "https://cdn.shopify.com/s/files/1/0289/0160/5451/files/DeTAILS_1.png?v=1660693582", "description_meta": "Carnet d&#39;autre part", "site_name": "Carnet d&#39;autre part"}
\ No newline at end of file
added data/enrich_cache/carolinesavoiejoaillerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "carolinesavoiejoaillerie.com", "logo_url": "https://carolinesavoiejoaillerie.com/wp-content/uploads/2017/10/cropped-CarolineSavoieLogoBlancSurNoirSquare-e1508601602913-300x300.png", "cover_url": "https://carolinesavoiejoaillerie.com/wp-content/uploads/2017/10/CarolineSavoieLogoBlancSurNoirSquare-e1508601602913.png", "description_meta": "Bijoux pour hommes et femmes aux designs uniques.Sculpt\u00e9s et faits \u00e0 la main,\u00e0 Montr\u00e9al,Qu\u00e9bec.Joaillerie sur mesure.Audacieux \u00c9l\u00e9gant Inspir\u00e9", "site_name": "Caroline Savoie Joaillerie"}
\ No newline at end of file
added data/enrich_cache/carrecourbe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "carrecourbe.com", "logo_url": "https://carrecourbe.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/carrefoursolidaire.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "carrefoursolidaire.org", "logo_url": "https://carrefoursolidaire.org/wp-content/uploads/2022/01/cropped-tomate-180x180.png", "cover_url": "https://carrefoursolidaire.org/wp-content/uploads/2022/05/20220419_CarrefourSolidaireCCA_inauguration_CharlesOlivierBourque_WEB-83-1024x683.jpg", "description_meta": "Bienvenue au Carrefour solidaire Centre communautaire d\u2019alimentation! D\u00e9couvrez nos programmes en acc\u00e8s, \u00e9ducation et mobilisation alimentaire.", "site_name": "Carrefour solidaire CCA"}
\ No newline at end of file
added data/enrich_cache/carrementtarte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "carrementtarte.com", "logo_url": "https://carrementtarte.com/cdn/shop/files/Carrement-tarte-logo_1_1.png?v=1753458937", "cover_url": "http://carrementtarte.com/cdn/shop/files/Carrement-tarte-logo_1_1200x1200.png?v=1642706273", "description_meta": "Carr\u00e9ment Tarte", "site_name": "Carr\u00e9ment Tarte"}
\ No newline at end of file
added data/enrich_cache/casannita.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "casannita.com", "logo_url": "https://casannita.com/cdn/shop/files/Logo_Mark_Casannita_noir.png?crop=center&height=32&v=1691508714&width=32", "cover_url": "http://casannita.com/cdn/shop/files/Casannita-Aout2020-7788-web_1200x800.jpg?v=1695039421", "description_meta": "Que ce soit pour votre salle de bains, votre cuisine, votre salle \u00e0 manger ou votre chambre \u00e0 coucher, vous trouverez votre bonheur chez Casannita.", "site_name": "Casannita - Cr\u00e9ation textile"}
\ No newline at end of file
added data/enrich_cache/casaverde-microfarm.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "casaverde-microfarm.com", "logo_url": "https://casaverdeseeds.com/cdn/shop/files/casa-verde-logo-peppers.png?crop=center&height=32&v=1776652515&width=32", "cover_url": "http://casaverdeseeds.com/cdn/shop/files/casa-verde-microfarm-montreal-quebec-logo-peppers-poivrons.png?v=1777923056", "description_meta": "Pepper seeds, tomato seeds, herbs, edible flowers and culinary garden seeds selected for flavour and shipped across Canada from Qu\u00e9bec.", "site_name": "Casa Verde Seed Shop"}
\ No newline at end of file
added data/enrich_cache/cascades.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cascades.com", "logo_url": "https://www.cascades.com/favicon.ico", "cover_url": "https://www.cascades.com/themes/custom/cascades_corpo/dist/assets/logo_cascades_transparent.png", "description_meta": "Cascades propose des solutions durables, innovantes et cr\u00e9atrices de valeur en mati\u00e8re d\u2019emballage, d\u2019hygi\u00e8ne et de r\u00e9cup\u00e9ration.", "site_name": "Cascades.com"}
\ No newline at end of file
added data/enrich_cache/casinos.lotoquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "casinos.lotoquebec.com", "logo_url": "https://casinos.lotoquebec.com/.resources/scq-templating/images/favicon/portail/apple-touch-icon.png", "cover_url": "https://casinos.lotoquebec.com/.imaging/mte/casinos-theme/retinaLrg-1920w/website/casinos/portail/accueil/image/2086_SCQ_Web_OpenGraph_ligne6_LifeStylePoker_1200x630px.jpg", "description_meta": "Une exp\u00e9rience incomparable de divertissement : jeux, spectacles, restaurants, tournois, bars et plus vous attendent dans les Casinos de Loto-Qu\u00e9bec.", "site_name": "Casinos | Loto-Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/cassandraloignon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cassandraloignon.com", "logo_url": "https://www.cassandraloignon.com/wp-content/uploads/2025/03/Design-sans-titre-2-copie-300x300.png", "cover_url": null, "description_meta": "Cheffe passionn\u00e9e de cuisine et auteure de 10 livres de recettes. D\u00e9couvrez mes livres ainsi que mes diff\u00e9rents produits", "site_name": "Cassandra Loignon - Livres de recettes, Art de recevoir &amp; Beaut\u00e9"}
\ No newline at end of file
added data/enrich_cache/cassiopea.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cassiopea.ca", "logo_url": "https://cassiopea.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cassisetmelisse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cassisetmelisse.com", "logo_url": "https://cassisetmelisse.com/images/favicon.png", "cover_url": null, "description_meta": "Pr\u00c3\u00a8s de Qu\u00c3\u00a9bec, la ferme Cassis et M\u00c3\u00a9lisse fabrique des fromages de ch\u00c3\u00a8vre biologiques. Fins gourmets, amateurs d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cassismonna.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cassismonna.com", "logo_url": "https://www.cassismonna.com/favicon.ico", "cover_url": "https://www.cassismonna.com/site/static/img/cassismonna-share.jpg", "description_meta": "La maison Cassis Monna &amp; Filles conjugue passion et innovation depuis maintenant 30 ans. Le domaine se d\u00e9ploie sur plus de 22 hectares, et l&#39;on y produit annuellement plus de 85,000 bouteilles d&#39;alcools fins.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/casteldelamer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "casteldelamer.com", "logo_url": "https://www.casteldelamer.com/apple-touch-icon.png", "cover_url": null, "description_meta": "Le Castel de la Mer est un h\u00f4tel dans Charlevoix de 48 chambres modernes et confortables situ\u00e9 au coeur du quartier touristique de La Malbaie et \u00e0 proximit\u00e9 du casino.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/catelli.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "catelli.ca", "logo_url": "https://www.catelli.ca/wp-content/uploads/2022/06/fev-icon.png", "cover_url": null, "description_meta": "Discover Catelli&#039;s delicious pasta products and recipes, designed for any taste, family and lifestyle.", "site_name": "CATELLI\u00ae"}
\ No newline at end of file
added data/enrich_cache/cayaranch.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cayaranch.com", "logo_url": "https://cayaranch.com/favicon.ico", "cover_url": null, "description_meta": "Caya Ranch raises world class elk in Quebec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cb2000.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cb2000.ca", "logo_url": "https://cb2000.ca/wp-content/uploads/2020/09/favicon-1.png", "cover_url": null, "description_meta": "Fabricant de coffres-forts de qualit&eacute; sup&eacute;rieure contre le feu et le vol. Gardez-vos biens en s&eacute;curit&eacute; gr&acirc;ce &agrave; nos coffres neufs et usag&eacute;s.", "site_name": "CB2000"}
\ No newline at end of file
added data/enrich_cache/cdlinc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cdlinc.ca", "logo_url": "https://www.cdlinc.ca/wp-content/uploads/2021/02/cropped-cropped-cdl-favicon-180x180.png", "cover_url": "https://www.cdlinc.ca/wp-content/uploads/2017/04/CDL_facebook_share_1200x630.jpg", "description_meta": "L&#039;ac\u00e9riculture c&#039;est votre passion&#8230; Nous aussi.", "site_name": "Les \u00e9quipements d&#039;\u00e9rabli\u00e8re CDL"}
\ No newline at end of file
added data/enrich_cache/cedtek.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cedtek.com", "logo_url": "https://cedtek.com/wp-content/uploads/2025/03/cropped-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/centacres.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "centacres.ca", "logo_url": "https://centacres.ca/cdn/shop/files/favicon_1b601e78-4605-43bd-9221-c23f407ea632_32x32.png?v=1676578833", "cover_url": "http://centacres.ca/cdn/shop/files/IMG_5085-2.jpg?v=1781893477", "description_meta": "Producer of sweet, fruity joy \ud83c\udf41\ud83e\uded0 Blueberries, sour cherries, and maple products. Boutique caf\u00e9 with delicious pastries and Quebec-made gift ideas. U-pick at our farm nestled among the mountains in Les Etchemins", "site_name": "La ferme des cent acres"}
\ No newline at end of file
added data/enrich_cache/centrefrancinethibeault.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "centrefrancinethibeault.com", "logo_url": "https://centrefrancinethibeault.com/owebo-votresite/sites/default/files/images/Logo_site_web_1.png", "cover_url": null, "description_meta": "Votre destination mieux-\u00eatre et beaut\u00e9 \u00e0 Charlevoix: soins corps et visage, soins m\u00e9dicaux esth\u00e9tiques, massages et bien d&#039;autres. Prenez rendez-vous.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/centreinoui.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "centreinoui.com", "logo_url": "https://www.centreinoui.com/favicon.ico", "cover_url": "https://www.centreinoui.com/uploads/1/5/0/5/150537177/editor/affichecei.jpg?1724340570", "description_meta": "Centre d&#039;exposition Inou\u00ef - exposition, art contemporain", "site_name": "Centre Inoui"}
\ No newline at end of file
added data/enrich_cache/centrevilledejoliette.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "centrevilledejoliette.qc.ca", "logo_url": "https://www.centrevilledejoliette.qc.ca/wp-content/uploads/2022/02/apple-touch-icon-152x152-4.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cepas.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cepas.qc.ca", "logo_url": "https://cepas.qc.ca/favicon.ico", "cover_url": "https://cepas.qc.ca/wp-content/uploads/2026/01/CEPAS-site-web-2.png", "description_meta": "Le Centre \u00e9cologique offre des camps d\u2019\u00e9t\u00e9 en sciences naturelles pour les jeunes de 8 \u00e0 17 ans, des classes nature pour les \u00e9coles, des randonn\u00e9es interpr\u00e9t\u00e9es aux visiteurs ainsi que des s\u00e9jours d\u2019\u00e9tude et de d\u00e9couverte pour les c\u00e9geps, les universit\u00e9s et les groupes, tout cela dans un environnement majestueux et une ambiance stimulante.", "site_name": "Centre \u00e9cologique de Port-au-Saumon"}
\ No newline at end of file
added data/enrich_cache/cepdargent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cepdargent.com", "logo_url": "https://www.cepdargent.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cepetch.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cepetch.ca", "logo_url": "https://www.cepetch.ca/wp-content/uploads/2023/12/favicon-300x300.png", "cover_url": "https://www.cepetch.ca/wp-content/uploads/2023/12/CE-Petch.svg", "description_meta": "Vous pouvez vivre l&rsquo;exquise savoir-faire des cidres exceptionnels de C.E.Petch en visitant notre boutique sur place \u00e0 Hemmingford, notre boutique en ligne ou en explorant des d\u00e9taillants s\u00e9lectionn\u00e9s partageant notre engagement envers la qualit\u00e9. Magasinez maintenant Une Saveur d&rsquo;H\u00e9ritage et d&rsquo;Excellence La Cidrerie et Distillerie C.E.Petch se consacre \u00e0 la cr\u00e9ation de cidre d&rs", "site_name": "C.E. Petch"}
\ No newline at end of file
added data/enrich_cache/cernunnosfarms.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cernunnosfarms.com", "logo_url": "https://www.cernunnosfarms.com/web/image/website/1/favicon?unique=c8b6035", "cover_url": "https://www.cernunnosfarms.com/web/image/website/1/logo?unique=0babc95", "description_meta": "Manufacturer of high quality 100% beeswax candles. Simply the most eco-friendly, cleanest burning, sustainable and natural candles you can own. Product of Canada!", "site_name": "Cernunnos Farms"}
\ No newline at end of file
added data/enrich_cache/cesame.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cesame.ca", "logo_url": "https://www.cesame.ca/wp-content/uploads/2024/07/cropped-android-chrome-512x512-1-180x180.png", "cover_url": "https://www.cesame.ca/wp-content/uploads/2024/07/image_de_partage.jpg", "description_meta": "Cesame est une entreprise familiale situ\u00e9e \u00e0 Saint-Nazaire qui a le souci de faire la diff\u00e9rence dans sa communaut\u00e9. Notre ambition est de vous offrir des petits fruits savoureux, de grande qualit\u00e9 et sant\u00e9. Tous nos produits sont cultiv\u00e9s avec soin, sans produits chimiques. Actuellement, notre offre se limite \u00e0 de d\u00e9licieuses camerises mais pleins de projets se pr\u00e9parent\u202fpour le plaisir de tous d", "site_name": "CESAME"}
\ No newline at end of file
added data/enrich_cache/cesares.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cesares.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cestbelge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cestbelge.com", "logo_url": "https://cestbelge.com/cdn/shop/files/Favicon_512x512_Copy2.svg?crop=center&height=32&v=1744121658&width=32", "cover_url": null, "description_meta": "C&#39;est Belge", "site_name": "C&#39;est Belge"}
\ No newline at end of file
added data/enrich_cache/cetaphil.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cetaphil.ca", "logo_url": "https://www.cetaphil.ca/on/demandware.static/Sites-Galderma-CA-Site/-/default/dw1c98fd10/images/favicons/android-chrome-512x512.png", "cover_url": "https://www.cetaphil.ca/on/demandware.static/Sites-Galderma-CA-Site/-/default/dwff672da8/images/Cetaphil_Logo_285.png", "description_meta": "Cetaphil is a gentle skincare brand with an array of products that have been recommended and trusted by doctors for years and are used by millions around the world.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cetrobon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cetrobon.ca", "logo_url": "https://cetrobon.ca/cdn/shop/files/crop_18907e23-5009-489a-b416-10999b78cdff.png?v=1713972868&width=152", "cover_url": "http://cetrobon.ca/cdn/shop/files/Favicon_75991217-7d6c-45b2-b82a-14cb8b3372e0.jpg?v=1629743332", "description_meta": "D\u00e9couvrez un univers de d\u00e9lices gourmands o\u00f9 la qualit\u00e9 et la vari\u00e9t\u00e9 se rencontrent. Parcourez notre s\u00e9lection soigneusement choisie de produits savoureux et d\u00e9licieux qui \u00e9veilleront vos papilles. Profitez d\u2019une exp\u00e9rience d\u2019achat pratique et s\u00e9curis\u00e9e, avec une livraison rapide \u00e0 votre porte.", "site_name": "C\u00e9trobon"}
\ No newline at end of file
added data/enrich_cache/cfcdg.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cfcdg.com", "logo_url": "https://cfcdg.com/wp-content/uploads/2024/08/favicon.png", "cover_url": "https://cfcdg.com/wp-content/uploads/2024/08/FGA-370x275.webp", "description_meta": "CFCDG : Programmes de formation et de soutien pour dynamiser votre carri\u00e8re. Explorez nos services et ressources d\u00e9di\u00e9s \u00e0 votre succ\u00e8s.", "site_name": "CFCDG"}
\ No newline at end of file
added data/enrich_cache/chaletdeserables.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaletdeserables.ca", "logo_url": "https://chaletdeserables.ca/owebo-votresite/", "cover_url": null, "description_meta": "Le Chalet des \u00c9rables en Estrie vous offre des repas de cabane \u00e0 sucre sous forme de bo\u00eetes \u00e0 emporter et des produits de l\u2019\u00e9rable, sur cueillette ou livraison.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/chaletlajoliechouette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaletlajoliechouette.com", "logo_url": "https://l.icdbcdn.com/oh/f5498123-d5fc-433d-858b-0832c7041ea0.png?w=32&amp;h=32&amp;mode=crop&amp;f=32&amp;type=favicon", "cover_url": "https://l.icdbcdn.com/oh/3cdd059f-4fe9-4f60-996b-4849f3eabd30.jpg?w=1200", "description_meta": "D\u00c3\u00a9couvrez le Chalet La Jolie Chouette \u00c3\u00a0 Baie-Saint-Paul en Charlevoix. Vue incroyable, capacit\u00c3\u00a9 jusqu\u00e2\u0080\u0099\u00c3\u00a0 16 personnes, parfait pour un s\u00c3\u00a9jour en nature en famille ou entre amis.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/chaletnaturrustik.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaletnaturrustik.com", "logo_url": "data:;base64,iVBORw0KGgo=", "cover_url": "https://l.icdbcdn.com/oh/da1cbc13-c445-4b90-91f4-a7a0f69c0b5c.jpg?w=1200", "description_meta": "Chalet natur rustik \u00c3\u00a0 proximit\u00c3\u00a9 de la petite-rivi\u00c3\u00a8re-st-Francois et du massif de Charlevoix. Plusieurs activit\u00c3\u00a9s: v\u00c3\u00a9lo ski", "site_name": null}
\ No newline at end of file
added data/enrich_cache/chaletsalouer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaletsalouer.com", "logo_url": "https://www.chaletsalouer.com/IconeChalets180X180.png", "cover_url": "https://www.chaletsalouer.com/images/site/facebook_ete.jpg", "description_meta": "Chalet a louer au Qu\u00e9bec, trouvez facilement une location de chalet directement du propri\u00e9taire pour vos vacances dans les Laurentides, Cantons de l", "site_name": "Chaletsalouer.com"}
\ No newline at end of file
added data/enrich_cache/chaletscampingruisseaurouge.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaletscampingruisseaurouge.ca", "logo_url": "https://static.wixstatic.com/media/4b1b62_4b189a9315f64b2180d5fee8272d0bf7%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/4b1b62_4b189a9315f64b2180d5fee8272d0bf7%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chaletscharlevoix.biz.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaletscharlevoix.biz", "logo_url": "https://chaletscharlevoix.biz/favicon.ico", "cover_url": "https://chaletscharlevoix.biz/wp-content/uploads/2018/01/chalet_accueil_green.png", "description_meta": "ChaletsCharlevoix.biz: Chalet \ufffd louer Charlevoix, H&eacute;bergement, location de chalets touristiques dans le r&eacute;gion de Charlevoix, Qu&eacute;bec, Canada, Chalets \ufffd louer avec vue sur le fleuve, Chalets \ufffd louer avec lac priv&eacute;, Chalets \ufffd louer au Qu&eacute;bec dans la belle r&eacute;gion de Charlevoix, Destination Baie-St-Paul, Destination Baie St-Paul, Destination Baie Saint-Paul", "site_name": "ChaletsCharlevoix.biz - Chalets \u00e0 louer Charlevoix"}
\ No newline at end of file
added data/enrich_cache/challengedecurling.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "challengedecurling.com", "logo_url": "https://static.wixstatic.com/media/a1faee_03b501d5ea3a457096509272c843bc17%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a1faee_03b501d5ea3a457096509272c843bc17%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/a1faee_665f522bc16b4358b9fc050fff23f77d~mv2.png/v1/fill/w_2104,h_1189,al_c/a1faee_665f522bc16b4358b9fc050fff23f77d~mv2.png", "description_meta": "Le Challenge de curling Desjardins se d\u00e9roule en novembre de chaque ann\u00e9e \u00e0 Clermont, dans Charlevoix.", "site_name": "Challenge de curling"}
\ No newline at end of file
added data/enrich_cache/chaloupecommere.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaloupecommere.ca", "logo_url": "https://chaloupecommere.ca/wp-content/uploads/2025/09/download.png", "cover_url": "https://chaloupecommere.ca/wp-content/uploads/2025/09/528275331_1058841333114709_3000768269791893100_n-1024x768.jpg", "description_meta": "Chaloupe en aluminium soud\u00e9es. Chez Chaloupe Comm\u00e8re, nous combinons savoir-faire et technologie pour cr\u00e9er des chaloupes uniques", "site_name": "Chaloupe Commere"}
\ No newline at end of file
added data/enrich_cache/chambly.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chambly.ca", "logo_url": "https://chambly.ca/themes/chambly/assets/medias/images/favicon.png", "cover_url": "https://chambly.ca/themes/chambly/assets/medias/images/share.jpg", "description_meta": "D&#x00E9;couvrez&#x20;la&#x20;Ville&#x20;de&#x20;Chambly&#x20;&#x3A;&#x20;son&#x20;histoire,&#x20;ses&#x20;services,&#x20;et&#x20;ses&#x20;nombreuses&#x20;activit&#x00E9;s&#x20;culturelles&#x20;et&#x20;communautaires&#x20;qui&#x20;font&#x20;de&#x20;Chambly&#x20;un&#x20;lieu&#x20;unique.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/champalameule.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "champalameule.com", "logo_url": "https://champalameule.com/favicon.ico", "cover_url": null, "description_meta": "D\u00e9couvrez notre nouvelle boutique \u00e0 la fromagerie.", "site_name": "onepagetest"}
\ No newline at end of file
added data/enrich_cache/champdelfes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "champdelfes.com", "logo_url": "https://champdelfes.com/boutique/image/catalog/favicon.jpg", "cover_url": null, "description_meta": "Chandelles et bougies en cire d", "site_name": "Champ d"}
\ No newline at end of file
added data/enrich_cache/champignonboreal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "champignonboreal.com", "logo_url": "https://cdn-cms-s-8-4.f-static.net/ready_uploads/pwaScreenLogo/pwaImage.png?width=180&height=180&resizeType=pwaIcon&w=&orderScreen=&websiteID=1181091&tranW=&v=css_y254_61531641", "cover_url": "https://images.cdn-files-a.com/uploads/1181091/800_5b0aa78f7cf91.jpg", "description_meta": "Champignonboreal@hotmail.com - Champignon Bor\u00e9al", "site_name": "Champignonboreal@hotmail.com"}
\ No newline at end of file
added data/enrich_cache/chandellesfunky.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chandellesfunky.com", "logo_url": "https://chandellesfunky.com/cdn/shop/files/funky.png?v=1686139617&width=32", "cover_url": "http://chandellesfunky.com/cdn/shop/files/LOGO_FUNKY_et_Co_8x8_2.png?height=628&pad_color=fff&v=1669825168&width=1200", "description_meta": "+ de 50 fragrances de chandelles FUNKY. Des chandelles amusantes avec des odeurs qui te rappelleront assur\u00e9ment de bons souvenirs! Des chandelles pas plates!", "site_name": "Funky &amp; Co."}
\ No newline at end of file
added data/enrich_cache/chantovent.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chantovent.ca", "logo_url": "https://chantovent.ca/wp-content/uploads/2025/04/cropped-Favicon_updated-180x180.png", "cover_url": null, "description_meta": "Producteurs d&#039;ail, la Ferme Chant-O-Vent est une entreprise agricole lanaudoise sp\u00e9cialis\u00e9e dans la culture et la transformation de l&#039;ail depuis 1989.", "site_name": "Ferme Chant-O-Vent"}
\ No newline at end of file
added data/enrich_cache/chanv.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chanv.com", "logo_url": "https://chanv.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chapeaumoustache.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chapeaumoustache.com", "logo_url": "https://chapeaumoustache.com/Liquid error (layout/theme line 19): invalid url input", "cover_url": "https://cdn.shopify.com/s/files/1/0274/3789/1648/files/logo_chapeaumoustache_363a22fa-440f-45c7-a334-e828becf0db0.jpg?v=1606150283", "description_meta": "Micro torr\u00e9facteur de caf\u00e9 \u00e0 Rimouski au Bas-Saint-Laurent. Achat de caf\u00e9 en ligne, torr\u00e9faction de caf\u00e9, assemblages de caf\u00e9s espresso, caf\u00e9s de sp\u00e9cialit\u00e9s. Livraison gratuite \u00e0 l&#39;achat de 80$ et plus", "site_name": null}
\ No newline at end of file
added data/enrich_cache/chaquejourcompte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaquejourcompte.com", "logo_url": "https://www.chaquejourcompte.com/cdn/shop/files/favicon.jpg?crop=center&height=32&v=1626718865&width=32", "cover_url": "http://www.chaquejourcompte.com/cdn/shop/files/chaque-jour-compte.jpg?v=1626386937", "description_meta": "Agendas, \u00e9tampes et papeterie en fran\u00e7ais", "site_name": "Chaque jour compte"}
\ No newline at end of file
added data/enrich_cache/charbonneau.biz.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charbonneau.biz", "logo_url": "https://images.squarespace-cdn.com/content/v1/637c1e29f7f9242d32234136/ada5bd01-7fbd-4e07-b146-34b63062e4a0/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/637c1e29f7f9242d32234136/t/63eed73e350e132d0b43bb9e/1676597059396/Miniature+site+web.JPG?format=1500w", "description_meta": "Les Pastilles au Miel Charbonneau - entreprise agroalimentaire du Saguenay Lac-St-Jean -", "site_name": "Pastilles au miel Charbonneau"}
\ No newline at end of file
added data/enrich_cache/charcuteriecharlevoisienne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charcuteriecharlevoisienne.com", "logo_url": "https://charcuteriecharlevoisienne.com/wp-content/uploads/2022/01/apple-icon-60x60-1.png", "cover_url": "https://charcuteriecharlevoisienne.com/wp-content/uploads/2026/07/Charcuterietisanale-ancree-dans-Charlevoix-depuis-2002.-3.webp", "description_meta": "Depuis plus de 20 ans, Charcuterie Charlevoisienne fabrique des charcuteries artisanales. Saucisses, jambons, p\u00e2t\u00e9s, sp\u00e9cialit\u00e9s qu\u00e9b\u00e9coises.", "site_name": "Charcuterie Charlevoisienne"}
\ No newline at end of file
added data/enrich_cache/charcuteriedelagare.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charcuteriedelagare.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "Charcuteriedelagare"}
\ No newline at end of file
added data/enrich_cache/charcuteriefortin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charcuteriefortin.com", "logo_url": "https://charcuteriefortin.com/wp-content/uploads/2025/08/favicon-charcuterie-fortin-300x300.jpg", "cover_url": null, "description_meta": null, "site_name": "Charcuterie Fortin | Produits du Saguenay Lac-Saint-Jean"}
\ No newline at end of file
added data/enrich_cache/charcuterieperron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charcuterieperron.com", "logo_url": "https://www.nutrinor.com/app/uploads/sites/9/2023/02/cropped-2471_nouveau-logo-Perron-Copie-180x180.jpg", "cover_url": null, "description_meta": "Depuis 1927, nous avons accumul\u00e9 pr\u00e8s de 100 ans d\u2019expertise et de savoir-faire en transformation agroalimentaire.", "site_name": "Boucherie Charcuterie Perron"}
\ No newline at end of file
added data/enrich_cache/charcuteriescotstown.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charcuteriescotstown.com", "logo_url": "https://charcuteriescotstown.com/wp-content/themes/h5-scotstown/img/favicon.png", "cover_url": "https://charcuteriescotstown.com/wp-content/uploads/2022/11/scotstown-og-image.jpg", "description_meta": "\ud83e\udd69 Scotstown est une entreprise familiale d&#039;artisans charcutiers passionn\u00e9s, alliant traditions et innovation!", "site_name": "Charcuterie Scotstown"}
\ No newline at end of file
added data/enrich_cache/chargepoly.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chargepoly.com", "logo_url": "https://www.chargepoly.com/wp-content/uploads/2024/05/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "V\u00e9hicules lourds et autobus \u00e9lectriques : Chargepoly offre des infrastructures de recharge ultra-rapide au Qu\u00e9bec, fiables et cl\u00e9s en main.", "site_name": "Chargepoly"}
\ No newline at end of file
added data/enrich_cache/charlevoixchalets.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charlevoixchalets.com", "logo_url": "https://charlevoixchalets.com/apple-touch-icon.png", "cover_url": "https://charlevoixchalets.com/images/chalets/le-littoral/Charlevoix-Chalets-Le-Littoral-Exterior-Front-01.jpg", "description_meta": "Chalets de luxe \u00e0 louer \u00e0 Cap-\u00e0-l&#x27;Aigle, La Malbaie (Charlevoix). Piscines chauff\u00e9es, spas, saunas, vues sur le Saint-Laurent. R\u00e9servation directe en ligne.", "site_name": "Charlevoix Chalets"}
\ No newline at end of file
added data/enrich_cache/charlevoixenligne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charlevoixenligne.com", "logo_url": "https://www.charlevoixenligne.com/uploads/b/953b2350-5352-11ea-89c3-314eecbe3d5d/icon_180x180_ios_NTIwMD.png?width=180", "cover_url": "https://www.charlevoixenligne.com/uploads/b/953b2350-5352-11ea-89c3-314eecbe3d5d/20200516_151123_OTU2OD.jpg", "description_meta": "La Cidrerie et Vergers Pedneault et Charlevoix en ligne ! Livraison gratuite \u00e0 partir de 70$. 25 producteurs, 350 produits !", "site_name": "Cidrerie et Vergers Pedneault | Charlevoix en ligne"}
\ No newline at end of file
added data/enrich_cache/charlevoixgite.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charlevoixgite.com", "logo_url": "https://charlevoixgite.com/img/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/charlevoixpurelaine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charlevoixpurelaine.ca", "logo_url": "https://charlevoixpurelaine.ca/owebo-votresite/sites/default/files/images/logo-blanc-charlevoix-pure-laine.jpg", "cover_url": null, "description_meta": "Produits en laine 100 % qu\u00e9b\u00e9coise. Charlevoix Pure Laine valorise la r\u00e9cup\u00e9ration et l&#039;artisanat local pour des v\u00eatements hautement confortable.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/charlotteridouard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "charlotteridouard.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/665f5122a3d29e4bb6dd47b8/2bdc2706-b987-456c-a78b-4225ac1c5ef3/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/665f5122a3d29e4bb6dd47b8/t/666a318abd30f968b55fb0b1/1718235534875/RIDOUARD_logo_icon_300.png?format=1500w", "description_meta": "Objets en c\u00e9ramique qui allient art et design. Poteries faites \u00e0 la main au Qu\u00e9bec en utilisant le tournage, le fa\u00e7onnage et le moulage.", "site_name": "RIDOUARD"}
\ No newline at end of file
added data/enrich_cache/chasse-pinte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chasse-pinte.com", "logo_url": "https://www.chasse-pinte.com/wp-content/uploads/2025/05/cropped-logo-512x512-1-180x180.png", "cover_url": "https://www.chasse-pinte.com/wp-content/uploads/2025/05/cropped-chasse_pinte_logo_tr.png", "description_meta": "BI\u00c8RES BIOLOGIQUES BRASS\u00c9ES AU COEUR DU FJORD Brass\u00e9es avec des ingr\u00e9dients biologiques et des plantes sauvages cueillies avec soin, nos bi\u00e8res sont une invitation \u00e0 d\u00e9couvrir les richesses de la botanique foresti\u00e8re bor\u00e9ale. Une exp\u00e9rience authentique, profond\u00e9ment enracin\u00e9e dans notre territoire. voir toutes nos bi\u00e8res LE BISTRO Notre Bistro propose une table conviviale aux saveurs", "site_name": "Brasserie coop\u00e9rative la Chasse-Pinte - bi\u00e8res biologiques"}
\ No newline at end of file
added data/enrich_cache/chassegardee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chassegardee.ca", "logo_url": "https://static.wixstatic.com/media/094e94_bd2547f034e241bfae9e52e14e09c02a%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/094e94_bd2547f034e241bfae9e52e14e09c02a%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/a53b7c_92152c308e13495ab6868d286140e381~mv2.png/v1/fill/w_378,h_292,al_c/a53b7c_92152c308e13495ab6868d286140e381~mv2.png", "description_meta": "Microbrasserie situ\u00e9e \u00e0 Sacr\u00e9-Coeur, entre la C\u00f4te-Nord et le Saguenay, la Chasse-Gard\u00e9e est un incontournable \u00e0 voir...et \u00e0 boire!", "site_name": "chassegard\u00e9e"}
\ No newline at end of file
added data/enrich_cache/chaussurespop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chaussurespop.com", "logo_url": "https://www.chaussurespop.com/cdn/shop/files/ChaussuresPOP_Assets_Web_Favicon_19d93abe-060d-41e8-94cd-1b2157e636df.png?crop=center&height=48&v=1760729341&width=48", "cover_url": "http://www.chaussurespop.com/cdn/shop/files/223_1200x1200.jpg?v=1729784901", "description_meta": "Magasinez chaussures, bottes et sandales pour toute la famille. Livraison rapide et gratuite d\u00e8s 75$ au Canada. Retours faciles et paiement s\u00e9curis\u00e9.", "site_name": "Chaussures POP"}
\ No newline at end of file
added data/enrich_cache/chefbrigade.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chefbrigade.ca", "logo_url": "https://chefbrigade.ca/wp-content/uploads/2020/05/chefbrigade-favicon-300x300.png", "cover_url": "https://chefbrigade.ca/wp-content/uploads/2024/05/Chef-Brigade-Acceuil-1200x630-1.jpg", "description_meta": "Services alimentaires, cha\u00eene de restaurant, traiteur: Optez pour le meilleur de la cuisine sous vide au Qu\u00e9bec avec Chef Brigade!", "site_name": "Chef Brigade"}
\ No newline at end of file
added data/enrich_cache/chefdumas.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chefdumas.com", "logo_url": "https://www.chefdumas.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Chef Dumas"}
\ No newline at end of file
added data/enrich_cache/chenierfinearts.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chenierfinearts.ca", "logo_url": "https://www.chenierfinearts.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Chenier Fine Arts and Framing"}
\ No newline at end of file
added data/enrich_cache/chenildusportif.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chenildusportif.com", "logo_url": "https://www.chenildusportif.com/wp-content/uploads/2024/10/cropped-Logo-Chenil-du-sportif-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cherryriver.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cherryriver.ca", "logo_url": "https://cherryriver.ca/icon.png?icon.16of5_lezj~~5.png", "cover_url": "https://cherryriver.ca/assets/lifestyle/Photo%20distillerie%20Magog/DSC_0838.JPG", "description_meta": "Distillerie artisanale \u00e0 Magog et Qu\u00e9bec. Gins, rhums, vodkas, cocktails pr\u00eats-\u00e0-boire et mocktails. Visites guid\u00e9es et ateliers mixologie.", "site_name": "Cherry River \u2014 Distillerie"}
\ No newline at end of file
added data/enrich_cache/chevallove.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chevallove.ca", "logo_url": "https://boutiquechevallove.ca/cdn/shop/files/logo-chevallove-brun-400x200.png?crop=center&height=32&v=1718051679&width=32", "cover_url": "http://boutiquechevallove.ca/cdn/shop/files/banniere-accueil-chevallove-2026.png?v=1777476978", "description_meta": "Le Biscuit \u00e9questre PUR et les accessoires PRAXIS : nutrition, bien-\u00eatre, complicit\u00e9 entre humains et chevaux.", "site_name": "Boutique Chevallove"}
\ No newline at end of file
added data/enrich_cache/chevrierdunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chevrierdunord.com", "logo_url": "https://www.chevrierdunord.com/wp-content/themes/nubee/library/favicon/apple-touch-icon.png?v=GvmmW3eM2j", "cover_url": "https://www.chevrierdunord.com/wp-content/uploads/2021/04/capture-decran-le-2021-04-09-a-14-25-31.jpg", "description_meta": "Confections de v\u00eatements chauds et uniques \u00e0 partir de fibres naturelles. Visitez notre boutique en ligne et d\u00e9couvrez tous nos produits.", "site_name": "Le Chevrier du Nord"}
\ No newline at end of file
added data/enrich_cache/chezgrognon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezgrognon.ca", "logo_url": "https://static.wixstatic.com/media/de1079_3e85f2ca97b14835a54363f6449efc3c%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/de1079_3e85f2ca97b14835a54363f6449efc3c%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/de1079_d24cc1bfbbf041738c11db1d7d3ac567%7Emv2.png/v1/fit/w_2500,h_1330,al_c/de1079_d24cc1bfbbf041738c11db1d7d3ac567%7Emv2.png", "description_meta": null, "site_name": "Chez Grognon"}
\ No newline at end of file
added data/enrich_cache/chezjulie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezjulie.ca", "logo_url": "https://chezjulie.ca/wp-content/uploads/2023/02/cropped-ChezJulie-SiteWeb-02-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chezleonetlily.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezleonetlily.com", "logo_url": "https://www.chezleonetlily.com/favicon.ico", "cover_url": "https://www.chezleonetlily.com/wp-content/uploads/2022/06/facebook-chezleonetlily.png", "description_meta": "Nich\u00e9e au bord de la plage de St-Ir\u00e9n\u00e9e, la Chez L\u00e9on &amp; Lily est un commerce familial o\u00f9 nos produits sauront vous combler !", "site_name": "Chez L&eacute;on et Lily"}
\ No newline at end of file
added data/enrich_cache/chezlesbergeron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezlesbergeron.com", "logo_url": "https://chezlesbergeron.com/wp-content/uploads/2020/02/cropped-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chezmag.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezmag.com", "logo_url": "https://static.wixstatic.com/media/f30a14_2b47b9906171457e9bd53cebf02aea8a%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/f30a14_2b47b9906171457e9bd53cebf02aea8a%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chezmatanteresto.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezmatanteresto.com", "logo_url": "https://chezmatanteresto.com/wp-content/uploads/2023/09/cropped-ChezMatanteLogo_TAG_Rond-NoirGold-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": "chezmatanteresto.com -"}
\ No newline at end of file
added data/enrich_cache/chezmathilde.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezmathilde.ca", "logo_url": "https://chezmathilde.ca/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "Savourez des sp\u00e9cialit\u00e9s locales \u00e0 Tadoussac dans un restaurant \u00e0 l\u2019ambiance chaleureuse. Parfait pour familles, amis ou amoureux sur la C\u00f4te-Nord.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/chezmurphys.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezmurphys.com", "logo_url": "https://static.wixstatic.com/media/503a9f_f454a75cd62c442392b170bdd7dd870c%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/503a9f_f454a75cd62c442392b170bdd7dd870c%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cheznoussalsa.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cheznoussalsa.com", "logo_url": "https://i0.wp.com/cheznoussalsa.com/wp-content/uploads/2022/03/Tomato.png?fit=170%2C180&#038;ssl=1", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chezti-pere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chezti-pere.com", "logo_url": "https://chezti-pere.com/images/chez-ti-pere/favicon/favicon.ico", "cover_url": null, "description_meta": "Cabane \u00e0 sucre chez Ti-P\u00e8re offers a traditional sugar shack experience with a modern twist. Enjoy our delicious maple products and family-friendly events.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cheztimousse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cheztimousse.com", "logo_url": "https://www.cheztimousse.com/wp-content/uploads/2021/02/cropped-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chickumi.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chickumi.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/6148ce4147892e46f3b4b1ac/77cee78c-4d3f-4416-8de5-6defc5a219bc/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6148ce4147892e46f3b4b1ac/t/61854b1a167c7323ffae4d01/1642604210941/Chickumi_Web_Thumbnail.jpg?format=1500w", "description_meta": "Des aliments pr\u00eats-\u00e0-manger savoureux et nutritifs \u00e0 base de v\u00e9g\u00e9taux. D\u00e9couvrez-les !", "site_name": "Chickumi &#124; un pois c"}
\ No newline at end of file
added data/enrich_cache/chicplacard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chicplacard.ca", "logo_url": "https://www.chicplacard.ca/cdn/shop/files/chic_placard_logo2_32x32.jpg?v=1614290011", "cover_url": "http://www.chicplacard.ca/cdn/shop/files/LOGO_CP_Atelier_boutique_fille_phare-carte2_sticker_1200x1200.png?v=1725997867", "description_meta": "Atelier-Boutique de couture offrant d&#39;une part des v\u00eatements sur mesure et de l&#39;autre part, des fournitures pour les couturi\u00e8res. Chic Placard imprime aussi des \u00e9tiquettes \u00e0 coudre et d&#39;autres produits d&#39;affichage.", "site_name": "Chic Placard"}
\ No newline at end of file
added data/enrich_cache/chikanda.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chikanda.ca", "logo_url": "https://alimentschika.com/favicon.ico", "cover_url": null, "description_meta": "Chika - Discover chikanda, a delicious, 100% natural, 100% plant-based dish from Central Africa, now available in Quebec.", "site_name": "Aliments Chika"}
\ No newline at end of file
added data/enrich_cache/chikiboom.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chikiboom.com", "logo_url": "https://www.hostpapa.ca/themes/hostpapaV4/img/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chlorophylle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chlorophylle.com", "logo_url": "https://chlorp-dev.s3.amazonaws.com/assets/favicon-b98234855c87ae4e8ee9dbecf46b908e2eb652fd96790f81fe3d67fc2cbaef77.svg", "cover_url": null, "description_meta": "Chlorophylle cr\u00e9e des v\u00eatements de plein air durables et performants, con\u00e7us au Qu\u00e9bec pour affronter les quatre saisons. Des essentiels pens\u00e9s pour le climat d\u2019ici.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/chocochocolat.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocochocolat.ca", "logo_url": "https://i0.wp.com/chocochocolat.ca/wp-content/uploads/2023/02/cropped-choco-favicon2023.png?fit=180%2C180&#038;ssl=1", "cover_url": "https://chocochocolat.ca/wp-content/uploads/2024/01/chocochocolat-slider2024-1000x848-boutique-mobile.jpg", "description_meta": "Chocolaterie et cr\u00e9merie artisanale \u00e0 Joliette, Choco Chocolat propose des chocolats fins, sorbets et gelato faits \u00e0 la main sur place. D\u00e9couvrez nos cr\u00e9ations!", "site_name": "Choco Chocolat"}
\ No newline at end of file
added data/enrich_cache/chocolaterie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocolaterie.ca", "logo_url": "https://chocolaterie.ca/wp-content/uploads/2021/10/cropped-favicon-chocolaterie-vieux-beloeil-180x180.png", "cover_url": "https://chocolaterie.ca/wp-content/uploads/2021/10/slide-1.jpg", "description_meta": "La Chocolaterie du Vieux Beloeil est une boutique sp\u00e9cialis\u00e9e dans la confection de chocolat belge et fran\u00e7ais et de caramel maison.", "site_name": "Chocolaterie du Vieux-Beloeil"}
\ No newline at end of file
added data/enrich_cache/chocolateriebeljade.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocolateriebeljade.ca", "logo_url": "https://www.chocolateriebeljade.ca/images/favicon.png", "cover_url": "https://www.chocolateriebeljade.ca/images/logo-chocolaterie-beljade.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chocolateriedesperes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocolateriedesperes.com", "logo_url": "https://www.chocolateriedesperes.com/favicon.ico", "cover_url": "https://www.datocms-assets.com/19722/1581538728-photo-20.jpg", "description_meta": "Nous produisons un chocolat de qualit\u00e9 depuis 1939. Venez nous visiter \u00e0 Dolbeau-Mistassini. Chocolat aux bleuets | Chocolat de P\u00e2ques", "site_name": "Chocolaterie des P\u00e8res de Mistassini"}
\ No newline at end of file
added data/enrich_cache/chocolatlulu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocolatlulu.com", "logo_url": "https://chocolatlulu.com/wp-content/uploads/2018/09/cropped-logotransparant-180x180.png", "cover_url": "https://chocolatlulu.com/wp-content/uploads/2018/09/cropped-logotransparant.png", "description_meta": "Chocolat Lulu entreprise. %%sep%% R\u00e9gional Saguenay-Lac-Saint-Jean, ventes de chocolats, fudges, su\u00e7ons, enrob\u00e9s, cr\u00e8me molle, casse-cro\u00fbte !", "site_name": "Chocolat Lulu"}
\ No newline at end of file
added data/enrich_cache/chocolatsfavoris.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocolatsfavoris.com", "logo_url": "https://www.chocolatsfavoris.com/apple-touch-icon.png", "cover_url": "https://assets.chocolatsfavoris.com/pagelocale/19/og_image/0b20e95ba111a5db246aea91b8cf5134.jpg", "description_meta": "Cr\u00e9ez des moments magiques de plaisir chocolat\u00e9 en famille et entre amis gr\u00e2ce \u00e0 l\u2019exp\u00e9rience unique de Chocolats Favoris.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/chocolatsmartine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocolatsmartine.com", "logo_url": "https://www.chocolatsmartine.com/favicon.png", "cover_url": "https://www.chocolatsmartine.com/wp-content/themes/chocolats-martine/images/chocolats-martine-facebook-01.jpg", "description_meta": "Les Chocolats Martine est entreprise se sp\u00e9cialise dans la production de chocolats fins et de p\u00e2tisseries. Situ\u00e9es au c\u0153ur de Ville-Marie, les Suites de la chocolaterie offrent quatre chambres avec vue imprenable sur le magnifique lac T\u00e9miscamingue.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/chocolatsvandeneynden.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocolatsvandeneynden.com", "logo_url": "https://chocolatsvandeneynden.com/wp-content/uploads/2019/06/favicon_vandeneyden.png", "cover_url": "https://chocolatsvandeneynden.com/wp-content/uploads/2019/06/meta.jpg", "description_meta": "Artisans chocolatiers \u00e0 Magog, dans les Cantons-de-l\u2019Est, nous confectionnons des douceurs inspir\u00e9es de l\u2019art du chocolat belge depuis 2004.", "site_name": "Chocolats Vanden Eynden"}
\ No newline at end of file
added data/enrich_cache/chocomotive.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chocomotive.ca", "logo_url": "https://chocomotive.ca/wp-content/uploads/2023/10/cropped-logo-v3-180x180.png", "cover_url": null, "description_meta": "ChocoMotive, une chocolaterie artisanale \u00e9tablie \u00e0 Montebello dans la grande r\u00e9gion de l&#039;Outaouais. ChocoMotive n\u2019utilise que du chocolat, du sucre et du cacao certifi\u00e9s biologiques et \u00e9quitables et fais partie du r\u00e9seau des \u00c9conomus\u00e9e.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/choicehotels.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "choicehotels.com", "logo_url": "https://choicehotels.com/favicon.ico", "cover_url": null, "description_meta": "Choice Hotels\u00ae offers great hotel rooms at great rates. Find &amp; book your hotel reservation online today to get our Best Internet Rate Guarantee!", "site_name": "Choice Hotels"}
\ No newline at end of file
added data/enrich_cache/choiniere.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "choiniere.co", "logo_url": "https://images.squarespace-cdn.com/content/v1/5d40bacb37e0db0001a92b92/1591198059874-SLMN6IC2ST7TPXDB3EEP/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5d40bacb37e0db0001a92b92/t/5edba9521cb539389952b29f/1727092938438/_MG_5897w.jpg?format=1500w", "description_meta": "Verger familial sur sols vivants situ\u00e9 \u00e0 Frelighsburg, Qc. Cidres vivants secs et m\u00e9thodes traditionnelles. Levures indig\u00e8nes, prise de mousse en bouteille, non-filtr\u00e9s, sans sulfites.", "site_name": "CHOINI\u00c8RE"}
\ No newline at end of file
added data/enrich_cache/chopchopboards.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chopchopboards.com", "logo_url": "https://chopchopboards.com/cdn/shop/files/favicon-chopchop_32x32.png?v=1656003044", "cover_url": "http://chopchopboards.com/cdn/shop/files/chop-chop_pat3302_ef26c7b2-24c3-4a05-9c94-87494fc91efd.jpg?v=1632441269", "description_meta": "Discover premium hardwood cutting boards and butcher blocks made in Canada. Available in maple, walnut, and cherry - perfect for home cooks and professional chefs.", "site_name": "chopchop cutting boards"}
\ No newline at end of file
added data/enrich_cache/christianbergeron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "christianbergeron.com", "logo_url": "https://www.christianbergeron.com/favicon.ico", "cover_url": "https://www.christianbergeron.com/wp-content/uploads/2020/06/galerie-porte-rouge-logo.png", "description_meta": null, "site_name": "Christian Bergeron 2015"}
\ No newline at end of file
added data/enrich_cache/christinemercier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "christinemercier.ca", "logo_url": "https://www.christinemercier.ca/cdn/shop/files/Logo_fond_noir_f2c5fadf-cf50-4c71-aa3e-7e5927261edb.png?crop=center&height=32&v=1729289593&width=32", "cover_url": null, "description_meta": "Explorez notre gamme exclusive de v\u00eatements pour femmes et d&#39;\u0153uvres d&#39;artisans locaux \u00e0 Charlesbourg. Vivez l&#39;exp\u00e9rience de la mode durable, des arts et m\u00e9tiers d&#39;art du Qu\u00e9bec, chez Christine Mercier atelier-boutique. Grand choix de bijoux d&#39;artisans qu\u00e9b\u00e9cois.", "site_name": "Christine Mercier atelier-boutique"}
\ No newline at end of file
added data/enrich_cache/christophepoly.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "christophepoly.com", "logo_url": "https://christophepoly.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chuckhughes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chuckhughes.ca", "logo_url": "https://cdn.prod.website-files.com/61f070375b4b214103194fa3/621ecf2c6471012a2c8a110f_smallicon-256.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/chunksrepasdme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "chunksrepasdme.com", "logo_url": "https://chunksrepasdme.com/favicon.ico", "cover_url": "http://chunksrepasdme.com/cdn/shop/files/CHUNKS_LOGO_NEW_ONE_f0181912-8f1d-4f31-a8b7-95e62650b485.jpg?v=1707407776", "description_meta": "Explorez notre univers culinaire d\u00e9di\u00e9 \u00e0 la diversification alimentaire autonome (DME) avec nos repas pr\u00eats-\u00e0-manger. D\u00e9couvrez une s\u00e9lection savoureuse de plats adapt\u00e9s \u00e0 votre b\u00e9b\u00e9, con\u00e7us pour favoriser son ind\u00e9pendance tout en lui offrant des repas nutritifs et d\u00e9licieux! Des repas DME livr\u00e9s \u00e0 votre porte!", "site_name": "Chunks repas DME"}
\ No newline at end of file
added data/enrich_cache/churchdwight.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "churchdwight.ca", "logo_url": "https://churchdwight.ca/favicon.ico", "cover_url": null, "description_meta": "Providing your home and family with reliable, effective brands for decades! Visit us and find out why Canadians have trusted our brands for a long time!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cibleestrie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cibleestrie.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/66f21380bda0547aa5c4f166/78b33f1d-3f79-4d61-9d8e-aaa569010724/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/66f21380bda0547aa5c4f166/t/672bd8da415dee1cf4fedb00/1730926810293/logo+CIBLE+%284%29.png?format=1500w", "description_meta": "Explorez le secteur bioalimentaire en Estrie avec le Conseil de l", "site_name": "Conseil de l"}
\ No newline at end of file
added data/enrich_cache/cidreibride.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreibride.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/65afdb9c17122317c81318b1/f3067115-9bca-4185-b30f-7a3b17d8fd83/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/65afdb9c17122317c81318b1/t/66e1dc9922edf455db6d62c7/1726078105542/LOGO_RECOLOR_WEB.png?format=1500w", "description_meta": "D\u00e9couvrez cidreibride.com : cidres et boissons artisanales qu\u00e9b\u00e9coises \u00e9labor\u00e9s \u00e0 partir de fruits locaux revaloris\u00e9s. Saveurs uniques, d\u00e9marche durable et \u00e9conomie circulaire. Rejoignez notre club VIP pour exclusivit\u00e9s et d\u00e9gustations.", "site_name": "cidreibride.com"}
\ No newline at end of file
added data/enrich_cache/cidrejolirouge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidrejolirouge.com", "logo_url": "https://www.cidrejolirouge.com/wp-content/uploads/2025/03/CJR-favicon-cercle-300x300.png", "cover_url": "https://www.cidrejolirouge.com/wp-content/uploads/2025/03/Parfait-tout.webp", "description_meta": "Issu de 10 ans de passion, le Cidre Joli Rouge c\u00e9l\u00e8bre les pommes du Qu\u00e9bec, nos saveurs et tout ce qui fait la richesse de notre culture.", "site_name": "Cidre Joli Rouge"}
\ No newline at end of file
added data/enrich_cache/cidremckeown.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidremckeown.com", "logo_url": "https://cidremckeown.com/cdn/shop/files/Favicon-Mckeown_57x57_36859733-97ba-4de4-976a-18964ff29325.png?crop=center&height=32&v=1702921415&width=32", "cover_url": "http://cidremckeown.com/cdn/shop/files/LOGO-MCKEOWN_ENG-1920w_SQUARE_450x_890194ec-0032-4c9a-9ee2-3cecff03ead3.webp?v=1705782193", "description_meta": "Cidres de &quot;style pub&quot;, fait 100% de pommes fra\u00eeches de nos vergers \u00e0 Rougemont, Qu\u00e9bec. D\u00e9gustez les cidres McKeown en ap\u00e9ritif ou en mangeant, mais pr\u00e9f\u00e9rablement en bonne compagnie!", "site_name": "Cidrerie McKeown"}
\ No newline at end of file
added data/enrich_cache/cidreriebilodeau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreriebilodeau.com", "logo_url": "https://www.cidreriebilodeau.com/wp-content/uploads/2023/01/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "La Cidrerie Verger Bilodeau offre des produits de haute qualit\u00e9. Situ\u00e9 \u00e0 l&#039;\u00cele d&#039;Orl\u00e9ans, elle poss\u00e8de un majestueux verger o\u00f9 l&#039;autocueillette est permise.", "site_name": "Cidrerie Verger Bilodeau"}
\ No newline at end of file
added data/enrich_cache/cidreriecompton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreriecompton.com", "logo_url": "https://cidreriecompton.com/wp-content/uploads/2021/01/cropped-favicon-180x180.png", "cover_url": "https://cidreriecompton.com/wp-content/uploads/2021/01/facebook.jpg", "description_meta": "S&#039;inspirant des cidres anglais, Cidrerie Compton produit des cidres biologiques de qualit\u00e9 avec un style unique qui met en valeur les produits du terroir qu\u00e9b\u00e9cois.", "site_name": "Cidrerie Compton"}
\ No newline at end of file
added data/enrich_cache/cidreriecryo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreriecryo.com", "logo_url": "https://static.wixstatic.com/media/f29e52_d91f329220f844c2a9e3e1654e0eb524%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/f29e52_d91f329220f844c2a9e3e1654e0eb524%7Emv2.png", "cover_url": null, "description_meta": "La Cidrerie Cryo c", "site_name": "Cidrerie Cryo Inc."}
\ No newline at end of file
added data/enrich_cache/cidreriedragos.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreriedragos.com", "logo_url": "https://cidreriedragos.com/favicon.ico", "cover_url": null, "description_meta": "Cidrerie Dragos - Cidre p\u00c3\u00a9tillant reserve biologique 514-804-6450", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cidreriefamilletremblay.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreriefamilletremblay.ca", "logo_url": "https://cidreriefamilletremblay.ca/cdn/shop/files/Logo_Fleur_CFT.png?crop=center&height=32&v=1694030796&width=32", "cover_url": null, "description_meta": "Cidrerie familiale \u00e0 Mont\u2011Saint\u2011Gr\u00e9goire. De la pomme \u00e0 la bouteille, d\u00e9couvrez nos cidres artisanaux fabriqu\u00e9s \u00e0 la main avec passion sur nos terres.", "site_name": "Famille Tremblay Cidrerie"}
\ No newline at end of file
added data/enrich_cache/cidrerielestravauxetlesjours.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidrerielestravauxetlesjours.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "La cidrerie Les Travaux et les Jours est une cidrerie artisanale situ\u00e9e en plein c\u0153ur du village des \u00c9boulements. Nous offrons des produits issus d", "site_name": "Cidrerie Les Travaux"}
\ No newline at end of file
added data/enrich_cache/cidreriemilton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreriemilton.com", "logo_url": "https://cidreriemilton.com/cdn/shop/files/ILLUSTRATIONS_MILTON_2024_PAULARED.png?crop=center&height=32&v=1722955399&width=32", "cover_url": "http://cidreriemilton.com/cdn/shop/files/Header-Accueil_f39cdb29-83f3-4753-b71c-df82d5db5daf.png?v=1725909250", "description_meta": "Laisse-toi charmer par toutes les saveurs que nos experts de la pomme ont d\u00e9velopp\u00e9es. La magie du cidre commence ici.", "site_name": "Cidrerie Milton"}
\ No newline at end of file
added data/enrich_cache/cidrerieoreedubois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidrerieoreedubois.com", "logo_url": "https://static.wixstatic.com/media/715d6e_92305393243b449db8392b9bd80aff7d%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/715d6e_92305393243b449db8392b9bd80aff7d%7Emv2.png", "cover_url": null, "description_meta": "Verger et ferme fruiti\u00e8re avec une vue sur le fleuve \u00e0 couper le souffle. \u00c0 L", "site_name": "\u00c0 l"}
\ No newline at end of file
added data/enrich_cache/cidreriest-nicolas.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreriest-nicolas.com", "logo_url": "https://cidreriest-nicolas.com/wp-content/uploads/2022/05/cropped-Logo_Cidrerie_St_Nicolas_2_COULEURS_2021-removebg-preview-1.png", "cover_url": "https://cidreriest-nicolas.com/wp-content/uploads/2023/09/kiosque-cidrerie-1-1024x576.jpg", "description_meta": "Cidrerie St-Nicolas fond\u00e9e en 1993 \u00e0 L\u00e9vis, pionni\u00e8re du cidre de glace qu\u00e9b\u00e9cois. Autocueillette, visites guid\u00e9es, boutique ouverte \u00e0 l&#039;ann\u00e9e.", "site_name": "Cidrerie St-Nicolas"}
\ No newline at end of file
added data/enrich_cache/cidreriestantoine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreriestantoine.com", "logo_url": "https://www.cidreriestantoine.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cidresauvageon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidresauvageon.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/6231395bc819ba6723512b6a/833fa00f-d97b-493b-bc20-99fd026169d8/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6231395bc819ba6723512b6a/t/625ac58d6a000b413819b800/1650115986840/bouteilles_logo_cidre_Sauvageon.jpg?format=1500w", "description_meta": "Fond\u00e9e en 2020, Cidre sauvageon transforme \u00e0 Montr\u00e9al des pommes et autres fruits issus d", "site_name": "Cidre Sauvageon"}
\ No newline at end of file
added data/enrich_cache/cidreturbulence.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cidreturbulence.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/5ec2ec4a-03e7-4e3d-b803-a7c0c646f779/_DSF3158.jpg", "description_meta": null, "site_name": "Cidre Turbulence"}
\ No newline at end of file
added data/enrich_cache/cihofm.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cihofm.com", "logo_url": "https://cihofm.com/app/uploads/2019/09/cropped-FAV_Icon-180x180.png", "cover_url": "https://cihofm.com/app/uploads/2022/07/LogoNouv_CIHO-e1664183888137.jpg", "description_meta": null, "site_name": "CIHO"}
\ No newline at end of file
added data/enrich_cache/cirka.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cirka.ca", "logo_url": "https://cirkadistilleries.com/cdn/shop/files/FavIcon_Clovis_32x32_f5866f11-681d-4662-8548-28af3e24bf02_32x32.png?v=1655819035", "cover_url": "http://cirkadistilleries.com/cdn/shop/files/cirka-distilleries.jpg?v=1761664465", "description_meta": "Montreal craft distillery producing gin, vodka, whisky and liqueurs from Quebec grain. Grain-to-bottle spirits crafted for cocktails and tasting experiences.", "site_name": "CIRKA Distilleries"}
\ No newline at end of file
added data/enrich_cache/cje-appui.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cje-appui.qc.ca", "logo_url": "https://cje-appui.qc.ca/wp-content/uploads/2021/08/favicon-57X57.png", "cover_url": "https://cje-appui.qc.ca/wp-content/uploads/2021/10/Slider3-Page.jpg", "description_meta": null, "site_name": "Appui"}
\ No newline at end of file
added data/enrich_cache/clarkcordonbleu.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clarkcordonbleu.ca", "logo_url": "https://clarkcordonbleu.ca/wp-content/uploads/2025/07/cropped-cropped-cb-favicon-180x180-1-180x180.png", "cover_url": "https://clarkcordonbleu.ca/wp-content/uploads/2023/02/employe-cordon-bleu-clark.jpg", "description_meta": "Cordon Bleu, c\u2019est une entreprise de transformation alimentaire qui a su s\u2019adapter aux \u00e9poques et qui est rest\u00e9e fid\u00e8le \u00e0 ses origines.", "site_name": "Cordon Bleu"}
\ No newline at end of file
added data/enrich_cache/claudiagomez.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "claudiagomez.ca", "logo_url": "https://www.claudiagomez.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/63043a5fe4636d5665c99e61/t/6567634fdeabd27c226512ae/1701274450089/0K9A3144.jpg?format=1500w", "description_meta": "Explore Claudia G\u00f3mez", "site_name": "Claudia G\u00f3mez, Artiste Bijouti\u00e8re"}
\ No newline at end of file
added data/enrich_cache/claudinemoncion.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "claudinemoncion.ca", "logo_url": "https://moncion.co/cdn/shop/files/web-app-manifest-512x512_32x32.png?v=1776879896", "cover_url": "http://moncion.co/cdn/shop/files/MELT_Beads03_bas_3a8fc4b4-652e-44d8-a320-3891b5ff5e59_1200x1200.jpg?v=1681352972", "description_meta": "moncion.co", "site_name": "moncion.co"}
\ No newline at end of file
added data/enrich_cache/cledeschampsbio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cledeschampsbio.com", "logo_url": "https://cledeschampsbio.com/wp-content/uploads/2019/03/cropped-CdC-Favicon-180x180.png", "cover_url": "https://cledeschampsbio.com/wp-content/uploads/2023/03/CledesChamps_Facebook_header_2022_1a-01-scaled.jpg", "description_meta": "La cl\u00e9 des champs de St-Camille propose des produits biologiques certifi\u00e9s \u00e0 travers ses abonnements paniers de l\u00e9gumes et ses march\u00e9s. Visitez notre site pour obtenir des informations et des conseils sur la fa\u00e7on de consommer de mani\u00e8re plus durable et plus saine.", "site_name": "La cl\u00e9 des champs de St-Camille"}
\ No newline at end of file
added data/enrich_cache/clementlegourmand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clementlegourmand.com", "logo_url": "https://clementlegourmand.com/web/image/website/1/favicon?unique=90ee66b", "cover_url": "https://clementlegourmand.com/web/image/website/1/logo?unique=90ee66b", "description_meta": null, "site_name": "clementlegourmand"}
\ No newline at end of file
added data/enrich_cache/clients.whc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clients.whc.ca", "logo_url": "https://clients.whc.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/clinic-sm.quebec.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clinic-sm.quebec", "logo_url": "https://clinic-sm.quebec/favicon.ico", "cover_url": "http://clinic-sm.quebec/cdn/shop/files/Logo-Clinic-SM_Logo-en-pdf-mars-2021-Haute-definition-e1631806128755.png?v=1743516148", "description_meta": "Produits pour soins de la peau fabriqu\u00e9s au Qu\u00e9bec, maintenant sans PFAS, sans parab\u00e8nes. Produits hauts de gamme, abordables et \u00e9coresponsables. Livraison rapide.", "site_name": "Clinic-SM"}
\ No newline at end of file
added data/enrich_cache/cloridorme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cloridorme.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/closdespetitsbergers.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "closdespetitsbergers.ca", "logo_url": "https://closdespetitsbergers.ca/owebo-votresite/sites/default/files/images/Logo2019_92ko.png", "cover_url": "https://closdespetitsbergers.ca/sites/default/files/images/Logo2019_92ko.png", "description_meta": "Visitez le site Clos des Petits Bergers, qui se consacre \u00e0 la fabrication de produits gastronomiques \u00e0 partir des raisins qu&#039;ils cultivent.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cloture.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cloture.com", "logo_url": "https://cloture.com/favicon.ico", "cover_url": "https://cloture.com/wp-content/uploads/CF_SiteWeb_BanniereCARREE_FeteTravail_V01-1024x1024.jpg", "description_meta": "Obtenez votre prix directement en ligne sur notre site web.", "site_name": "Cl\u00f4ture.com | Achetez en ligne"}
\ No newline at end of file
added data/enrich_cache/cloturesalma.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cloturesalma.ca", "logo_url": "https://www.cloturesalma.ca/favicon-512x512.png", "cover_url": "https://www.cloturesalma.ca/ressources/images/opengraph_0e3c.png", "description_meta": "Alma Cl\u00f4ture est votre fabricant de produits de qualit\u00e9 \u00e0 Montr\u00e9al. D\u00e9couvrez nos cl\u00f4tures fabriqu\u00e9es au Canada : ornementales, en composite et \u00e0 maille de cha\u00eenes.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/clover.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clover.com", "logo_url": "https://cloverstatic.com/content/icons/web/favicons/android-chrome-192x192.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/club3castors.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "club3castors.com", "logo_url": "https://club3castors.com/favicon.ico", "cover_url": null, "description_meta": "Au c\u00c5\u0093ur des montagnes, entour\u00c3\u00a9 de lacs, de fruits et de fleurs sauvages, le Club des Trois Castors est l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/clubbataram.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clubbataram.qc.ca", "logo_url": "https://clubbataram.qc.ca/app/uploads/2021/02/favicon2-1.jpg", "cover_url": "https://clubbataram.qc.ca/app/uploads/2021/01/2313918-copy.jpg", "description_meta": "Situ\u00e9e dans la r\u00e9gion de Charlevoix sur un territoire exclusif, la pourvoirie Club Bataram est une destination convoit\u00e9e en famille ou entre amis.", "site_name": "Bataram"}
\ No newline at end of file
added data/enrich_cache/clubchiropratique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clubchiropratique.com", "logo_url": "https://static.wixstatic.com/media/80c44a_f10e591424c041a195dc498725f1a38a%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/80c44a_f10e591424c041a195dc498725f1a38a%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/clubclub.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clubclub.ca", "logo_url": "https://clubclub.ca/favicon.ico", "cover_url": "https://clubkombucha.ca/sites/default/themes/clubkombucha_v1/clubkombucha_og.jpg", "description_meta": "Kombucha \u00e0 boire. Comme une bi\u00e8re en canette, mais c&#039;est du kombucha.", "site_name": "Club Kombucha"}
\ No newline at end of file
added data/enrich_cache/clubmed.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "clubmed.ca", "logo_url": "https://www.clubmed.ca/favicon.ico", "cover_url": "https://assets.dream.clubmed/pm_7531_855_855579-nbgfejrdm6.jpg", "description_meta": "Browse Club Med&#x27;s wide range of luxury resorts and find the perfect holiday to suit your needs. Available to book online today!", "site_name": "Club Med"}
\ No newline at end of file
added data/enrich_cache/cochoncentfacons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cochoncentfacons.com", "logo_url": "https://www.cochoncentfacons.com/favicon.ico", "cover_url": "https://www.cochoncentfacons.com/wp-content/uploads/2016/10/DSC01767.jpg", "description_meta": "Cochon cent fa\u00e7ons pr\u00e9pare sur place ses charcuteries, saucisses, jambons et coupes de viande fra\u00eeche. La famille Forget concocte aussi des mets cuisin\u00e9s.", "site_name": "Cochon cent fa\u00e7ons"}
\ No newline at end of file
added data/enrich_cache/cochonstoutronds.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cochonstoutronds.com", "logo_url": "https://cochonstoutronds.com/images/favicon.png", "cover_url": null, "description_meta": "Les Cochons tout ronds", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cocooninglove.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cocooninglove.com", "logo_url": "https://cocooninglove.com/cdn/shop/files/Favicon_CL-02_180x.png?v=1708621917", "cover_url": null, "description_meta": "Cocooning Love offre des produits cosm\u00e9tiques naturels pour le visage, le corps et les cheveux. D\u00e9couvrez notre collection d\u00e8s aujourd&#39;hui !", "site_name": "Cocooning Love"}
\ No newline at end of file
added data/enrich_cache/coffretsduroyaume.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coffretsduroyaume.com", "logo_url": "https://www.coffretsduroyaume.com/images/favicon.png", "cover_url": "https://www.datocms-assets.com/1561/1633187537-capture-d-ecran-le-2021-10-02-a-11-11-36.png", "description_meta": "Des produits uniques a offrir en cadeau ou pour ce faire plaisir \u00e0 sois m\u00eame! Cadeaux corporatifs, campagne de financement, boutique situ\u00e9e \u00e0 Alma", "site_name": "Coffrets du Royaume - Boutique, Campagnes de financement, Abonnement, Coffrets d"}
\ No newline at end of file
added data/enrich_cache/coffretsprestige.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coffretsprestige.com", "logo_url": "https://coffretsprestige.com/media/favicon/websites/3/coffrets-favicon.png", "cover_url": null, "description_meta": "Coffrets Prestige propose +30 coffrets-cadeaux, offrant plus de 2000 forfaits \u00e0 travers le Qu\u00e9bec. L&#039;id\u00e9e cadeau parfaite pour offrir : cadeau pour femme, cadeau pour homme, cadeau pour couples.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cohabitatneuville.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cohabitatneuville.com", "logo_url": "https://static.wixstatic.com/media/36a6eb_4d93133089ae42cfa511cb1dcde2d282%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/36a6eb_4d93133089ae42cfa511cb1dcde2d282%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/colabor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "colabor.com", "logo_url": "https://colabor.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/colibrivanille.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "colibrivanille.com", "logo_url": "https://colibrivanille.com/cdn/shop/files/Colibri_Vanille_294a783e-0bb1-4977-a94f-831e1dff10b9-removebg-preview_1.png?crop=center&height=32&v=1721044342&width=32", "cover_url": "http://colibrivanille.com/cdn/shop/files/Photo_2021-05-24_6_27_36_PM_1_44aa64e2-f097-4e4b-afa0-ebab738dc74e_4015x2589.jpg?v=1631968404", "description_meta": "Colibri Vanille est importatrice des meilleures vanilles du monde. Elle fabrique \u00e0 Saint-Roch-de-Richelieu au Qu\u00e9bec, un grand nombre de produits d\u00e9riv\u00e9s de la vanille: extraits de vanille, poudre de vanille, p\u00e2te de vanille, huile vanill\u00e9e, etc.", "site_name": "Colibrivanille.com"}
\ No newline at end of file
added data/enrich_cache/collationsdecloe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "collationsdecloe.com", "logo_url": "https://collationsdecloe.com/cdn/shop/files/1_1.png?crop=center&height=32&v=1775156728&width=32", "cover_url": "https://collationsdecloe.com/cdn/shop/files/bg-footer_1575x630.png?v=1778080568", "description_meta": "Collations sant\u00e9 de fruits lyophilis\u00e9s, sans sucre ajout\u00e9, faites au Qu\u00e9bec. Livraison partout au Canada. D\u00e9couvrez nos collations naturelles et pratiques.", "site_name": "Collations de Clo\u00e9"}
\ No newline at end of file
added data/enrich_cache/collectifensemble.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "collectifensemble.com", "logo_url": "https://collectifensemble.com/wp-content/uploads/2025/05/cropped-collectif-brassicole-ensemble_favicon2-180x180.webp", "cover_url": "https://collectifensemble.com/wp-content/uploads/2025/06/collectif-brassicole-ensemble-noir_logo.png", "description_meta": "Nous sommes un collectif brassicole regroupant des entrepreneurs-artisans ind\u00e9pendants et passionn\u00e9s. Nous brassons des bi\u00e8res biologiques, favorisons l\u2019approvisionnement local et l\u2019\u00e9conomie circulaire.", "site_name": "Collectif Brassicole Ensemble"}
\ No newline at end of file
added data/enrich_cache/collections.bleuetdart.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "collections.bleuetdart.com", "logo_url": "https://collections.bleuetdart.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/collineauxbleuets.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "collineauxbleuets.com", "logo_url": "https://static.wixstatic.com/media/12f9ce_052c63877339477d9201d8e8567a0c0d%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/12f9ce_052c63877339477d9201d8e8567a0c0d%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/colorantic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "colorantic.com", "logo_url": "https://colorantic.com/favicon.ico", "cover_url": "https://colorantic.com/wp-content/uploads/2019/08/Banniere-Accueil-Peinture-a-la-craie-Colorantic.jpg", "description_meta": "\ud83c\udfa8Colorantic Recyclez, Revalorisez &amp; Peinturez / Recyle, Restore and Paint Accueil", "site_name": "Colorantic - Recyclez, Revalorisez &amp; Peinturez / Recyle, Restore and Paint"}
\ No newline at end of file
added data/enrich_cache/comautrefois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "comautrefois.ca", "logo_url": "https://comautrefois.ca/wp-content/uploads/2024/08/Vignoble-ComAutrefois.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/commande-boucherieraymondetandre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "commande-boucherieraymondetandre.com", "logo_url": "https://www.commande-boucherieraymondetandre.com/cdn/shop/files/BoucherieRA_Logo_Blanc_32x32.jpg?v=1614373949", "cover_url": "http://www.commande-boucherieraymondetandre.com/cdn/shop/files/BoucherieRA_Logo_Blanc.jpg?v=1614373949", "description_meta": "Vous \u00eates amateur de b\u0153uf Angus certifi\u00e9? La Boucherie Raymond et Andr\u00e9 de Chicoutimi doit \u00eatre votre choix num\u00e9ro 1 pour votre viande. Notre boucherie peut se targuer d\u2019offrir du b\u0153uf Angus certifi\u00e9, r\u00e9pondant \u00e0 des crit\u00e8res de qualit\u00e9 tr\u00e8s pr\u00e9cis, ce qui en fait une viande avec la plus haute certification. Nos arriva", "site_name": "Boucherie Raymond &amp; Andr\u00e9"}
\ No newline at end of file
added data/enrich_cache/commandes.domaineacer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "commandes.domaineacer.com", "logo_url": "https://commandes.domaineacer.com/favicon.ico", "cover_url": "https://commandes.domaineacer.com/assets/images/domaine-acer-fb-banner.jpg", "description_meta": "Avec ses boissons alcoolis\u00c3\u00a9es d", "site_name": "Domaine Acer"}
\ No newline at end of file
added data/enrich_cache/commensal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "commensal.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/67aa4b88e2b6aa71994fc2d5/1739213732491-97EF6RFMPSYXZ4DN1QBQ/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/67aa4b88e2b6aa71994fc2d5/t/67aa4ba2e2b6aa71994fc9bf/1733947029212/Logo-Commensal-tagline-RGB+%281%29.png?format=1500w", "description_meta": null, "site_name": "commensal"}
\ No newline at end of file
added data/enrich_cache/comont.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "comont.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/6454e85366c315048fa3a2fc/e06eea6c-9a0e-4c51-8636-718f98452d32/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6454e85366c315048fa3a2fc/t/64efb57498983b6c244d6bd5/1693431156456/Sans+titre.png?format=1500w", "description_meta": "Situ\u00e9e \u00e0 Bedford sur la route des vins dans les Cantons-de-l\u2019Est. Comont est une distillerie \u00e0 \u00e9chelle humaine qui op\u00e8re dans la tradition de la distillation. Nos produits sont \u00e9labor\u00e9s avec des ingr\u00e9dients d\u2019ici et assembl\u00e9s avec amour.", "site_name": "COMONT"}
\ No newline at end of file
added data/enrich_cache/complexetouristiquebleuet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "complexetouristiquebleuet.com", "logo_url": "https://complexetouristiquebleuet.com/wp-content/themes/la_web_shop/favicon.png", "cover_url": "https://complexetouristiquebleuet.com/wp-content/themes/la_web_shop/images/facebook_image.jpg", "description_meta": "La bleueti\u00e8re coop\u00e9rative de St-L\u00e9on donne depuis plusieurs ann\u00e9es d\u00e9j\u00e0 un service d\u2019auto cueillette \u00e0 toute la population.", "site_name": "Complexe touristique du Bleuet"}
\ No newline at end of file
added data/enrich_cache/complimentsdebellemaman.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "complimentsdebellemaman.com", "logo_url": "https://www.complimentsdebellemaman.com/wp-content/uploads/2020/09/logo.jpg", "cover_url": "https://www.complimentsdebellemaman.com/wp-content/uploads/2021/09/logo-long-vectorise-CBM-2-e1630675791992.png", "description_meta": "Compliments de Belle-Maman, venez go\u00fbtez nos conserves authentiques et artisanales de produits issus de l&#039;agriculture locale.", "site_name": "Compliments de belle-maman"}
\ No newline at end of file
added data/enrich_cache/comptonales.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "comptonales.com", "logo_url": "https://www.comptonales.com/wp-content/uploads/2026/06/favicon.png", "cover_url": "https://www.comptonales.com/wp-content/uploads/2026/04/Comptonales_JSS9747_Jessica-Garneau-scaled.jpg", "description_meta": "Festival gourmand qui attire chaque ann\u00e9e des milliers de r\u00e9sidents de la r\u00e9gion de Compton. Une des attractions touristiques les plus populaires en Estrie.", "site_name": "Les Comptonales"}
\ No newline at end of file
added data/enrich_cache/conagrabrands.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "conagrabrands.ca", "logo_url": "https://conagrabrands.ca/favicon.ico", "cover_url": null, "description_meta": "Welcome to the new Conagra Brands website for Canada.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/concepterable.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "concepterable.ca", "logo_url": "https://concepterable.ca/owebo-votresite/", "cover_url": null, "description_meta": "Site web de Concept\u00e9rable inc. \u00c9rabli\u00e8re et producteur de sirop d&#039;\u00e9rable", "site_name": null}
\ No newline at end of file
added data/enrich_cache/conceptioncuir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "conceptioncuir.com", "logo_url": "https://conceptioncuir.com/wp-content/uploads/2020/12/cropped-android-chrome-512x512-1-180x180.png", "cover_url": "https://conceptioncuir.com/wp-content/uploads/2020/11/asset_0004_7-1.png", "description_meta": "CHIC, AUTHENTIQUE, INTEMPOREL Optez pour\u00a0l\u2019\u00e9l\u00e9gance\u00a0durable du cuir v\u00e9ritable.\u00a0 D\u00e9couvrez nos produits SAC \u00c0 MAIN Voir les produits SAC \u00c0 DOS Voir les produits PORTE-MONNAIE Voir les produits PORTE-DOCUMENT Voir les produits Nos collections DES CR\u00c9ATIONS UNIQUES SIGN\u00c9ES CONCEPTION CUIR POUR TOUS LES STYLES ET LES BUDGETS. NOS COLLECTIONS \u00c0 chacun son style! D\u00e9couvrez nos magnifiques [&hellip;]", "site_name": "Conception Cuir"}
\ No newline at end of file
added data/enrich_cache/conceptrenoplus.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "conceptrenoplus.ca", "logo_url": "https://www.conceptrenoplus.ca/favicon.ico", "cover_url": "https://www.conceptrenoplus.ca/wp-content/uploads/2025/03/Logo-Concept-Renoplus.jpg", "description_meta": "Vous avez un projet de r\u00e9novation et recherchez un entrepreneur g\u00e9n\u00e9ral fiable pour concr\u00e9tiser vos id\u00e9es ? Concept R\u00e9noplus vous accompagne dans la", "site_name": "Concept Renoplus"}
\ No newline at end of file
added data/enrich_cache/concretememory.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "concretememory.com", "logo_url": "https://concretememory.com/cdn/shop/files/chargeur_wireless_en_beton_et_pot_crayon_concrete_memory.png?crop=center&height=32&v=1769034250&width=32", "cover_url": "http://concretememory.com/cdn/shop/files/logo_THE_GOOD_ONE_concrete_memory_noir_copie.png?v=1750295051", "description_meta": "Depuis 2019, Les Mimipots, maintenant Concrete Memory, fabrique au Qu\u00e9bec des pots et objets d\u00e9coratifs en b\u00e9ton artisanal. Design moderne et minimaliste. Offrez aussi des cr\u00e9ations sur mesure pour entreprises : cadeaux corporatifs, reconnaissance, objets personnalis\u00e9s et durables.", "site_name": "Concrete Memory"}
\ No newline at end of file
added data/enrich_cache/cone10.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cone10.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/6615d6922fd5a13ee58c746e/ffba15fc-ce6a-499f-b36c-0c176aca82f5/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6615d6922fd5a13ee58c746e/t/66c647eb51e06a67164ce453/1725730572992/Atelier+Cone10.jpg?format=1500w", "description_meta": "D\u00e9couvrez les meilleurs cours et studio de poterie \u00e0 Montr\u00e9al. Apprenez les techniques de poterie sur tour et de modelage \u00e0 la main avec des instructeurs experts. Vous cherchez des cours de poterie \u00e0 Montr\u00e9al ? Notre studio propose des le\u00e7ons compl\u00e8tes sur la poterie sur tour et le modelage \u00e0 la mai", "site_name": "Atelier C\u00f4ne10"}
\ No newline at end of file
added data/enrich_cache/confettimill.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "confettimill.com", "logo_url": "https://www.confettimill.com/cdn/shop/files/logos-confettimill10_babdbdf6-954e-41c3-8198-57c46c47ad7a.png?crop=center&height=32&v=1636489690&width=32", "cover_url": null, "description_meta": "Beautiful and functional kitchen accessories of linen &amp; curated slow made goods for a conscious living.", "site_name": "Confetti Mill"}
\ No newline at end of file
added data/enrich_cache/confitepiceriebuvette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "confitepiceriebuvette.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/65fdcd7f59505d24ac5217ad/a99c6ec5-66f1-46fe-969b-a34475edb04f/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/65fdcd7f59505d24ac5217ad/t/66368cd70e0ac06855d217ab/1714851031505/2.jpg?format=1500w", "description_meta": "Cuisine vagabonde dans Charlevoix. Pop-up, \u00e9v\u00e9nementiel, tabl\u00e9es Parvis dans le champ, March\u00e9 Public de La Malbaie. Future projet d", "site_name": "Confit \u00c9picerie-Buvette"}
\ No newline at end of file
added data/enrich_cache/confreriebrasseurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "confreriebrasseurs.com", "logo_url": "https://confreriebrasseurs.com/wp-content/uploads/2021/05/apple-touch-icon.png", "cover_url": null, "description_meta": "T&#039;as soif? Viens-nous boire!", "site_name": "La Confr\u00e9rie Artisans Brasseurs"}
\ No newline at end of file
added data/enrich_cache/congelerieheritier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "congelerieheritier.com", "logo_url": "https://congelerieheritier.com/wp-content/uploads/2020/04/Logo-footer-300x300.png", "cover_url": null, "description_meta": null, "site_name": "H\u00e9ritier"}
\ No newline at end of file
added data/enrich_cache/connecoutdoors.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "connecoutdoors.com", "logo_url": "https://connecoutdoors.com/cdn/shop/files/80__3CM_CONNEC_EMBROIDERY__1_1.png?v=1705798880&width=180", "cover_url": "http://connecoutdoors.com/cdn/shop/files/Connecoutdoors.png?v=1742865990&width=2048", "description_meta": "Connec create technical hunting and fishing clothing where every detail is thought out to improve performance and endurance.", "site_name": "Connec Outdoors"}
\ No newline at end of file
added data/enrich_cache/conseiltaq.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "conseiltaq.com", "logo_url": "https://conseiltaq.com/images/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "Le CTAQ est une consolidation des forces de l&#039;industrie alimentaire qui regroupe 80% du volume annuel d&#039;affaires d&#039;une industrie de plus de 35 milliards de dollars.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/constantin-gregoire.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "constantin-gregoire.qc.ca", "logo_url": "https://static.wixstatic.com/media/723620_7fd776d0e2af408dbfa281192e1855c1%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/723620_7fd776d0e2af408dbfa281192e1855c1%7Emv2.jpg", "cover_url": null, "description_meta": "Chez Constantin Gr\u00e9goire, nous sommes plus qu", "site_name": "Cabane \u00e0 Sucre Constantin Gr\u00e9goire"}
\ No newline at end of file
added data/enrich_cache/constantin.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "constantin.ca", "logo_url": "https://constantin.ca/wp-content/themes/constantin/images/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "Cabane \u00e0 sucre, Salle de r\u00e9ception et Les Produits d\u2019antan. Venez vivre l\u2019exp\u00e9rience de la Cabane \u00e0 sucre traditionnelle, avec un repas typique depuis 1941", "site_name": "Cabane \u00e0 sucre Constantin"}
\ No newline at end of file
added data/enrich_cache/contact.groupe-bel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "contact.groupe-bel.com", "logo_url": "https://contact.groupe-bel.com/assets/imgs/logo-bel.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/coo-mon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coo-mon.ca", "logo_url": "https://coo-mon.ca/favicon.ico", "cover_url": "http://coo-mon.ca/cdn/shop/files/Accessoires-mode-homme-femme-enfant-faits-main-au-quebec-accessoires-mariage-coo-mon_d9bb85ee-e0a6-4ab3-a691-1070f83d0dc6.png?v=1624425068&width=2048", "description_meta": "Accessoires de mode faits main au Qu\u00e9bec pour hommes, femmes, enfants et accessoires sur mesure pour mariage et corporatifs. Ramassage gratuit \u00e0 l&#39;atelier. Livraison gratuite \u00e0 partir de 75$ au Canada, aux \u00c9tats-Unis et 90$ partout ailleurs dans le monde.", "site_name": "Coo-Mon"}
\ No newline at end of file
added data/enrich_cache/cookiedatabase.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cookiedatabase.org", "logo_url": "https://cookiedatabase.org/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cookiestefanie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cookiestefanie.com", "logo_url": "https://cookiestefanie.com/cdn/shop/files/2_4e9e7f96-836b-4163-b69d-edd9ce4dc4b3.png?crop=center&height=48&v=1768416806&width=48", "cover_url": "http://cookiestefanie.com/cdn/shop/files/Cookie_Stefanie_Texture_br_555_-_Copie.jpg?v=1767588513", "description_meta": "Cookie Stefanie offre des produits de boulangerie et de p\u00e2tisserie sans gluten de grande qualit\u00e9, aux saveurs authentiques, qui ravissent tous les amateurs \u2014 qu\u2019ils soient c\u0153liaques, intol\u00e9rants ou simplement gourmands. Nous avons une approche clean label, privil\u00e9giant des ingr\u00e9dients naturels et facile \u00e0 identifier.", "site_name": "Cookie St\u00e9fanie"}
\ No newline at end of file
added data/enrich_cache/cool-hotel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cool-hotel.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cool-simple.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cool-simple.com", "logo_url": "https://cool-simple.com/cdn/shop/files/Cool_Simple_Flavicon_685d64a6-cab6-4077-9fdd-f4cc38a22cc2.png?crop=center&height=180&v=1726239537&width=180", "cover_url": null, "description_meta": "Cool&amp;Simple, c&#39;est plus de 350 produits surgel\u00e9s de qualit\u00e9 de l&#39;entr\u00e9e au dessert, pour toutes les occasions. Livraison disponible et ramassage dans nos 4 boutiques \u00e0 Montr\u00e9al !", "site_name": "Cool&amp;Simple"}
\ No newline at end of file
added data/enrich_cache/coopagrobioquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coopagrobioquebec.com", "logo_url": "https://coopagrobioquebec.com/wp-content/uploads/2021/11/favicon-6.png", "cover_url": "https://coopagrobioquebec.com/wp-content/uploads/2021/11/hrd-img-whole.png", "description_meta": "La Coop Agrobio du Qu\u00e9bec regroupe des producteurs de grains biologiques, offrant des produits locaux et durables.", "site_name": "Coop AgroBio"}
\ No newline at end of file
added data/enrich_cache/coopalentour.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coopalentour.ca", "logo_url": "https://coopalentour.ca/wp-content/uploads/2024/11/cropped-Flavicon-Coop-180x180.png", "cover_url": null, "description_meta": "Notre \u00e9picerie d&#039;aliments biologiques et locaux en Estrie. 80% de nos produits proviennent de l&#039;Estrie, du Qu\u00e9bec et du Canada.", "site_name": "Coop Alentour - Notre \u00e9picerie sant\u00e9"}
\ No newline at end of file
added data/enrich_cache/coopcaus.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coopcaus.org", "logo_url": "https://coopcaus.org/favicon.ico", "cover_url": "https://coopcaus.org/wp-content/uploads/2022/06/CAUS-farmer-Marc-Robidoux.jpg", "description_meta": "Acheter, cuisiner et cultiver localement gr\u00e2ce \u00e0 la Coop\u00e9rative de solidarit\u00e9 Abondance Urbaine Solidaire (CAUS) de Montr\u00e9al .", "site_name": "Multi-CAUS"}
\ No newline at end of file
added data/enrich_cache/coopdegallix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coopdegallix.ca", "logo_url": "https://coopdegallix.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/coopdesstokois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coopdesstokois.com", "logo_url": "https://coopdesstokois.com/wp-content/uploads/2020/07/cropped-favicon.png", "cover_url": "https://coopdesstokois.com/wp-content/uploads/2021/05/basil.png", "description_meta": "D\u00e9couvrez les 4 grands axes de d\u00e9veloppement du projet: L\u2019objectif de notre COOP, c\u2019est de rassembler sous un projet commun, tous les citoyens de notre municipalit\u00e9. En devenant membre, vous soutenez le projet de coop, vous encouragez le d\u00e9veloppement \u00e9conomique de Stoke et vous profiterez de rabais lorsque le projet sera op\u00e9rationnel! 529 MEMBRES La [&hellip;]", "site_name": "Coop des Stokois"}
\ No newline at end of file
added data/enrich_cache/cooperativeplacedumarche.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cooperativeplacedumarche.com", "logo_url": "https://www.cooperativeplacedumarche.com/wp-content/uploads/2021/08/logo-white.svg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/coopfb.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coopfb.com", "logo_url": "https://www.coopfb.com/site/themes/coop-ferland-boilleau/assets/favicon/apple-touch-icon.png", "cover_url": "https://www.coopfb.com/medias/2019/11/og-preview.jpg", "description_meta": "\u00c0 travers son souci de participer au d\u00e9veloppement \u00e9conomique du milieu via la cr\u00e9ation d\u2019emplois, La Coop\u00e9rative foresti\u00e8re Ferland-Boileau oeuvre dans l\u2019am\u00e9nagement forestier et la transformation de mati\u00e8res ligneuses.", "site_name": "Coop\u00e9rative foresti\u00e8re Ferland-Boilleau"}
\ No newline at end of file
added data/enrich_cache/coopgaia.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coopgaia.ca", "logo_url": "https://static.wixstatic.com/media/f034d9_ffb4380355ed4af58398c1d2ceb2f84a.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/f034d9_ffb4380355ed4af58398c1d2ceb2f84a.jpg", "cover_url": "https://static.wixstatic.com/media/f034d9_8496dc51a1ce4b74834edcf609b4fd1c.jpg/v1/fit/w_2500,h_1330,al_c/f034d9_8496dc51a1ce4b74834edcf609b4fd1c.jpg", "description_meta": "Situ\u00e9e dans la Manicouagan, la Coop Ga\u00efa produit des aliments sains pour ses membres consommateurs et distribue les produits de ses membres producteurs.", "site_name": "gaia"}
\ No newline at end of file
added data/enrich_cache/cooplackeno.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cooplackeno.ca", "logo_url": "https://www.cooplackeno.ca/favicon.ico", "cover_url": "https://www.cooplackeno.ca/wp-content/uploads/2017/04/logoCoop-01.png", "description_meta": "ESSENCE ALIMENTATION et beaucoup plus 5251 Chemin du Quai, Lac K\u00e9nogami (Saguenay), Qu\u00e9bec, Canada G7X7V6 Horaire Lundi au vendredi: 06 h 00 - 22 h 00 Samedi-Dimanche: 07 h 00 - 22 h 00 Produits et services de choix \u00e0 proximit\u00e9 ! 418-542-0183 Situ\u00e9 sur le chemin principal de l\u2019arrondissement Directement sur la V\u00e9loroute le Horst de", "site_name": "Coop\u00e9rative de Solidarit\u00e9 du Lac Kenogami"}
\ No newline at end of file
added data/enrich_cache/cooplamanne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cooplamanne.com", "logo_url": "https://www.cooplamanne.com/wp-content/themes/lamanne/favicons/android-icon-192x192.png", "cover_url": null, "description_meta": "Magasinez notre grande s\u00e9lection de produits naturels et biologiques. Que ce soit pour l\u2019entretien m\u00e9nager, les soins corporels, la sant\u00e9 familiale, l\u2019alimentation, etc., vous serez servis!", "site_name": "La Manne \u2013 L\u2019\u00e9picerie sant\u00e9"}
\ No newline at end of file
added data/enrich_cache/coqtail.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coqtail.ca", "logo_url": "https://coqtail.ca/cdn/shop/files/Logo_-_Favicon_1.png?crop=center&height=32&v=1746730841&width=32", "cover_url": "http://coqtail.ca/cdn/shop/files/Black_Logo_final_9be23c5f-f95d-48d5-8807-a865e0004262.png?v=1748833034", "description_meta": "Pour un \u00e9v\u00e9nement corporatif, un mariage, une f\u00eate priv\u00e9e ou un 5 \u00e0 7, notre service de bar \u00e0 COQ\u2019TAIL cl\u00e9 en main s&#39;adapte \u00e0 vos besoins et \u00e0 l&#39;ambiance recherch\u00e9e.", "site_name": "COQ\u2019TAIL Mixologie"}
\ No newline at end of file
added data/enrich_cache/coraliehuckel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coraliehuckel.com", "logo_url": "https://coraliehuckel.com/cdn/shop/files/logo-website.png?crop=center&height=32&v=1698233506&width=32", "cover_url": "http://coraliehuckel.com/cdn/shop/files/Coralie_Huckel_site_sept2025_carre_Genevieve_Lesieur-51.jpg?v=1757901287", "description_meta": "Coralie Huckel C\u00e9ramiste dont l&#39;atelier est situ\u00e9 \u00e0 Waterloo J0E 2N0. Membre professionnelle du CMAQ", "site_name": "Coralie Huckel - C\u00e9ramiste (Huckel &amp; Fidalgo Inc.)"}
\ No newline at end of file
added data/enrich_cache/corposaintdamien.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "corposaintdamien.com", "logo_url": "https://static.wixstatic.com/media/c0622e_e2cfbbf6253848519f143ac943a59280%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/c0622e_e2cfbbf6253848519f143ac943a59280%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cosmolyo.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cosmolyo.ca", "logo_url": "https://cosmolyo.ca/images/favicon.png", "cover_url": "https://cosmolyo.ca/images/preview.jpg", "description_meta": "Cosmo Lyo: des collations lyophilis\u00e9es saines, locales et savoureuses!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/costumedebain.fun.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "costumedebain.fun", "logo_url": "https://costumedebain.fun/cdn/shop/files/fav_32x32.png?v=1613641277", "cover_url": "https://cdn.shopify.com/s/files/1/0044/8420/2611/files/logos_inta.png?v=1772809595", "description_meta": "Discover unique and artistic shower curtains created by talented artists in Montreal. Elevate your bathroom decor with captivating designs, vivid colors, and creative expressions. Explore the perfect blend of art and functionality in these one-of-a-kind pieces. \ud83c\udfa8\ud83d\udebf #MontrealArtists #ShowerCurtains #BathroomDecor", "site_name": "Costume de bain"}
\ No newline at end of file
added data/enrich_cache/coteajoly.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coteajoly.com", "logo_url": "https://coteajoly.com/owebo-votresite/sites/default/files/images/logo_noir_et_blanc3.jpg", "cover_url": null, "description_meta": "Accueil", "site_name": null}
\ No newline at end of file
added data/enrich_cache/coteau-st-paul.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coteau-st-paul.com", "logo_url": "http://www.coteau-st-paul.com/favicon.png", "cover_url": "https://www.coteau-st-paul.com/images/coteau-thumb.jpg", "description_meta": "Un vignoble accueillant \u00e0 St-Paul d\u2019Abbotsford qui vit une v\u00e9ritable passion pour les vins et vous offre le r\u00e9sultat de ses ann\u00e9es de labeur c\u2019est Vignoble Coteau-St-Paul.", "site_name": "Vignoble Coteau-St-Paul"}
\ No newline at end of file
added data/enrich_cache/coteau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coteau.ca", "logo_url": "https://www.coteau.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/coteaurougemont.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coteaurougemont.ca", "logo_url": "https://www.coteaurougemont.ca/cdn/shop/files/FavIcon_CR_32x32.png?v=1613792782", "cover_url": "http://www.coteaurougemont.ca/cdn/shop/files/evenement-sportif-coteau-rougemont_1200x1200.jpg?v=1780940132", "description_meta": "D\u00e9couvrez la s\u00e9lection de vins et de cidres qu\u00e9b\u00e9cois du Coteau Rougemont et vivez l\u2019exp\u00e9rience de d\u00e9gustations sur place, dans un vignoble enchanteur nich\u00e9 \u00e0 flanc de montagne.", "site_name": "Coteau Rougemont"}
\ No newline at end of file
added data/enrich_cache/cotedessaints.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cotedessaints.com", "logo_url": "https://www.cotedessaints.com/wp-content/uploads/2022/02/cropped-CDS-icon-180x180.png", "cover_url": "https://www.cotedessaints.com/wp-content/themes/craft-beer-nation/images/Barrel.svg", "description_meta": "Distillerie de whisky, Gin et Liqueur localis\u00e9e dans une zone agricole au sols de qualit\u00e9 permettant la production des meilleurs spiritueux.", "site_name": "C\u00f4te des saints"}
\ No newline at end of file
added data/enrich_cache/cotesdugavet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cotesdugavet.com", "logo_url": "https://cotesdugavet.com/wp-content/uploads/2024/10/CoteduGavet-favicon.png", "cover_url": "https://cotesdugavet.com/wp-content/uploads/2024/10/2B8A7115-3-1024x683.jpg", "description_meta": "D\u00e9couvrez le Vignoble les C\u00f4tes du Gavet \u00e0 Tingwick pr\u00e8s de Victoriaville : vins du Qu\u00e9bec, d\u00e9gustations, soir\u00e9es pizza et \u00e9v\u00e9nements", "site_name": "Vignoble C\u00f4tes du Gavet"}
\ No newline at end of file
added data/enrich_cache/cotoncorail.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cotoncorail.com", "logo_url": "https://cotoncorail.com/cdn/shop/files/Illustrations-bougie_Recharge_bleu_87948c98-400e-4543-a732-dcf7d1b73742.png?crop=center&height=32&v=1678386226&width=32", "cover_url": "http://cotoncorail.com/cdn/shop/files/Coton_Corail-Vertical_Blue_b30d525e-11eb-42f3-bf62-e5302c660cfd.png?v=1716563194", "description_meta": "Bougies artisanales rechargeables. Fait main au Qu\u00e9bec. Cire de coco, sans toxines, m\u00e8ches cr\u00e9pitantes, parfums raffin\u00e9s. Fait \u00e0 Montr\u00e9al. Transforme ton espace en refuge chaleureux et \u00e9coresponsable \u2013 Livraison rapide partout au Qu\u00e9bec.", "site_name": "Coton Corail"}
\ No newline at end of file
added data/enrich_cache/couchepagane.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "couchepagane.com", "logo_url": "https://couchepagane.com/wp-content/uploads/2018/07/cropped-image1.jpg?w=180", "cover_url": "https://couchepagane.com/wp-content/uploads/2018/07/logovignoblecouchepaganecopie.jpg", "description_meta": "Un vin \u00e0 Saveur Bor\u00e9ale", "site_name": "Vignoble Couchepagane"}
\ No newline at end of file
added data/enrich_cache/coulee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coulee.ca", "logo_url": "https://coulee.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "\u00c9rabli\u00e8re la Petite Coul\u00e9e"}
\ No newline at end of file
added data/enrich_cache/couleurchocolat.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "couleurchocolat.ca", "logo_url": "https://www.couleurchocolat.ca/cdn/shop/files/40def8270785562d5419c6ba586093ce05f8c03d.png?crop=center&height=32&v=1757542845&width=32", "cover_url": "http://www.couleurchocolat.ca/cdn/shop/files/CouleurChocolat_couverture_1838_x_700.jpg?v=1752254328", "description_meta": "Artisans chocolatiers, Carl Pelletier \u2013 et fille \u2013 proposent des chocolats fins inspir\u00e9s du paysage gasp\u00e9sien, pour exalter vos papilles.", "site_name": "Couleur Chocolat"}
\ No newline at end of file
added data/enrich_cache/coureusedesgreves.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coureusedesgreves.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/courgescie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "courgescie.com", "logo_url": "https://courgescie.com/wp-content/uploads/2024/05/cropped-Favicon-180x180.png", "cover_url": "https://courgescie.com/wp-content/uploads/2024/05/Publication-Facebook.jpg", "description_meta": "D\u00e9couvrez Courges &amp; Cie, votre r\u00e9f\u00e9rence pour les courges et produits locaux de qualit\u00e9.", "site_name": "Courges &amp; cie"}
\ No newline at end of file
added data/enrich_cache/courtierinnovasens.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "courtierinnovasens.ca", "logo_url": "https://courtierinnovasens.ca/wp-content/uploads/2025/02/cropped-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/coussinsetc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coussinsetc.com", "logo_url": "https://coussinsetc.com/cdn/shop/files/icon_coussinsetc.jpg?v=1671204751&width=180", "cover_url": "http://coussinsetc.com/cdn/shop/files/coussins_etc-coussin-allaitement_f54674cc-8055-4bcb-8efa-ceefc961e814.jpg?v=1732304312", "description_meta": "Cushion etc. is an essential tool for the whole family: it can be used throughout pregnancy, during childbirth, in the postnatal period, for yoga and for all activities that require additional support. Discover our pillows and our multifunctional products.", "site_name": "Coussins etc"}
\ No newline at end of file
added data/enrich_cache/couteauxdeva.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "couteauxdeva.com", "logo_url": "https://couteauxdeva.com/workspace/uploads/cropped-Favicon-DEVA-512x512_Plan-de-travail-1-1-180x180.png", "cover_url": "https://couteauxdeva.com/workspace/uploads/Couteauxdeva-siteweb-1200x675-1.png", "description_meta": "Artisan coutelier, Dave Fortin r\u00e9alise des pi\u00e8ces uniques, couteaux et outils sp\u00e9cialis\u00e9s, dans son atelier du quartier Saint-Jean-Baptiste de Qu\u00e9bec.", "site_name": "Couteaux Deva"}
\ No newline at end of file
added data/enrich_cache/couteauxkaizenknives.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "couteauxkaizenknives.com", "logo_url": "https://static.wixstatic.com/media/3a1fce_f1d91ba36b5945f5b0ce1182766f2495%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/3a1fce_f1d91ba36b5945f5b0ce1182766f2495%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/couteauxma.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "couteauxma.com", "logo_url": "https://static.wixstatic.com/media/cf957c_2eb0728c23b3467c9880540277f49445%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/cf957c_2eb0728c23b3467c9880540277f49445%7Emv2.jpg", "cover_url": null, "description_meta": "Couteaux M\u00c0 est une entreprise de coutellerie artisanale qui se sp\u00e9cialise dans la fabrication de couteaux de cuisine sur mesure. Situ\u00e9e dans le quartier Villeray \u00e0 Montr\u00e9al, nous cr\u00e9ons des couteaux durables et originaux.", "site_name": "M\u00c0 2023"}
\ No newline at end of file
added data/enrich_cache/coutellerienomade.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "coutellerienomade.com", "logo_url": "https://static.wixstatic.com/media/eaad16_7c5fe1112d7d4602ac7463bd4ca60fce%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/eaad16_7c5fe1112d7d4602ac7463bd4ca60fce%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/eaad16_7c5fe1112d7d4602ac7463bd4ca60fce~mv2.png/v1/fill/w_2500,h_1406,al_c/eaad16_7c5fe1112d7d4602ac7463bd4ca60fce~mv2.png", "description_meta": "Les couteaux de la Coutellerie Nomade se situant \u00e0 la crois\u00e9e des chemins entre l\u2019\u0153uvre d\u2019art et l\u2019outil de tous les jours, plusieurs ann\u00e9es de recherche et d\u2019exp\u00e9rimentation, ainsi que de tests avec la collaboration de Grands-Chefs r\u00e9gionaux, ont \u00e9t\u00e9 n\u00e9cessaires pour parvenir \u00e0 cet Un alliage entre gr\u00e2ce, l\u2019ergonomie, et la qualit\u00e9 sup\u00e9rieure, qui rendent les \u0153uvres de la Coutellerie Nomade uniqu", "site_name": "Coutellerie Nomade"}
\ No newline at end of file
added data/enrich_cache/couvoirchicoutimi.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "couvoirchicoutimi.com", "logo_url": "https://www.couvoirchicoutimi.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/622697ffa69a5e2111041ace/t/62654d52e033053b421fb00f/1650806098638/logo+couvoir+final.png?format=1500w", "description_meta": "D\u00e9couvrez le Couvoir de Chicoutimi, sp\u00e9cialiste en vente de volailles vari\u00e9es et \u00e9quipements pour \u00e9levage en toute confiance depuis 1981. Conseils et service personnalis\u00e9.", "site_name": "Couvoir de Chicoutimi"}
\ No newline at end of file
added data/enrich_cache/cpealouette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cpealouette.com", "logo_url": "https://cpealouette.com/favicon/android-icon-192x192.png", "cover_url": null, "description_meta": "Le Centre de la petite enfance Alouette offre ses services \u00e0 plusieurs familles militaires pour devenir en cours de route, un CPE en milieu de travail d\u00e9di\u00e9 exclusivement au personnel de la BFC de Bagotville.", "site_name": "CPE Alouette"}
\ No newline at end of file
added data/enrich_cache/cpeauxpetitesjoies.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cpeauxpetitesjoies.com", "logo_url": "https://cpeauxpetitesjoies.com/wp-content/uploads/2018/04/cropped-favicon-4-180x180.png", "cover_url": null, "description_meta": "Le CPE Aux Petites Joies, est un service de garde subventionn\u00e9 situ\u00e9 au 290 du S\u00e9minaire \u00e0 Chicoutimi ayant 62 places au permis et accueillant des enfants \u00e2g\u00e9s entre 18 mois et 5 ans, distribu\u00e9s dans 7 groupes.", "site_name": "CPE aux Petites Joies"}
\ No newline at end of file
added data/enrich_cache/cpebcdeslutins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cpebcdeslutins.com", "logo_url": "https://static.wixstatic.com/media/5854ff_1a6d0926bccb4adabde668b582f20923%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5854ff_1a6d0926bccb4adabde668b582f20923%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cpejardinensante.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cpejardinensante.ca", "logo_url": "https://cpejardinensante.ca/wp-content/uploads/2018/10/favicon_180-1.png", "cover_url": null, "description_meta": "Le Centre de la Petite Enfance (CPE) le Jardin Ensant\u00e9 de Jonqui\u00e8re, offre aux enfants un milieu de vie s\u00e9curitaire et chaleureux offrant des soins d&#039;hygi\u00e8ne de qualit\u00e9, de repos et d&#039;alimentation ainsi qu&#039;un programme \u00e9ducatif adapt\u00e9s \u00e0 leur \u00e2ges et leurs besoins.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cpelabambinerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cpelabambinerie.com", "logo_url": "https://cpelabambinerie.com/app/uploads/2024/02/cropped-favicon-cpe-bambinerie-1-180x180.png", "cover_url": "https://cpelabambinerie.com/app/uploads/2024/06/share-image.png", "description_meta": null, "site_name": "La Bambinerie"}
\ No newline at end of file
added data/enrich_cache/cpelacajolerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cpelacajolerie.com", "logo_url": "https://cpecailloux.com/wp-content/uploads/2024/03/cropped-apple-touch-icon-180x180.png", "cover_url": null, "description_meta": "Le centre de la petite enfance (CPE) Les Trottineurs est un service de garde en milieu de travail pour les personnes travaillant pour le CIUSSS Saguenay-Lac-Saint-Jean, installations Chicoutimi", "site_name": null}
\ No newline at end of file
added data/enrich_cache/craler.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "craler.com", "logo_url": "https://craler.com/wp-content/uploads/2021/03/cropped-craler-favicon-180x180.jpg", "cover_url": "https://craler.com/wp-content/uploads/2021/03/cropped-craler-favicon.jpg", "description_meta": "Notre offrons une gamme compl\u00e8te de services pour assurer le transport, l\u2019entreposage et la distribution optimale de vos produits.", "site_name": "Craler Logistics"}
\ No newline at end of file
added data/enrich_cache/cratereetmarees.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cratereetmarees.ca", "logo_url": "https://cratereetmarees.ca/assets/favicons/apple-touch-icon-1024x1024.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/crea-pierre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "crea-pierre.com", "logo_url": "https://s2.wp.com/i/webclip.png?m=1713868326i", "cover_url": "https://s0.wp.com/i/blank.jpg?m=1383295312i", "description_meta": "Taille de pierre, restauration patrimoniale, sculpture", "site_name": "cr\u00e9a-pierre"}
\ No newline at end of file
added data/enrich_cache/createursdesaveursetcie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "createursdesaveursetcie.com", "logo_url": "https://www.createursdesaveursetcie.com/icon-iphone.png", "cover_url": null, "description_meta": "Cr\u00e9ateurs de Saveurs & Cie transforme et distribue quatre d\u00e9licieuses lignes de fins produits gourmets au Qu\u00e9bec : Miel Morand, Les Caprices d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/creationsdancelia.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creationsdancelia.ca", "logo_url": "https://creationsdancelia.ca/cdn/shop/files/8_1.jpg?crop=center&height=32&v=1738276754&width=32", "cover_url": "http://creationsdancelia.ca/cdn/shop/files/Outlook-ruwjemtg.png?height=628&pad_color=ffffff&v=1741797564&width=1200", "description_meta": "Bijoux uniques floraux, cr\u00e9ations de bijoux , cr\u00e9ations uniques floraux, Bijoux Saguenay uniques, entreprise de bijoux local, bijoux fabriquer au Qu\u00e9bec, Bijoux floraux Saguenay, Bijoux uniques au canada, Boutique en ligne de bijoux uniques floraux, Bague uniques, pendentif floral ,Bracelet floral, boucles d&#39;oreilles.", "site_name": "Creations DanceliA"}
\ No newline at end of file
added data/enrich_cache/creationsladentsucree.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creationsladentsucree.com", "logo_url": "https://img1.wsimg.com/isteam/ip/4985dfb0-6c87-4e9e-8c81-72acc4b27b40/Red%20and%20Pink%20Modern%20Cupcake%20Bakery%20Logo%20(2).png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/4985dfb0-6c87-4e9e-8c81-72acc4b27b40/entete%20google%20form%20bento%20seul.jpg", "description_meta": "Au plaisir de cr\u00e9er pour vous; g\u00e2teau et cupcakes th\u00e9matiques et personnalis\u00e9s, ainsi que table sucr\u00e9e et gourmandises pour vos \u00e9v\u00e9nements corporatifs!", "site_name": "Cr\u00e9ations La Dent Sucr\u00e9e"}
\ No newline at end of file
added data/enrich_cache/creationslalouve.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creationslalouve.com", "logo_url": "https://creationslalouve.com/cdn/shop/files/Logo_32x32.png?v=1614402982", "cover_url": "http://creationslalouve.com/cdn/shop/files/Creations_La_Louve_3_d2a58556-0cc3-486c-828d-e6a372c6d898_1200x1200.png?v=1705461050", "description_meta": "Boutique web am\u00e9rindienne autochtone d&#39;objets uniques et de qualit\u00e9 faits \u00e0 la main par une artisane artiste Huronne-Wendat. Vaste s\u00e9lection de bijoux, cadeaux, cartes de souhaits, objets d\u00e9coratifs, spirituels, marque-pages, porte-cl\u00e9s, etc.", "site_name": "Cr\u00e9ations La Louve"}
\ No newline at end of file
added data/enrich_cache/creationsmoutonnoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creationsmoutonnoir.com", "logo_url": "https://images.panierdachat.app/1132/VS49CIgF_5dae449b69900.png?w=32&amp;h=32&amp;fit=max", "cover_url": "https://images.panierdachat.app/1132/MkQXjbTy_logo-fond-blanc.png?w=1200&h=630&fit=fill", "description_meta": "La petite ferme du mouton noir une jolie boutique \u00e0 Montr\u00e9al de v\u00eatements pour b\u00e9b\u00e9s et enfants fait au Qu\u00e9bec et ailleurs, pantalons \u00e9volutifs et cadeaux pour futurs parents. Commandez en ligne!", "site_name": "La petite ferme du mouton noir"}
\ No newline at end of file
added data/enrich_cache/creationsodie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creationsodie.com", "logo_url": "https://creationsodie.com/cdn/shop/files/LOGOCREATIONSODIE_921d3768-358d-412d-bdf6-a6546d8e3505.png?crop=center&height=32&v=1630577188&width=32", "cover_url": "http://creationsodie.com/cdn/shop/files/LOGOCREATIONSODIE_6d87b106-91eb-42b3-bfb4-f0907a703ab7.png?v=1612446957", "description_meta": "Portraits aquarelle personnalis\u00e9s de famille et d&#39;animaux, \u00e9chelles de croissance illustr\u00e9es, gourdes et id\u00e9es cadeaux pour naissance et pour tous. Cr\u00e9ations originales, peintes et fabriqu\u00e9es \u00e0 la main au Qu\u00e9bec par Odette, alias Odie.", "site_name": "Cr\u00e9ations Odie"}
\ No newline at end of file
added data/enrich_cache/creationszonta.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creationszonta.ca", "logo_url": "https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=180,h=180,fit=crop,f=png/xvTGBv07gUqqdXJn/logositewbe-uIZwlEDudGloaTNs.png", "cover_url": "https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1440,h=756,fit=crop,f=jpeg/xvTGBv07gUqqdXJn/logositewbe-uIZwlEDudGloaTNs.png", "description_meta": "Cr\u00c3\u00a9ations Zonta propose des bijoux artisanaux faits \u00c3\u00a0 la main, mettant de l&#39;avant l&#39;authenticit\u00c3\u00a9 et la beaut\u00c3\u00a9 des pierres semi-pr\u00c3\u00a9cieuses, \u00c3\u00a0 travers des bijoux de cr\u00c3\u00a9ations uniques et \u00c3\u00a9l\u00c3\u00a9gants. Produits fabriqu\u00c3\u00a9s au Qu\u00c3\u00a9bec", "site_name": "Cr\u00c3\u00a9ations Zonta"}
\ No newline at end of file
added data/enrich_cache/creatival.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creatival.ca", "logo_url": "https://www.creatival.ca/cdn/shop/files/CreatiVal_Icone_C-Vert_Pale.png?crop=center&height=180&v=1771530891&width=180", "cover_url": null, "description_meta": "D\u00e9couvre nos bijoux en argent sterling .925 et en acier inoxydable r\u00e9sistants \u00e0 l&#39;eau!", "site_name": "CreatiVal"}
\ No newline at end of file
added data/enrich_cache/creativecommons.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creativecommons.org", "logo_url": "https://creativecommons.org/wp-content/themes/vocabulary-theme/vocabulary/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": "Creative Commons"}
\ No newline at end of file
added data/enrich_cache/creezdesliens.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creezdesliens.com", "logo_url": "https://www.creezdesliens.com/wp-content/uploads/2023/05/cropped-icon-180x180.png", "cover_url": "https://www.creezdesliens.com/wp-content/uploads/2023/08/Chambre-Commerce-de-Charlevoix-RS1.jpg", "description_meta": "Accueil - Chambre de commerce de Charlevoix Une COMMUNAUT\u00c9 DE GENS D\u2019AFFAIRES DYNAMIQUES, ENGAG\u00c9S ET SOLIDAIRES", "site_name": "Chambre de commerce de Charlevoix"}
\ No newline at end of file
added data/enrich_cache/cremedefolies.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cremedefolies.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/641377d09b485d5471a050a2/a40963a2-fb46-45b6-bca5-cbdd16531fc9/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/641377d09b485d5471a050a2/t/67d3457713cf8634130b11d4/1741899127266/Logo_CremeDeFolies_1.png?format=1500w", "description_meta": "Chez Cr\u00e8me de Folies, p\u00e2tisserie \u00e0 L\u00e9vis, d\u00e9gustez de d\u00e9licieuses bouch\u00e9es sucr\u00e9es et commandez vos p\u00e2tisseries sur mesure ! Ses g\u00e2teaux g\u00e9n\u00e9reux et gourmands et ses p\u00e2tisseries artisanales marqueront tous vos \u00e9v\u00e9nements festifs.", "site_name": "Cr\u00e8me de folies"}
\ No newline at end of file
added data/enrich_cache/creperiechezswann.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creperiechezswann.com", "logo_url": "https://creperiechezswann.com/s/swann/themes/favicon.svg", "cover_url": "https://creperiechezswann.com/s/swann/ss/fb_share.jpg", "description_meta": "Cr\u00eaperie bretonne authentique et microbrasserie au c\u0153ur du magnifique village de Saint-Antoine-de-Tilly. Venez d\u00e9couvrir nos sp\u00e9cialit\u00e9s savoureuses.", "site_name": "swann"}
\ No newline at end of file
added data/enrich_cache/creperiedumarche.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "creperiedumarche.com", "logo_url": "https://creperiedumarche.com/wp-content/uploads/2025/02/favicon_cdm-300x300.png", "cover_url": "https://creperiedumarche.com/wp-content/uploads/2025/06/Creperie-du-marche.jpg", "description_meta": "Cr\u00eapes et galettes naturellement sans gluten ! D\u00e9couvrez nos recettes audacieuses, pr\u00e9par\u00e9es avec des ingr\u00e9dients locaux et bios. Un plaisir sans compromis ni fronti\u00e8res de saveurs", "site_name": "Cr\u00eaperie Du March\u00e9 | Naturellement SANS GLUTEN | March\u00e9 Jean-Talon, Montr\u00e9al"}
\ No newline at end of file
added data/enrich_cache/crescendocable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "crescendocable.com", "logo_url": "https://crescendocable.com/wp-content/uploads/2022/11/favicon-57.png", "cover_url": null, "description_meta": "Chaque c\u00e2ble est fait \u00e0 la main dans la plus grande minutie. Ce soin du d\u00e9tail nous permet d&#039;avoir une qualit\u00e9 sonore hors du commun.", "site_name": "C\u00e2ble Crescendo"}
\ No newline at end of file
added data/enrich_cache/crevettedunordatlantique.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "crevettedunordatlantique.ca", "logo_url": "https://crevettedunordatlantique.ca/wp-content/uploads/2025/11/favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cristaldulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cristaldulac.com", "logo_url": "https://cristaldulac.com/cdn/shop/files/logofinal_f99569ca-ea4e-42e3-8b3a-af71073e2c41_32x32.png?v=1613516544", "cover_url": null, "description_meta": "Explorez des activit\u00e9s min\u00e9ralogiques uniques au Saguenay-Lac-St-Jean. Venez d\u00e9couvrir la prospection de cristaux et vivre une exp\u00e9rience touristique id\u00e9ale pour les familles, couples et groupes.", "site_name": "Cristal du Lac"}
\ No newline at end of file
added data/enrich_cache/crochetmilie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "crochetmilie.com", "logo_url": "https://crochetmilie.com/cdn/shop/files/logo_simple_crochetmilie.jpg?crop=center&height=32&v=1762524200&width=32", "cover_url": "http://crochetmilie.com/cdn/shop/files/Creation_sans_titre_18_3746b1df-6687-47c3-b9d8-5dc0da4b90fc.png?v=1726197019", "description_meta": "Apprenez comment crocheter dans le confort de votre foyer. Inspirez-vous avec mes patrons au crochet modernes et rapides!", "site_name": "Crochetmilie"}
\ No newline at end of file
added data/enrich_cache/croisieresaml.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "croisieresaml.com", "logo_url": "https://www.croisieresaml.com/favicon.ico", "cover_url": "https://www.croisieresaml.com/media/tk5jcwtu/_a9a8579.jpg", "description_meta": "Partez en croisi&#xE8;re aux baleines &#xE0; Tadoussac ou profitez d&#x2019;une croisi&#xE8;re guid&#xE9;e et d&#x2019;un souper-croisi&#xE8;re &#xE0; Montr&#xE9;al et Qu&#xE9;bec. Une exp&#xE9;rience inoubliable!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/croque-saisons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "croque-saisons.com", "logo_url": "https://static.wixstatic.com/media/13a46d_7b8f23ba3694486aa04ae50698670fd4%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/13a46d_7b8f23ba3694486aa04ae50698670fd4%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/croquenoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "croquenoix.ca", "logo_url": "https://croquenoix.ca/wp-content/uploads/2024/11/logo400-e1738263718115.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/crousset.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "crousset.com", "logo_url": "https://crousset.com/favicon.ico", "cover_url": "https://crousset.com/wp-content/uploads/2024/02/og-image.jpg", "description_meta": "D\u00e9couvrez les \u00c9pices Crousset, des \u00e9pices et des m\u00e9langes d\u2019\u00e9pices d\u2019une qualit\u00e9 exceptionnelle. Go\u00fbtez la diff\u00e9rence !", "site_name": "\u00c9pices Crousset"}
\ No newline at end of file
added data/enrich_cache/crudabeille.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "crudabeille.ca", "logo_url": "https://crudabeille.ca/wp-content/uploads/2023/03/Sans-titre-17.png", "cover_url": null, "description_meta": "Dans l&rsquo;oeil du dragonNos boissons pur miel ont s\u00e9duit les dragons!D\u00e9couvre nos produits\u00c0 travers le Qu\u00e9becDe Gatineau \u00e0 Rimouski, en passant par L\u00e9vis, Qu\u00e9bec et le SaguenayPoints de venteMarchandise Cru d&rsquo;AbeillePour soutenir une entreprise d&rsquo;iciVoir la boutique Diapositive pr\u00e9c\u00e9dente Diapositive suivante Boissons pur miel HYDROMELS R\u00c9INVENT\u00c9S+ COCKTAILS APICOLES L\u00c9GERS \u01c0 P\u00c9TILL", "site_name": "Cru d\u2019Abeille"}
\ No newline at end of file
added data/enrich_cache/crunature.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "crunature.com", "logo_url": "https://crunature.com/cdn/shop/files/755130294_18080397593290312_7279666997541655843_n.jpg?crop=center&height=32&v=1785081824&width=32", "cover_url": "http://crunature.com/cdn/shop/files/Beurres_de_noix_cru_nature.webp?v=1785167758", "description_meta": "Cru Nature (anciennement Ah! Tout Cru dans le Bec) fabrique des beurres de noix et graines crues, bio, moulus sur pierre au Qu\u00e9bec. Sans sucre, sans gluten, sans agent de conservation.", "site_name": "Cru Nature"}
\ No newline at end of file
added data/enrich_cache/cuisinedudomaine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cuisinedudomaine.com", "logo_url": "https://cuisinedudomaine.com/cdn/shop/files/favicon-cuisine-du-domaine.png?crop=center&height=32&v=1753206670&width=32", "cover_url": "http://cuisinedudomaine.com/cdn/shop/files/logoecusson_2b7422c4-6f1d-4354-9334-d9cbbd510157.jpg?v=1708369258", "description_meta": "D&#39;La Vraie Bonne Bouffe !", "site_name": "Cuisine du Domaine"}
\ No newline at end of file
added data/enrich_cache/cuisinelangelique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cuisinelangelique.com", "logo_url": "https://www.cuisinelangelique.com/favicon.png", "cover_url": null, "description_meta": "\ud83d\ude9a Livraison de Farines Sans Gluten ni Produits Laitiers, Pains, M\u00e9langes et autres Produits de Boulangerie absolument d\u00e9liCIEUX! \u269c 100% Qu\u00e9b\u00e9cois", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cuisinesoleil.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cuisinesoleil.com", "logo_url": "https://cuisinesoleil.com/wp-content/uploads/2020/11/favicon-2.png", "cover_url": "https://cuisinesoleil.com/wp-content/uploads/2020/11/logo_entete-01.png", "description_meta": null, "site_name": "Cuisine Soleil"}
\ No newline at end of file
added data/enrich_cache/cuisinous.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cuisinous.ca", "logo_url": "https://cuisinous.ca/favicon.ico", "cover_url": "https://i0.wp.com/cuisinous.ca/wp-content/uploads/2026/01/cropped-cuisinousFichier-29webp-2.webp", "description_meta": "Cuisinous connecte les Qu\u00e9b\u00e9cois avec des cuisiniers locaux. Commandez des repas faits maison locaux, frais et abordables, pr\u00e8s de chez vous au Qu\u00e9bec.", "site_name": "CUISINOUS"}
\ No newline at end of file
added data/enrich_cache/cuitoucru.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cuitoucru.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Notre mission est de mettre en valeur les produits de B\u00e9cancour, Lotbini\u00e8re et du Centre-du-Qu\u00e9bec avec une cuisine cr\u00e9ative.", "site_name": "Resto Du Fleuve"}
\ No newline at end of file
added data/enrich_cache/cuitzinemoi.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cuitzinemoi.ca", "logo_url": "https://www.cuitzinemoi.ca/uploads/b/44c010d0-4c3b-11ea-ba64-b9b47df99081/icon_180x180_ios_ODM2OD.png?width=180", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cultures.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cultures.ca", "logo_url": "https://www.cultures.ca/apple-touch-icon-cdcn.png", "cover_url": "https://www.cultures.ca/~/og-image-fr.png", "description_meta": "Cuisinez les poireaux, asperges, courges et petits fruits avec nos recettes faciles. Profitez des astuces et des conseils d&#x2019;un producteur passionn&#xE9; d&#x2019;ici!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/culturessoleilrouge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "culturessoleilrouge.com", "logo_url": "https://www.culturessoleilrouge.com/favicon.ico", "cover_url": null, "description_meta": "Bienvenue chez les Cultures Soleil Rouge. Nous sommes une entreprise familiale sp\u00e9cialis\u00e9e dans les petits fruits : la framboise et la camerise, disponibles en \u00e9t\u00e9 en auto-cueillette et congel\u00e9es \u00e0 l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/culturestarnaud.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "culturestarnaud.ca", "logo_url": "https://culturestarnaud.ca/favicon.ico", "cover_url": null, "description_meta": "Culture de l\u00e9gumes biologiques, paniers de l\u00e9gumes et Kiosque \u00e0 la ferme, Kingsey Falls, Victoriaville, Warwick, Saint-\u00c9lizabeth-de-Warwick et la r\u00e9gion.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/cup-o.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cup-o.com", "logo_url": "https://static.wixstatic.com/media/6f5764_6806c00dc7d84fd595e7184fadc60d46%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/6f5764_6806c00dc7d84fd595e7184fadc60d46%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/cusimer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cusimer.com", "logo_url": "https://cusimer.com/wp-content/uploads/2023/06/cropped-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": "Cusimer"}
\ No newline at end of file
added data/enrich_cache/custombuzz.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "custombuzz.ca", "logo_url": "https://www.custombuzz.ca/wp-content/uploads/2020/05/custombuzzfavicon_bright_cropped.png", "cover_url": "https://www.custombuzz.ca/wp-content/uploads/2020/06/chandail__devant__personnaliser.png", "description_meta": "custom t shirts at your doorstep, best affordable custom T-shirt solution from custombuzz, Get yours now. We offer free shipping!", "site_name": "Custom Buzz"}
\ No newline at end of file
added data/enrich_cache/cvs.saguenay.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cvs.saguenay.ca", "logo_url": "https://cvs.saguenay.ca/wp-content/uploads/2024/04/icone-de-site.jpg", "cover_url": "https://cvs.saguenay.ca/wp-content/uploads/2016/07/default-fb.png", "description_meta": null, "site_name": "Portail des Centres-Villes de Saguenay"}
\ No newline at end of file
added data/enrich_cache/cyntaultcreations.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cyntaultcreations.com", "logo_url": "https://cyntaultcreations.com/favicon.ico", "cover_url": "http://cyntaultcreations.com/cdn/shop/files/Cyntault_Creations_Social_Media_Banner.png?v=1715142067", "description_meta": "Designer of costumes, accessories and mermaid fashion, specialized in silicone. Artisanal mermaid creations customizable to everyone, with a wide array of products available immediately.", "site_name": "cyntaultcreations"}
\ No newline at end of file
added data/enrich_cache/cyrildochecoutelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "cyrildochecoutelier.com", "logo_url": "https://cyrildochecoutelier.b-cdn.net/wp-content/uploads/2023/08/Cyril-Doche-favicon.png", "cover_url": "https://cyrildochecoutelier.b-cdn.net/wp-content/uploads/2023/08/Cyril-Doche-Coutelier-work-21.jpg", "description_meta": "Cyril Doche excelle dans la fabrication de couteaux d&#039;art enti\u00e8rement r\u00e9alis\u00e9s \u00e0 la main.", "site_name": "Cyril Doche Coutelier"}
\ No newline at end of file
added data/enrich_cache/d2o-go.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "d2o-go.com", "logo_url": "https://www.d2o-go.com/favicon.ico", "cover_url": "http://www.d2o-go.com/cdn/shop/files/Bloque_odeurs_parfaitement_discret.png?v=1751990336", "description_meta": "Two Supply - D2O, entreprise qu\u00e9b\u00e9coise, r\u00e9volutionne la gestion des odeurs de toilettes avec des produits anti-odeur efficaces, \u00e9cologiques et de qualit\u00e9. Formules naturelles, emballages recyclables et performances longue dur\u00e9e pour une salle de bain toujours fra\u00eeche.", "site_name": "Two Supply D2O"}
\ No newline at end of file
added data/enrich_cache/daaquam.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "daaquam.qc.ca", "logo_url": "https://daaquam.qc.ca/wp-content/uploads/2024/04/primary-logo-image-0-e1712011789459.png", "cover_url": "https://daaquam.qc.ca/wp-content/uploads/2024/04/vue-aerienne-ete.png", "description_meta": "Profitez d&#039;un s\u00e9jour en pleine nature. Situ\u00e9s en Chaudi\u00e8re-Appalaches, profitez de nos chalets, camping, piscine et activit\u00e9s de plein-air.", "site_name": "Chalets Villegiature Daaquam"}
\ No newline at end of file
added data/enrich_cache/daboomdesserts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "daboomdesserts.com", "logo_url": "https://daboomdesserts.com/wp-content/uploads/2021/12/favicon.png", "cover_url": "https://daboomdesserts.com/wp-content/uploads/2026/03/Banner2026B_crop.jpg", "description_meta": "Daboom Desserts aims to create artisanal, handcrafted, and memorable pleasures made with responsible choice ingredients.", "site_name": "Daboom Desserts"}
\ No newline at end of file
added data/enrich_cache/daigneau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "daigneau.ca", "logo_url": "https://daigneau.ca/cdn/shop/files/logo4_32x32.jpg?v=1649885875", "cover_url": "http://daigneau.ca/cdn/shop/files/logo4_1200x1200.jpg?v=1649885875", "description_meta": "Daigneau est une entreprise qu\u00e9b\u00e9coise sp\u00e9cialis\u00e9e dans la distribution d\u2019eau de source, d\u2019eau distill\u00e9e et d&#39;eau p\u00e9tillante. Nous desservons la grande r\u00e9gion de Montr\u00e9al et tout comme l\u2019eau de source, nous sommes transparents.", "site_name": "DAIGNEAU EAU DE SOURCE"}
\ No newline at end of file
added data/enrich_cache/daki.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "daki.com", "logo_url": "https://www.daki.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/damdrinks.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "damdrinks.com", "logo_url": "https://damdrinks.com/cdn/shop/files/LOGOS_HORIZONTAUX_BLEU.png?v=1740705552&width=32", "cover_url": "http://damdrinks.com/cdn/shop/files/LOGOS_HORIZONTAL_DAM_BLEU_1.png?v=1731940781", "description_meta": "At DAM we create plant-based milk bases - oat milk and almond milk Concentrated plant-based drinks have the advantage of being much more environmentally friendly and healthier.", "site_name": "damdrinks"}
\ No newline at end of file
added data/enrich_cache/damenature.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "damenature.ca", "logo_url": "https://damenature.ca/wp-content/uploads/2019/04/cropped-Serres_Plan-de-travail-1_Plan-de-travail-1-180x180.png", "cover_url": "https://damenature.ca/wp-content/uploads/2025/07/img-og.png", "description_meta": "Votre expert en jardinage et am\u00e9nagement paysager au Lac-Saint-Jean depuis 1974. D\u00e9couvrez nos plantes, services d&#039;entretien et cr\u00e9ez le jardin de vos r\u00eaves avec Serres Dame Nature.", "site_name": "Serres Dame Nature"}
\ No newline at end of file
added data/enrich_cache/damours.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "damours.ca", "logo_url": "https://damours.ca/wp-content/uploads/2017/11/cropped-favico-180x180.png", "cover_url": "https://damours.ca/wp-content/uploads/2017/09/temps-des-sucre-chariot-chevaux-min.jpg", "description_meta": "D\u00e9couvrez les saveurs authentiques des recettes de nos grands-m\u00e8res dans une ambiance chaleureuse inspir\u00e9e du folklore qu\u00e9b\u00e9cois.", "site_name": "D&#039;amours - Cabane \u00e0 sucre \u00e0 volont\u00e9, \u00e9rabli\u00e9re et salle de r\u00e9ception"}
\ No newline at end of file
added data/enrich_cache/danfumoirartisanal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "danfumoirartisanal.com", "logo_url": "https://danfumoirartisanal.com/wp-content/uploads/dan-fumoir-artisanal-300x300.png", "cover_url": "https://danfumoirartisanal.com/wp-content/uploads/logo-dan.png", "description_meta": "D\u00e9couvrez notre saumon fum\u00e9 \u00e0 froid. Explorez \u00e9galement notre gravlax, une sp\u00e9cialit\u00e9 scandinave r\u00e9alis\u00e9e selon une m\u00e9thode distinctive et unique.", "site_name": "Dan Fumoir Artisanal"}
\ No newline at end of file
added data/enrich_cache/danielmartineau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "danielmartineau.com", "logo_url": "https://danielmartineau.com/wp-content/uploads/2022/04/penguins-logo.svg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/daniro.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "daniro.ca", "logo_url": "https://daniro.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/danone.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "danone.ca", "logo_url": "https://danone.ca/favicon.ico", "cover_url": "https://danone.ca/content/dam/corp/local/noram/danone-canada/home/About-Us_2.png", "description_meta": "Through our brands and our service, Danone Canada proudly carries out our mission to bring health through food to as many people as possible.", "site_name": "Danone Canada"}
\ No newline at end of file
added data/enrich_cache/danslaprairie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "danslaprairie.ca", "logo_url": "https://danslaprairie.ca/wp-content/uploads/2020/03/cropped-favicon_dslaprairie-1-180x180.png", "cover_url": null, "description_meta": "D\u00e9couvre notre gamme de chandelles de soya qu\u00e9b\u00e9coises fabriqu\u00e9es \u00e0 la main. Un m\u00e9lange d\u2019\u00e9motions et de flashbacks qui r\u00e9chauffent l\u2019\u00e2me!", "site_name": "Dans la Prairie"}
\ No newline at end of file
added data/enrich_cache/danslesac.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "danslesac.co", "logo_url": "https://danslesac.co/cdn/shop/files/Logo_checkout_height_32x32.png?v=1661112650", "cover_url": "http://danslesac.co/cdn/shop/files/sac_a_couches_-_Alyssa-69_1.jpg?v=1728691337", "description_meta": "Dans le sac cr\u00e9\u00e9 des produits \u00e9cologiques et durables faits localement au Qu\u00e9bec. Des sacs fourre-tout de qualit\u00e9s, des sacs \u00e0 couches, des sac banane ainsi que des produits \u00e9cologiques pour la maison et le m\u00e9nage. Nos proposons des alternatives durables et \u00e9cologiques dans un style minimaliste.", "site_name": "Dans Le Sac"}
\ No newline at end of file
added data/enrich_cache/danslesbois.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "danslesbois.co", "logo_url": "https://danslesbois.co/cdn/shop/files/Stamps_-_Tags_dans_les_bois_-15_32x32.png?v=1647460273", "cover_url": "http://danslesbois.co/cdn/shop/files/Untitled_design_17.png?v=1646933174", "description_meta": "Eco Friendly, Natural Soy, Vegan. Every candle is hand poured from a durable, clean burning soy-based wax. Our handmade fragrances are made with natural ingredients. They will help lift your mood and create a relaxing atmosphere. Our soaps are made with simple ingredients, free of animal products.", "site_name": "Dans les Bois"}
\ No newline at end of file
added data/enrich_cache/darefoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "darefoods.com", "logo_url": "https://www.darefoods.com/wp-content/uploads/2021/07/cropped-Dare-Foods-Site-Icon-300x300.png", "cover_url": null, "description_meta": null, "site_name": "Dare Foods"}
\ No newline at end of file
added data/enrich_cache/data.world.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "data.world", "logo_url": "https://data.world/mstatic/assets/favicons/android-chrome-192x192.png", "cover_url": "https://data.world/", "description_meta": "Discover data and metadata in seconds and develop data products and analytics that drive your business.", "site_name": "data.world"}
\ No newline at end of file
added data/enrich_cache/david-tremblay.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "david-tremblay.ca", "logo_url": "https://david-tremblay.ca/favicon.ico", "cover_url": "https://david-tremblay.ca/wp-content/uploads/2022/08/David2012.jpg", "description_meta": "Je suis David Tremblay, consultant ind\u00e9pendant Immunotec depuis 2009. Je suis un autodidacte et un strat\u00e9giste en marketing num\u00e9rique.", "site_name": "David Tremblay"}
\ No newline at end of file
added data/enrich_cache/davidlumbroso.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "davidlumbroso.com", "logo_url": "http://davidlumbroso.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/de-lavoie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "de-lavoie.com", "logo_url": "http://de-lavoie.com/wp-content/uploads/2017/06/Favicon.jpg", "cover_url": null, "description_meta": "Le Domaine De Lavoie est reconnu pour la richesse de son savoir-faire. Situ\u00e9 en mont\u00e9r\u00e9gie sur le versant sud du mont Rougemont, le Domaine De Lavoie produit des vins et des cidres de grande qualit\u00e9 aux attraits uniques, faits \u00e0 partir de fruits cultiv\u00e9s ici, au Qu\u00e9bec.", "site_name": "Domaine de Lavoie"}
\ No newline at end of file
added data/enrich_cache/decimal.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "decimal.ca", "logo_url": "https://decimal.ca/favicon.ico", "cover_url": null, "description_meta": "DECIMAL aide les organisations \u00e0 am\u00e9liorer leur performance par des services et des solutions logicielles en budget, co\u00fbt de revient et tableaux de bord financiers", "site_name": null}
\ No newline at end of file
added data/enrich_cache/deco-rampe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "deco-rampe.com", "logo_url": "https://deco-rampe.com/wp-content/uploads/2018/04/cropped-favideco-180x180.jpg", "cover_url": "https://deco-rampe.com/wp-content/uploads/2021/05/sa.jpg", "description_meta": "D\u00e9co-Rampe offre des rampes et cl\u00f4tures ext\u00e9rieures en aluminium et verre tremp\u00e9 pour un style moderne, robuste et facile d\u2019entretien.", "site_name": "D\u00e9co-Rampe"}
\ No newline at end of file
added data/enrich_cache/delaferme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delaferme.com", "logo_url": "https://delaferme.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/delavoyechocolate.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delavoyechocolate.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/63d1b4e73a0fc90e48f1514b/c0092ce8-b8f2-4c75-ac56-d73e23d9fe71/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/63d1b4e73a0fc90e48f1514b/t/6751b30965a9cc6551420770/1733407497933/Delavoye_2024_218.jpg?format=1500w", "description_meta": "Delavoye Chocolate Maker crafts small-batch, bean-to-bar chocolate using ethically sourced cacao beans from various countries around the world. Our store layout allows you to follow each cacao beans from sorting to packaging. We offer various single-origin bars, flavoured bars as well as unique choc", "site_name": "Delavoye Chocolate Maker"}
\ No newline at end of file
added data/enrich_cache/deliceboreal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "deliceboreal.com", "logo_url": "https://deliceboreal.com/favicon.ico", "cover_url": "https://deliceboreal.com/wp-content/uploads/2015/09/accueil_fleur2-1.jpg", "description_meta": null, "site_name": "D\u00e9lice Bor\u00e9al"}
\ No newline at end of file
added data/enrich_cache/delicesdantan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delicesdantan.com", "logo_url": "https://www.delicesdantan.com/icon-iphone.png", "cover_url": null, "description_meta": "Vos papilles se feront une joie de d\u00e9guster nos fameux beignes aux patates, de petits d\u00e9lices artisanaux fid\u00e8les \u00e0 la tradition de ces beignes \u00e0 l\u2019ancienne!", "site_name": "D\u00e9lices d"}
\ No newline at end of file
added data/enrich_cache/delicesdici.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delicesdici.ca", "logo_url": "https://delicesdici.ca/web/image/website/1/favicon?unique=b4fcc8d", "cover_url": "https://delicesdici.ca/web/image/website/1/logo?unique=4469d47", "description_meta": "Retrouvez des plats \u00e0 saveurs africaines pr\u00eats \u00e0 Manger", "site_name": "March\u00e9 d&#39;ici et d&#39;ailleurs"}
\ No newline at end of file
added data/enrich_cache/delicesdulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delicesdulac.com", "logo_url": "https://delicesdulac.com/cdn/shop/files/Groupe_3058_2x_a8823c08-7f1e-4f7a-a9a0-9c4cd79f07aa_194x194_crop_center.png?v=1624451189", "cover_url": "https://cdn.shopify.com/s/files/1/0570/3974/9312/files/Logo_Commandite.png?v=1713273160", "description_meta": "Located in the heart of the Pays des Bleuets (lit. country of blueberries), in the Saguenay-Lac-Saint-Jean region, a major producer of this delicious fruit, our company our company specializes in the artisanal processing of the wild blueberry.", "site_name": "D\u00e9lices du Lac Saint-Jean"}
\ No newline at end of file
added data/enrich_cache/delicesmg.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delicesmg.com", "logo_url": "https://delicesmg.com/wp-content/uploads/2021/02/cropped-logo-les-delices-mg-1-180x180.png", "cover_url": null, "description_meta": "Une ferme familiale unique et authentique&#8203;Produits de qualit&eacute; faits maisons avec notre sirop d&rsquo;&eacute;rable biologique au go&ucirc;t unique .&#8203; Livraison disponible pour la plupart produits. Nos produits vedettes Voir tous les produits D&eacute;couvrez Les d&eacute;lices MG Notre passion &eacute;picurienne n&rsquo;a de commune mesure de vous proposer des produits de qualit", "site_name": "Les D&eacute;lices MG"}
\ No newline at end of file
added data/enrich_cache/delicespetitmanoirducasino.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delicespetitmanoirducasino.ca", "logo_url": "https://delicespetitmanoirducasino.ca/wp-content/uploads/2017/04/cropped-favicon-180x180.png", "cover_url": "https://delicespetitmanoirducasino.ca/wp-content/uploads/2017/04/petit-manoir-2015-50-e1491508010170.jpg", "description_meta": "Restaurant Les D\u00e9lices du Petit Manoir dans Charlevoix. L&#039;endroit id\u00e9al pour toute la famille en plus d&#039;avoir une magnifique vue sur le Fleuve St-Laurent", "site_name": "Restaurant les D\u00e9lices du Petit Manoir du Casino"}
\ No newline at end of file
added data/enrich_cache/delicesquotidiens.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delicesquotidiens.com", "logo_url": "https://static.wixstatic.com/media/0d98fc_40e08448f9ce43b99cc5907be90504cb%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/0d98fc_40e08448f9ce43b99cc5907be90504cb%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/delicouki.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delicouki.com", "logo_url": "https://delicouki.com/wp-content/uploads/delicouki-cookie-favicon-250x250.png", "cover_url": null, "description_meta": "Delicouki est le partenaire B2B id\u00e9al pour des collations emball\u00e9es individuellement sans noix adapt\u00e9es aux \u00e9coles, d\u00e9taillants, organismes communautaires et services alimentaires.", "site_name": "Delicouki"}
\ No newline at end of file
added data/enrich_cache/delifruits.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delifruits.ca", "logo_url": "https://www.delifruits.ca/wp-content/uploads/2018/04/deli_ico-1.png", "cover_url": "http://www.delifruits.ca/wp-content/uploads/2018/04/LogoDelifruits1-e1524065545454.jpg", "description_meta": "Fabriquant et transformateur alimentaire. Sp\u00e9cialis\u00e9e dans le domaine de la transformation et fabrication de produits alimentaires, DELIFRUITS existe depuis plus de 27 ans. C\u2019est une entreprise moderne et familiale dot\u00e9e d\u2019un savoir-faire majeur dans l\u2019industrie de l\u2019alimentation", "site_name": "Delifruits"}
\ No newline at end of file
added data/enrich_cache/delinordesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "delinordesign.com", "logo_url": "https://www.delinordesign.com/favicon.ico", "cover_url": "http://www.delinordesign.com/cdn/shop/files/Delinor_logo_gold.jpg?v=1751131893", "description_meta": "Art Designer D. L\u00e9onor Leclair creating ready-made designs and/or custom creations under contractual agreements mainly for interior design products", "site_name": "Delinor"}
\ No newline at end of file
added data/enrich_cache/deliresetdelices.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "deliresetdelices.com", "logo_url": "https://deliresetdelices.com/favicon.ico", "cover_url": "https://deliresetdelices.com/images/Img_Facebook.png", "description_meta": "Microbrasserie \u00e0 Chambly. Grande s\u00e9lection de bi\u00e8res artisanales brass\u00e9es sur place.", "site_name": "D\u00e9lires et D\u00e9lices | Microbrasserie \u00e0 Chambly"}
\ No newline at end of file
added data/enrich_cache/deliss.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "deliss.ca", "logo_url": "https://deliss.ca/app/uploads/2022/01/cropped-Favicon-deliss-180x180.png", "cover_url": null, "description_meta": "Une entreprise qu\u00e9b\u00e9coise qui capture la saveur, la fra\u00eecheur et les bienfaits des fruits pour vous proposer de savoureuses pur\u00e9es de fruits. D\u00e9couvrez D\u00e9liss!", "site_name": "Deliss"}
\ No newline at end of file
added data/enrich_cache/demielenbleuets.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "demielenbleuets.ca", "logo_url": "https://demielenbleuets.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "De miel en bleuets"}
\ No newline at end of file
added data/enrich_cache/denalt.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "denalt.ca", "logo_url": "https://denalt.ca/app/uploads/2022/07/cropped-favicon-denalt-180x180.png", "cover_url": "https://denalt.ca/app/uploads/2022/12/denalt-og-en.jpg", "description_meta": "For over 60 years, Denalt has been offering a complete range of interior and exterior paints, perfect for all types of projects.", "site_name": "Denalt"}
\ No newline at end of file
added data/enrich_cache/denta.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "denta.ca", "logo_url": "https://denta.ca/cdn/shop/files/Denta-Favicon-Carre_194x194_crop_center.png?v=1680629784", "cover_url": "http://denta.ca/cdn/shop/files/Famille-Denta-Agrumes-Juin2023_27ed50b3-2dfe-430d-b0a7-b2e29655518a_1200x1200.png?v=1686929793", "description_meta": "Combattre la carie dentaire - Soulager la bouche s\u00e8che - Nettoyer et aider \u00e0 la gu\u00e9rison de plaies buccales - La gamme de produits Denta a ce qu\u2019il faut pour prendre soin de vos dents. Recommand\u00e9 par les dentistes. Pour les adultes et les enfants de 6 ans et plus. Disponible en pharmacie et sur notre boutique en ligne.", "site_name": "Denta.ca"}
\ No newline at end of file
added data/enrich_cache/depanneurdufjord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "depanneurdufjord.com", "logo_url": "https://depanneurdufjord.com/ressources/images/favicon/android-icon-192x192.png", "cover_url": "https://depanneurdufjord.com/ressources/images/resultats-recherche-google.png", "description_meta": null, "site_name": "Les D\u00e9panneurs du Fjord"}
\ No newline at end of file
added data/enrich_cache/dermtek.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dermtek.com", "logo_url": "https://dermtek.com/favicon.ico", "cover_url": null, "description_meta": "Dermtek", "site_name": "Dermtek"}
\ No newline at end of file
added data/enrich_cache/deschaillons.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "deschaillons.ca", "logo_url": "https://www.deschaillons.ca/wp-content/uploads/2023/04/17110126/DES-FAVICON-300x300.png?ver=17865514", "cover_url": "https://www.deschaillons.ca/wp-content/uploads/2023/08/DES-Logo-1.svg", "description_meta": "Site de la municipalit\u00e9 de Deschaillons-sur-Saint-Laurent, situ\u00e9e au Centre-du-Qu\u00e9bec dans la MRC de B\u00e9cancour. D\u00e9couvrez nos activit\u00e9s, services, journal...", "site_name": "Deschaillons sur St-Laurent - Deschaillons sur St-Laurent"}
\ No newline at end of file
added data/enrich_cache/desenfantillages.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "desenfantillages.com", "logo_url": "https://desenfantillages.com/cdn/shop/files/ENFANTILLAGES.FAVICON_32x32.png?v=1645217533", "cover_url": null, "description_meta": "Des enfantillages est une collection de jouets et d&#39;objets minimalistes pour enfants confectionn\u00e9s \u00e0 Montr\u00e9al.", "site_name": "des enfantillages"}
\ No newline at end of file
added data/enrich_cache/designgama.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "designgama.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/desloups.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "desloups.ca", "logo_url": "https://desloups.ca/cdn/shop/files/Loup_noir_1.png?crop=center&height=32&v=1695924548&width=32", "cover_url": "http://desloups.ca/cdn/shop/files/Loup_noir_1.png?height=628&pad_color=ffffff&v=1695924548&width=1200", "description_meta": "Manteaux d&#39;hiver tr\u00e8s chaud, fait au Canada.", "site_name": "Desloups"}
\ No newline at end of file
added data/enrich_cache/desrochersd.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "desrochersd.com", "logo_url": "https://desrochersd.com/img/favicon/favicon-196x196.png", "cover_url": "https://desrochersd.com/app/uploads/2022/11/p1104631-edited-1792x1195.jpg", "description_meta": null, "site_name": "Desrochers D"}
\ No newline at end of file
added data/enrich_cache/destinationautocueillette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "destinationautocueillette.com", "logo_url": "https://destinationautocueillette.com/wp-content/uploads/2020/06/cropped-icone_fraisiere_lauzon-180x180.gif", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/detailquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "detailquebec.com", "logo_url": "https://detailquebec.com/wp-content/uploads/2019/01/cropped-DETAILQUEBEC_LOGO_logo-512-180x180.png", "cover_url": null, "description_meta": "D\u00e9tail Qu\u00e9bec est votre r\u00e9f\u00e9rence en mati\u00e8re de main-d&#039;\u0153uvre dans le commerce de d\u00e9tail : formations, \u00e9tudes, outils de GRH et plus!", "site_name": "D\u00e9tail Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/detourenfrance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "detourenfrance.com", "logo_url": "https://detourenfrance.com/wp-content/uploads/2025/05/cropped-logo_detour-180x180.jpg", "cover_url": "https://detourenfrance.com/wp-content/uploads/2025/05/logo_detoursite.png", "description_meta": "Depuis plus de 20 ans, nous produisons des terrines, mousses et rillettes naturelles en conserve pour les \u00e9leveurs et distributeurs alimentaires.", "site_name": "D\u00e9tour en France - Depuis plus de 20 ans, nous produisons des terrines, mousses "}
\ No newline at end of file
added data/enrich_cache/devidrio.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "devidrio.ca", "logo_url": "https://www.devidrio.ca/favicon.ico", "cover_url": null, "description_meta": "Devidrio : Artiste sp\u00e9cialis\u00e9 en cr\u00e9ation et restauration de vitraux, Devidrio cr\u00e9e \u00e9galement des objets en verre de toutes sortes qui sauront vous s\u00e9duire. Visitez le site pour voir les multiples utilisations cr\u00e9atives du verre. | T\u00e9l. : 819 373-3773 : Trois-Rivi\u00e8res, Qu\u00e9bec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/devinci.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "devinci.com", "logo_url": "https://www.devinci.com/public/favicon/apple-touch-icon-152x152.png?cdv=1139988480", "cover_url": "https://devinci-media-prod.azureedge.net/media/w32iojmz/devinc-com_og.png?width=1200&height=1200&mode=max", "description_meta": "Chaque ann&#233;e, des milliers de Devinci sont con&#231;us, test&#233;s, fabriqu&#233;s et assembl&#233;s &#224; notre usine de Chicoutimi par des Qu&#233;b&#233;cois passionn&#233;s du v&#233;lo.", "site_name": "Cycles Devinci"}
\ No newline at end of file
added data/enrich_cache/dfevaluation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dfevaluation.com", "logo_url": "https://dfevaluation.com/wp-content/uploads/cropped-logo-DF-Evaluation-1-180x180.png", "cover_url": null, "description_meta": "Vous avez besoin d&#039;un rapport d&#039;\u00e9valuation pr\u00e9cis de la valeur de votre v\u00e9hicule? Contactez DF \u00c9valuation", "site_name": "DF evaluation"}
\ No newline at end of file
added data/enrich_cache/diegocaddys.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "diegocaddys.com", "logo_url": "https://img1.wsimg.com/isteam/ip/a52aef57-ad26-46ad-b08e-f61a366d4fa4/Logo_Diego_noir_2024.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/a52aef57-ad26-46ad-b08e-f61a366d4fa4/blob-7bf0de7.png", "description_meta": "Facilitez le magasinage, augmentez vos revenus!", "site_name": "Diego"}
\ No newline at end of file
added data/enrich_cache/dieuduciel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dieuduciel.com", "logo_url": "https://dieuduciel.com/wp-content/themes/dieuduciel/favicon//apple-touch-icon.png", "cover_url": "https://cdn.dieuduciel.com/wp-content/uploads/2021/09/05163517/og.jpg", "description_meta": null, "site_name": "Dieu du Ciel!"}
\ No newline at end of file
added data/enrich_cache/dispensaire.beer.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dispensaire.beer", "logo_url": "https://dispensaire.beer/favicon.ico", "cover_url": "http://static1.squarespace.com/static/59c159b149fc2b9fe78ba5b2/t/69a9e119ebee1a262bb39923/1772740889978/dispensaire-logo.png?format=1500w", "description_meta": "Brasserie / Brewing Co.", "site_name": "Dispensaire"}
\ No newline at end of file
added data/enrich_cache/distillerie3lacs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distillerie3lacs.ca", "logo_url": "https://distillerie3lacs.ca/wp-content/uploads/2024/12/cropped-D3L_Logo_Monogram_RGB_230314-180x180.png", "cover_url": null, "description_meta": "La Distillerie 3 Lacs vous offre une gamme de gins aux agrumes, d&#039;autres beaux produits, et un maximum de fra\u00eecheur!", "site_name": "Distillerie 3 Lacs"}
\ No newline at end of file
added data/enrich_cache/distilleriecap.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriecap.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/6828c5d31d05a169796c87d8/f60d10ba-dfff-439c-9da7-8fc0dc20bc3b/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6828c5d31d05a169796c87d8/t/6828de23105975117c6b6eba/1747508771748/logo_distillerie_cap_aux_peches_noir.png?format=1500w", "description_meta": "Une distillerie situ\u00e9e dans une ancienne \u00e9glise en Gasp\u00e9sie : \u00e7a vous dit ? Venez-nous voir ! Nous saurons vous en mettre plein la vue et les papilles !", "site_name": "Distillerie Cap-aux-P\u00e9ch\u00e9s"}
\ No newline at end of file
added data/enrich_cache/distilleriecapchat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriecapchat.com", "logo_url": "https://distilleriecapchat.com/logo192.png", "cover_url": null, "description_meta": "Web site created using create-react-app", "site_name": null}
\ No newline at end of file
added data/enrich_cache/distilleriedemontreal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriedemontreal.com", "logo_url": "https://distilleriedemontreal.com/wp-content/uploads/2022/06/cropped-favicon-180x180.jpg", "cover_url": "https://distilleriedemontreal.com/wp-content/uploads/2022/07/hero-acceuil-cocktail-prep.jpg", "description_meta": "Since 2013, we have been crafting spirits, liqueurs and ready-to-drink cocktails with an authentic taste and artisanal essence, 100% distilled in Montreal.", "site_name": "Distillerie de Montr\u00e9al"}
\ No newline at end of file
added data/enrich_cache/distilleriedesappalaches.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriedesappalaches.com", "logo_url": "https://distilleriedesappalaches.com/wp-content/uploads/2021/10/cropped-7987758D-CFA9-4E2D-B76E-3B0AF73914F2-180x180.jpg", "cover_url": "https://distilleriedesappalaches.com/wp-content/uploads/2026/01/accueil.jpg", "description_meta": "Dans un monde qui nous invite \u00e0 favoriser la quantit\u00e9 sur la qualit\u00e9, \u00e0 la Distillerie des Appalaches nous \u00e9coutons notre vrai nature.", "site_name": "Distillerie des Appalaches"}
\ No newline at end of file
added data/enrich_cache/distilleriedescantons.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriedescantons.ca", "logo_url": "https://static.wixstatic.com/media/129b05_98ae074d941e4d2ea0c067ec4ea84559%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/129b05_98ae074d941e4d2ea0c067ec4ea84559%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/distilleriedesmarigots.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriedesmarigots.com", "logo_url": "https://distilleriedesmarigots.com/favicon.ico", "cover_url": "https://distilleriedesmarigots.com/wp-content/uploads/2020/12/DDMarigotscVincentLebegue-2020_6725.jpg", "description_meta": "Gins, liqueurs de gins et whiskys en reflet de la richesse du territoire gasp\u00e9sien. De Caplan, Gasp\u00e9sie, Qu\u00e9bec.", "site_name": "Distillerie des Marigots"}
\ No newline at end of file
added data/enrich_cache/distilleriedufjord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriedufjord.com", "logo_url": "https://www.distilleriedufjord.com/cdn/shop/files/favicon.png?v=1613690639&width=180", "cover_url": "http://www.distilleriedufjord.com/cdn/shop/files/distillerie-logo-final_FondClear_2.png?v=1777923209&width=2048", "description_meta": "Discover Distillerie du Fjord: unique spirits inspired by the local terroir. Visit the boutique, enjoy a guided tour, or have an aperitif on the terrace.", "site_name": "Distillerie du Fjord"}
\ No newline at end of file
added data/enrich_cache/distillerieduquai.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distillerieduquai.com", "logo_url": "https://distillerieduquai.com/wp-content/uploads/2022/10/ddq_favicon.svg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/distillerieeuclide.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distillerieeuclide.ca", "logo_url": "https://www.distillerieeuclide.ca/wp-content/uploads/2026/07/cropped-euclide_guide-de-normes_favicon-1-180x180.png", "cover_url": "https://www.distillerieeuclide.ca/wp-content/uploads/2022/05/image_share.jpg", "description_meta": "La Distillerie Euclide produit le gin Les \u00e9l\u00e9ments no 1, premier spiritueux d\u2019une gamme responsable dont l\u2019aromate principal est un coproduit de la transformation de la canneberge.", "site_name": "Distillerie Euclide"}
\ No newline at end of file
added data/enrich_cache/distillerielamanufacture.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distillerielamanufacture.com", "logo_url": "https://distillerielamanufacture.com/favicon.ico", "cover_url": "http://distillerielamanufacture.com/cdn/shop/files/Capture_d_ecran_le_2022-12-28_a_08.32.11.png?v=1672234379", "description_meta": "Distillerie la Manufacture", "site_name": "Distillerie la Manufacture"}
\ No newline at end of file
added data/enrich_cache/distilleriemariana.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriemariana.com", "logo_url": "https://distilleriemariana.com/app/uploads/2025/05/dm-mariana-symbole-officiel-rgb-350x350.png", "cover_url": "https://distilleriemariana.com/app/uploads/2026/03/cropped-og.jpg", "description_meta": "Produisant des gins, rhums, liqueurs et un whisky de grain qu\u00e9b\u00e9cois, la Distillerie Mariana a pour mission de faire d\u00e9couvrir le meilleur du terroir qu\u00e9b\u00e9cois.", "site_name": "Distillerie Mariana"}
\ No newline at end of file
added data/enrich_cache/distilleriemitis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriemitis.com", "logo_url": "https://www.distilleriemitis.com/cdn/shop/files/Logo_Mitis_Sceau_194x194_crop_center.png?v=1679599920", "cover_url": "http://www.distilleriemitis.com/cdn/shopifycloud/storefront/assets/no-image-2048-a2addb12_1200x1200.gif", "description_meta": "Distillerie Mitis se sp\u00e9cialise dans la production de spiritueux fins d\u2019o\u00f9 l\u2019inspiration provient de sa r\u00e9gion, La Mitis. Nous produisons une gamme de spiritueux \u00e0 partir d\u2019ingr\u00e9dients locaux et import\u00e9s.", "site_name": "Distillerie Mitis"}
\ No newline at end of file
added data/enrich_cache/distilleriepuyjalon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriepuyjalon.com", "logo_url": "https://distilleriepuyjalon.com/wp-content/uploads/2025/12/cropped-faviconV2-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/distillerieshefford.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distillerieshefford.com", "logo_url": "https://distillerieshefford.com/wp-content/uploads/2025/04/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/distillerietemiscouata.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distillerietemiscouata.com", "logo_url": "https://distillerietemiscouata.com/wp-content/uploads/2021/08/cropped-favicon-180x180.png", "cover_url": "https://distillerietemiscouata.com/wp-content/uploads/2021/10/cropped-TEMISCOUATA_Splash_hd.jpg", "description_meta": "La distillerie T\u00e9miscouata regroupe plus d\u2019une quarantaine d\u2019entreprises ac\u00e9ricoles du Bas-St-Laurent. Initialement un projet de recherche pour d\u00e9velopper le\u2026", "site_name": "Distillerie Temiscouata"}
\ No newline at end of file
added data/enrich_cache/distillerieventdunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distillerieventdunord.com", "logo_url": "https://www.distillerieventdunord.com/favicon.png", "cover_url": null, "description_meta": "Vivez pleinement l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/distilleriewabasso.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distilleriewabasso.com", "logo_url": "https://distilleriewabasso.com/app/themes/Wabasso/assets/img/favicon/apple-touch-icon.png", "cover_url": "https://distilleriewabasso.com/app/uploads/2020/04/68439611_1352917148205747_6440489797508136960_n-scaled.jpg", "description_meta": "\u00c0 vocation artisanale, la Distillerie Wabasso de Trois-Rivi\u00e8res produit d\u2019authentiques spiritueux r\u00e9gionaux. Fiers artisans de rencontres savoureuses.", "site_name": "Distillerie Wabasso"}
\ No newline at end of file
added data/enrich_cache/distributionlhebert.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "distributionlhebert.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Distribution L. H\u00e9bert est le fabriquant\u00a0et distributeur Qu\u00e9becois des marques, PHYSIORUB, PHYSIORUB PLUS, PHYSIOGESIC ARNICA, PHYSIOMENTHOL et PHYSIOCR\u00c8ME.", "site_name": "Distributionlhebert"}
\ No newline at end of file
added data/enrich_cache/dmgpharma.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dmgpharma.com", "logo_url": "https://dmgpharma.com/wp-content/uploads/2020/12/logo_dmgpharama_flavicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/dmgservicesinc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dmgservicesinc.com", "logo_url": "https://dmgservicesinc.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/doggiewearstyle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "doggiewearstyle.com", "logo_url": "https://doggiewearstyle.com/cdn/shop/files/favicon-DWS.png?crop=center&height=32&v=1763297888&width=32", "cover_url": "http://doggiewearstyle.com/cdn/shop/files/Logo_derniere_version_3fa04422-5e1f-45ae-8749-e6503951bef1.png?v=1685608165", "description_meta": "Sp\u00e9cialiste du manteau et des bottes pour chiens qui s&#39;attachent et s&#39;ajustent \u00e0 la veste du chien. Votre animal sera heureux de porter ce manteau et ces bottes confortables et l\u00e9g\u00e8res, faciles \u00e0 enfiler.", "site_name": "Doggie Wear Style"}
\ No newline at end of file
added data/enrich_cache/doggoboutique.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "doggoboutique.ca", "logo_url": "https://doggoboutique.ca/cdn/shop/files/favicon_32x32.png?v=1684254413", "cover_url": "http://doggoboutique.ca/cdn/shop/files/logo-doggo-square_81dcf737-ff89-4c91-880f-55154f532217.jpg?v=1683894274", "description_meta": "Pet store for dogs and cats. We focus on premium food. We are always happy to welcome you.", "site_name": "Boutique D\u00f6ggo"}
\ No newline at end of file
added data/enrich_cache/domaine-boreal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaine-boreal.com", "logo_url": "https://domaine-boreal.com/favicon.ico", "cover_url": "https://domaine-boreal.com/wp-content/uploads/2022/02/domaine-boreal-facebook.png", "description_meta": "Culture de fruits et l\u00e9gumes nordiques \u00e0 Saint-Fulgence. Au Domaine Bor\u00e9al, nous cultivons 8 vari\u00e9t\u00e9s de camerises.", "site_name": "Domaine Bor\u00e9al"}
\ No newline at end of file
added data/enrich_cache/domaine-heritage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaine-heritage.com", "logo_url": "https://i0.wp.com/www.domaine-heritage.com/wp-content/uploads/2022/12/cropped-dh-fav-w.png?fit=180%2C180&#038;ssl=1", "cover_url": null, "description_meta": "Le Domaine H\u00e9ritage Cidre d\u00e9bute avec notre jus de pomme doux, issu de nos centenaires vieux pommiers, sur une des grandes parcelles du Qu\u00e9bec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/domaineacielouvert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineacielouvert.com", "logo_url": "https://domaineacielouvert.com/favicon.ico", "cover_url": "https://domaineacielouvert.com/wp-content/uploads/2023/05/cropped-Hebergements-Insolites-1-1021x1024.png", "description_meta": "Pr\u00eat-\u00e0-camper et vanlife dans la r\u00e9gion de Charlevoix. Pour dormir sous les \u00e9toiles, c&#039;est ici que \u00e7a se passe.", "site_name": "DACO"}
\ No newline at end of file
added data/enrich_cache/domainealiguori.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainealiguori.com", "logo_url": "https://www.domainealiguori.com/favicon.ico", "cover_url": null, "description_meta": "Vous avez suffisamment d\u2019imagination pour cr\u00e9er votre site web \u00e0 partir de pages blanches? Nous avons pens\u00e9 \u00e0 vous! Ce design n\u2019attend que votre contenu et vos images!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/domaineangegardien.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineangegardien.com", "logo_url": "https://domaineangegardien.com/application/files/2215/1318/9255/Favicon_57x57.png", "cover_url": "http://domaineangegardien.com/application/themes/designed_by_tonik/images/og_summer.jpg", "description_meta": null, "site_name": "Domaine de l"}
\ No newline at end of file
added data/enrich_cache/domaineaubertgallion.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineaubertgallion.com", "logo_url": "https://cdn.prod.website-files.com/69e645961749bbe92f2c45f3/69f01e61db74a34a7aa074fc_android-chrome-256x256.png", "cover_url": "https://cdn.prod.website-files.com/69e645961749bbe92f2c45f3/69effe54df6e21bdd796fa01_domaine-aubert-gallion-open-graph-01.jpg", "description_meta": "Bistrot champ\u00eatre dans une maison bicentenaire. Cuisine de saison, produits locaux et moments \u00e0 savourer dans une ambiance chaleureuse.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainebelleplage.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainebelleplage.ca", "logo_url": "https://domainebelleplage.ca/onewebmedia/Logos/belle-plage_logo-1.png?etag=%22c3bd-5e639dee%22&amp;sourceContentType=image%2Fpng&amp;resize=57,57&amp;ignoreAspectRatio", "cover_url": "https://domainebelleplage.ca/onewebmedia/Logos/bistro-estran_logo-1.png?etag=%22cacd-5e678156%22&amp;sourceContentType=image%2Fpng&amp;quality=85", "description_meta": "Id\u00c3\u00a9alement situ\u00c3\u00a9 au confluent de la rivi\u00c3\u00a8re du Gouffre et du fleuve Saint-Laurent, le Domaine Belle Plage de Baie Saint Paul est un h\u00c3\u00b4tel comptant 35 chambres.", "site_name": "Domaine Belle Plage"}
\ No newline at end of file
added data/enrich_cache/domainebergeville.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainebergeville.ca", "logo_url": "https://domainebergeville.ca/wp-content/uploads/2022/01/cropped-domaine_bergeville-favicon-180x180.png", "cover_url": "https://domainebergeville.ca/wp-content/uploads/2022/05/og-image.jpg", "description_meta": "D\u00e9couvrez nos vins mousseux biologiques et biodynamiques en m\u00e9thode traditionnelle \u00e9labor\u00e9s dans les Cantons-de-l&#039;Est, au Qu\u00e9bec.", "site_name": "Domaine Bergeville"}
\ No newline at end of file
added data/enrich_cache/domaineberthiaume.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineberthiaume.com", "logo_url": "https://www.domaineberthiaume.com/wp-content/uploads/2024/08/cropped-Logo_Sans-Parchemin-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainebotania.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainebotania.ca", "logo_url": "https://static.wixstatic.com/media/a9e5e4_bfa5e9a44e7d42b0bee704ddc41c93e6%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a9e5e4_bfa5e9a44e7d42b0bee704ddc41c93e6%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainecomporte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainecomporte.com", "logo_url": "https://domainecomporte.com/favicon.ico", "cover_url": null, "description_meta": "Le Domaine Comport\u00e9 est un lieu de pr\u00e9dilection pour renouer avec la nature \u00e0 Charlevoix. On y trouve un paradis pour la p\u00eache et la chasse.", "site_name": "Comporte"}
\ No newline at end of file
added data/enrich_cache/domainecotedunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainecotedunord.com", "logo_url": "https://domainecotedunord.com/boutique/image/catalog/Domaine cote du nord/3octobre2016 430.jpg", "cover_url": null, "description_meta": "Vignoble nordique 49e parall\u00e8le en Am\u00e9rique du Nord. Vignes de cuve et de table.", "site_name": "Domaine C\u00f4te du Nord Inc"}
\ No newline at end of file
added data/enrich_cache/domainedebeaufor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedebeaufor.com", "logo_url": "https://domainedebeaufor.com/favicon.ico", "cover_url": null, "description_meta": "Domaine de Beaufor vous propose une multitude de produits d&#039;\u00e9rable. Sirop, tire, beurre et bien d&#039;autres. \u00c9galement location de chalets.", "site_name": "Domaine de Beaufor"}
\ No newline at end of file
added data/enrich_cache/domainededunham.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainededunham.ca", "logo_url": "https://static.wixstatic.com/media/af0b29_96fdc91f181544a595a5fcb1ba28a067%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/af0b29_96fdc91f181544a595a5fcb1ba28a067%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/af0b29_628804b1135e40cabee287400326d46f%7Emv2_d_2500_1516_s_2.jpg/v1/fit/w_2500,h_1330,al_c/af0b29_628804b1135e40cabee287400326d46f%7Emv2_d_2500_1516_s_2.jpg", "description_meta": "Le Domaine de Dunham est un verger \u00e9cologique utilisant la production fruiti\u00e8re int\u00e9gr\u00e9e. Nous offrons l", "site_name": "Domaine De Dunham"}
\ No newline at end of file
added data/enrich_cache/domainedelarivieresamson.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedelarivieresamson.com", "logo_url": "https://domainedelarivieresamson.com/wp-content/uploads/2021/10/cropped-favicon-180x180.png", "cover_url": "https://domainedelarivieresamson.com/wp-content/uploads/2021/12/produits-dui-terroir.jpeg", "description_meta": "D\u00e9couvrez des produits d&#039;\u00e9rable fabriqu\u00e9s au Qu\u00e9bec par le domaine de la rivi\u00e8re Samson : vinaigrettes, m\u00e9langes \u00e0 cr\u00eapes, beurre d&#039;\u00e9rable.", "site_name": "Ferme du Ruisseau d\u2019or"}
\ No newline at end of file
added data/enrich_cache/domainedelartisan.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedelartisan.ca", "logo_url": "https://domainedelartisan.ca/wp-content/themes/bridge/img/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainedelartisan.order-online.ai.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedelartisan.order-online.ai", "logo_url": "https://domainedelartisan.order-online.ai/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainedelerable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedelerable.com", "logo_url": "http://domainedelerable.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainedescoulees.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedescoulees.com", "logo_url": "https://domainedescoulees.com/wp-content/uploads/2020/08/favicon2-300x300.png", "cover_url": "https://domainedescoulees.com/wp-content/uploads/2020/09/DomaineCoulees_Coupe_Nation2.jpg", "description_meta": "D&Eacute;COUVREZ NOS PRODUITS EN SAVOIR +NOS R&Ecirc;VES DEVENUS R&Eacute;ALIT&Eacute;Apprenez &agrave; nous conna&icirc;tre EN SAVOIR +D&Eacute;COUVREZ NOS VINS AC&Eacute;RICOLES DU QU&Eacute;BECVoir nos produits EN&#8230;", "site_name": "Domaine des Coul\u00e9es"}
\ No newline at end of file
added data/enrich_cache/domainedoscar.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedoscar.com", "logo_url": "https://domainedoscar.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domaineducerf.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineducerf.ca", "logo_url": "https://domaineducerf.ca/favicon.ico", "cover_url": null, "description_meta": "Cabane \u00e0 sucre traditionnelle \u00e0 Blue Sea, QC. Menu \u00e0 volont\u00e9, ambiance familiale et \u00e9rabli\u00e8re authentique.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainedufleuve.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedufleuve.com", "logo_url": "https://domainedufleuve.com/wp-content/uploads/2020/11/cropped-logo-domaine-du-fleuve-footer-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainedugrandcorbeau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedugrandcorbeau.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/6926272c7189373b4a58b155/9df2dd52-e1f8-473f-9e1f-76e64aa57fed/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6926272c7189373b4a58b155/t/692ef423a64a2e002cd9f60c/1764684835847/domainedugrandcorbeau-logo-sanssenc_couleur-rgb.png?format=1500w", "description_meta": "Chaos fertile : recettes sauvages, jardins mara\u00eechers, for\u00eats nourrici\u00e8re.", "site_name": "Le Domaine du Grand Corbeau"}
\ No newline at end of file
added data/enrich_cache/domainedupetitstjoseph.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedupetitstjoseph.ca", "logo_url": "https://domainedupetitstjoseph.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Domaine du petit St-Joseph"}
\ No newline at end of file
added data/enrich_cache/domaineduridge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineduridge.com", "logo_url": "https://domaineduridge.com/favicon.ico", "cover_url": "https://domaineduridge.com/wp-content/uploads/accueil-domaine-du-ridge-degustation.jpg", "description_meta": "Visitez ce vignoble qu\u00e9b\u00e9cois sur la route des vins \u00e0 Saint-Armand. Agrotourisme, d\u00e9gustations et mariage au vignoble. R\u00e9servez une visite!", "site_name": "Domaine du Ridge"}
\ No newline at end of file
added data/enrich_cache/domainedusaule.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedusaule.com", "logo_url": "https://static.wixstatic.com/shapes/460712_503a1a6963d0465aa84f01f9ef9d4f82.svg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainedusucrier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainedusucrier.ca", "logo_url": "https://domainedusucrier.ca/og-ico/favicon-57.png", "cover_url": "https://domainedusucrier.ca/wp-content/uploads/2017/03/opengraph.png", "description_meta": null, "site_name": "Domaine du sucrier"}
\ No newline at end of file
added data/enrich_cache/domainefeuxfollets.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainefeuxfollets.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/60da28a569878d058fca4706/d5d2e7a2-2d04-4630-8ba4-3d8f329b5f2d/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/60da28a569878d058fca4706/t/6102b2a44fdcec3f82cca5da/1627566756801/dff_logo_centre_beige.png?format=1500w", "description_meta": null, "site_name": "DOMAINE DES FEUX FOLLETS"}
\ No newline at end of file
added data/enrich_cache/domaineforget.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineforget.com", "logo_url": "https://www.domaineforget.com/apple-touch-icon.png?v=alJ3rq9KkX", "cover_url": "https://www.domaineforget.comhttps://domforget.blob.core.windows.net/media/1015/placeholder.jpg", "description_meta": "Le Domaine Forget de Charlevoix est une Acad&#233;mie internationale de musique et de danse offrant &#233;galement le Festival international de musique et de danse.", "site_name": "Le Domaine Forget de Charlevoix"}
\ No newline at end of file
added data/enrich_cache/domainefraisair.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainefraisair.com", "logo_url": "https://domainefraisair.com/wp-content/uploads/2021/06/cropped-favicon-180x180.png", "cover_url": "https://domainefraisair.com/wp-content/uploads/2021/06/default-og-img.png", "description_meta": null, "site_name": "Domaine Frais Air"}
\ No newline at end of file
added data/enrich_cache/domainefutdor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainefutdor.com", "logo_url": "https://static.wixstatic.com/media/ff76aa_6028cbac58534b04b8eedb3866a4f37e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/ff76aa_6028cbac58534b04b8eedb3866a4f37e%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainegelinas.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainegelinas.com", "logo_url": "https://static.wixstatic.com/media/d2596b_4da172046dad4cceba6aa211c89b926e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d2596b_4da172046dad4cceba6aa211c89b926e%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domaineharrington.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineharrington.ca", "logo_url": "https://domaineharrington.ca/favicon.ico", "cover_url": "http://domaineharrington.ca/cdn/shop/files/harrington-libellule_a1e16887-c5f0-4e7e-8895-2af9f8e889ad.png?v=1602186610", "description_meta": "Nos eaux de source p\u00e9tillantes marient la finesse des plantes sauvages nordiques \u00e0 une eau charg\u00e9e en min\u00e9raux, puis\u00e9e \u00e0 m\u00eame notre territoire. Une fra\u00eecheur botanique et bor\u00e9ale, en toute simplicit\u00e9. Boutique en ligne locale du Qu\u00e9bec avec des id\u00e9es recettes cocktails", "site_name": "Harrington P\u00e9tillants Botaniques"}
\ No newline at end of file
added data/enrich_cache/domainelacbrouillard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainelacbrouillard.com", "logo_url": "https://cdn.prod.website-files.com/623dd312cb1db92197b16e21/623dd4d1282b357fff25eb41_pourvoirie-webclip.jpg", "cover_url": "https://cdn.prod.website-files.com/623dd312cb1db92197b16e21/624d7f8116c20f1bfb25089c_lac-brouillard-opengraph-min.jpg", "description_meta": "La Pourvoirie Domaine du lac Brouillard, une des meilleures pourvoiries de Charlevoix pour la chasse et la p\u00eache ! Nombreuses activit\u00e9s et h\u00e9bergements disponibles.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainelacharmante.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainelacharmante.com", "logo_url": "https://domainelacharmante.com/owebo-votresite/sites/default/files/images/logo_domaine_1.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainelafrance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainelafrance.com", "logo_url": "https://domainelafrance.com/app/themes/effetweb/assets/icons/android-icon-192x192.png", "cover_url": null, "description_meta": "Depuis 100 ans, le Domaine Lafrance vous invite \u00e0 d\u00e9couvrir un patrimoine riche avec ses vergers, vignobles et cidrerie. Vivez une exp\u00e9rience unique de cueillette, d\u00e9gustez nos cidres et vins artisanaux, et profitez de notre cabane \u00e0 sucre pour une exp\u00e9rience hors du commun.", "site_name": "Domaine Lafrance -"}
\ No newline at end of file
added data/enrich_cache/domainelargoustik.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainelargoustik.ca", "logo_url": "https://domainelargoustik.ca/favicon.ico", "cover_url": null, "description_meta": "Boutique en ligne qui propose des produits d&#39;argousier, fait maison, \u00e0 Victoriaville.", "site_name": "Domaine l&#39;Argoustik"}
\ No newline at end of file
added data/enrich_cache/domaineloreedesbois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineloreedesbois.ca", "logo_url": "https://domaineloreedesbois.ca/owebo-votresite/sites/default/files/images/489991492_1247887513941584_3896362061295912448_n.jpg", "cover_url": "https://domaineloreedesbois.ca/sites/default/files/images/hiver.jpg", "description_meta": "Un forfait sur mesure pour motoneigistes", "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainemontvezeau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainemontvezeau.com", "logo_url": "https://domainemontvezeau.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domaineoakhill.vin.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineoakhill.vin", "logo_url": "https://images.squarespace-cdn.com/content/v1/5f243d2f745120252bd40f7c/af2d607d-f4d2-4ecb-ab8a-7aef81bd2a74/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5f243d2f745120252bd40f7c/t/5f2868a67b714446c58839ed/1596483755704/oakhill-logo.jpg?format=1500w", "description_meta": null, "site_name": "Domaine Oak Hill"}
\ No newline at end of file
added data/enrich_cache/domainepyrus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainepyrus.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/d1650a41-334e-487e-b60a-472813253540/blob-46f61cf.png", "description_meta": "Venez go\u00fbter nos boissons alcoolis\u00e9es de poire et notre miel pur. Le Domaine Pyrus est situ\u00e9 dans les Cantons de l&#x27;est \u00e0 la limite de Bromont, \u00e0 Brigham.", "site_name": "Domaine Pyrus"}
\ No newline at end of file
added data/enrich_cache/domaineritt.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domaineritt.com", "logo_url": "https://domaineritt.com/wp-content/themes/ritt/assets/images/icons/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": "Domaine RITT"}
\ No newline at end of file
added data/enrich_cache/domainesmall.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainesmall.com", "logo_url": "https://domainesmall.com/apple-touch-icon.png", "cover_url": "https://domainesmall.com/wp-content/uploads/2026/05/IMG_1170.jpeg", "description_meta": "Vignoble biologique, \u00e9rabli\u00e8re centenaire et microdistillerie \u00e0 Sainte-Agathe-de-Lotbini\u00e8re. Les seuls producteurs d\u2019Acerum certifi\u00e9s biologiques. Boutique ouverte jeudi au dimanche.", "site_name": "Domaine small"}
\ No newline at end of file
added data/enrich_cache/domainesteinbach.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainesteinbach.com", "logo_url": "https://www.domainesteinbach.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5e8756afc240c55a8851741d/t/66b2147f57431556bdd757fe/1722946687426/Domaine+Steinbach+-+Cidrerie+B%26B+Distillerie.jpg?format=1500w", "description_meta": "Venez vous ressourcer dans l\u2019un des plus beaux vergers du Qu\u00e9bec, en plein c\u0153ur de l\u2019\u00cele d\u2019Orl\u00e9ans. Savourez nos cidres et profitez de la vue imprenable que poss\u00e8de le Domaine Steinbach sur le Fleuve Saint-Laurent.", "site_name": "Domaine Steinbach"}
\ No newline at end of file
added data/enrich_cache/domainevalga.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainevalga.com", "logo_url": "https://www.domainevalga.com/wp-content/uploads/2021/12/60x60.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/domainevallierrobert.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainevallierrobert.ca", "logo_url": "https://domainevallierrobert.ca/wp-content/uploads/2025/06/cropped-FaviconDomaineVallierRobert-180x180.png", "cover_url": null, "description_meta": "\u00c9rabli\u00e8re biologique pionni\u00e8re depuis 1992, le Domaine Vallier Robert transforme la s\u00e8ve d&#039;\u00e9rable en acers uniques. Visites, d\u00e9gustations et boutique \u00e0 Auclair, T\u00e9miscouata.", "site_name": "Domaine Vallier Robert"}
\ No newline at end of file
added data/enrich_cache/domainevertforet.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "domainevertforet.ca", "logo_url": "https://static.wixstatic.com/media/ec7436_de312ae7e90445178f38bc768ae2f360%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/ec7436_de312ae7e90445178f38bc768ae2f360%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/dominicdufourjoaillier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dominicdufourjoaillier.com", "logo_url": "https://images.panierdachat.app/107/0zDZMiGG_logo-poincon.jpg?w=32&amp;h=32&amp;fit=max", "cover_url": "https://images.panierdachat.app/107/oUCe6AxV_blanc-fond.noir.jpg?w=1200&h=630&fit=fill", "description_meta": "Bijouterie service personnalis\u00e9 situ\u00e9 sur la Rive Nord, dans les Basses Laurentiders. Bijoux fait main par 15 artisans. Bagues de fiancailles, mariage ou autres bijoux peuvent \u00eatre faits sur mesure.", "site_name": "Dominic Dufour Joaillier"}
\ No newline at end of file
added data/enrich_cache/dominiongrimm.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dominiongrimm.ca", "logo_url": "https://www.dominiongrimm.ca/gx/favicon/apple-touch-icon.png", "cover_url": "https://www.dominiongrimm.ca/gx/partage.jpg", "description_meta": "Dominion & Grimm se sp\u00e9cialise dans les \u00e9quipements et les emballages d", "site_name": "Dominion & Grimm"}
\ No newline at end of file
added data/enrich_cache/donjjewellery.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "donjjewellery.com", "logo_url": "https://donjjewellery.com/wp-content/uploads/2025/12/donj-logo.png", "cover_url": "https://donjjewellery.com/wp-content/uploads/2025/08/site_logo.jpeg", "description_meta": "Shop engagement rings, wedding rings, lab grown diamonds, gold chains, custom jewelry &amp; fine diamond pieces at Donj Jewellery. Luxury jewelry for men &amp; women.", "site_name": "Donj Jewellery"}
\ No newline at end of file
added data/enrich_cache/doranola.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "doranola.com", "logo_url": "https://doranola.com/cdn/shop/files/DN_Logo_1_Black.png?crop=center&height=32&v=1748360335&width=32", "cover_url": "https://doranola.com/cdn/shop/files/LOGO_image_with_ascarf_horiz_2_1238x630.jpg?v=1618867210", "description_meta": "Modern and unique silk scarves that celebrate creativity and individuality. Embrace your uniqueness! 100% silk scarves and accessories with bold designs. Luxury and art you can wear.", "site_name": "Dora Nola"}
\ No newline at end of file
added data/enrich_cache/dosport.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dosport.ca", "logo_url": "https://dosport.ca/cdn/shop/files/lg-dosport_32x32.png?v=1613162680", "cover_url": "https://cdn.shopify.com/s/files/1/2802/8422/files/lg-dosport2_2x_babb81d7-b90b-4015-b08e-8f490c44a74e.png?height=628&pad_color=ffffff&v=1613162678&width=1200", "description_meta": "Do Sport fabrique des paddle boards (SUP) rigides, des surfs, des wakesurfs et des planches de foil de qualit\u00e9 sup\u00e9rieure au Qu\u00e9bec depuis 2015. DO SPORT con\u00e7oit des paddle boards (SUP) gonflables et distribue des produits nautiques.", "site_name": "DO Sport 3R inc."}
\ No newline at end of file
added data/enrich_cache/dou.bio.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dou.bio", "logo_url": "https://dou.bio/favicon.ico", "cover_url": null, "description_meta": "Produits d&#39;\u00e9rable biologiques fait au Canada. Gel\u00e9es d&#39;\u00e9rable \u00e0 saveur de sapin. Gel\u00e9es d&#39;\u00e9rable \u00e0 saveur de fraises. Gel\u00e9es d&#39;\u00e9rable \u00e0 saveur de framboises.Gel\u00e9es d&#39;\u00e9rable \u00e0 saveur de pommes. Gel\u00e9es d&#39;\u00e9rable \u00e0 saveur d&#39;antan. Beurre d&#39;\u00e9rable et sirop d&#39;\u00e9rable 100% pur.", "site_name": "Do\u00fc produits d&#39;\u00e9rable biologiques"}
\ No newline at end of file
added data/enrich_cache/doucetlatendresse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "doucetlatendresse.com", "logo_url": "https://www.doucetlatendresse.com/favicon.ico", "cover_url": "https://www.doucetlatendresse.com/images/DL/logo.png", "description_meta": "Retrouvez le plus grand choix de bijoux au Qu\u00e9bec chez les bijoutiers Doucet Latendresse, \u00e0 votre service depuis 1946. D\u00e9couvrez notre bijouterie en ligne!", "site_name": "Doucet Latendresse"}
\ No newline at end of file
added data/enrich_cache/douceurdici.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "douceurdici.ca", "logo_url": "https://douceurdici.ca/favicon.ico", "cover_url": null, "description_meta": "Fabriquant de produits de l&#39;\u00e9rable pur au Bas St-Laurent, Douceur d&#39;ici. Produits sans gluten. Sauce BBQ , beurre d&#39;\u00e9rable, caramel \u00e0 l&#39;\u00e9rable et \u00e0 la fleur de sel, vinaigrette, bonbon \u00e0 l&#39;\u00e9rable, sucre granul\u00e9 \u00e0 l&#39;\u00e9rable, pop-corn \u00e0 l&#39;\u00e9rable, amandes \u00e0 l&#39;\u00e9rable et sirop d&#39;\u00e9rable pur.", "site_name": "Douceur-dici"}
\ No newline at end of file
added data/enrich_cache/douceursdesappalaches.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "douceursdesappalaches.com", "logo_url": "https://www.douceursdesappalaches.com/favicon.ico", "cover_url": "http://www.douceursdesappalaches.com/cdn/shop/files/Medaillon_Artisan_de_miel_brut_bio_et_de_bonheur.png?v=1766543844", "description_meta": "Produits haut de gamme faits \u00e0 la main par notre \u00e9quipe \u00e0 partir de ce que les abeilles ont de mieux \u00e0 nous offrir : miel brut, pollen, propolis, cire d&#39;abeilles, gel\u00e9e royale. Tout est respectueusement utilis\u00e9 pour les bons soins naturels du corps.", "site_name": "Douceurs des Appalaches"}
\ No newline at end of file
added data/enrich_cache/doupando.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "doupando.com", "logo_url": "https://www.doupando.com/img/favicon.ico?1603372790", "cover_url": null, "description_meta": "D\u00e9veloppez le go\u00fbt de la lecture, de l&#039;apprentissage et offrez des aventures incroyables \u00e0 votre enfant avec les livres personnalis\u00e9s Doupando. Visitez-nous", "site_name": null}
\ No newline at end of file
added data/enrich_cache/drasca.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "drasca.ca", "logo_url": "https://drasca.ca/images/favicon.ico?crc=486616566", "cover_url": "http://drasca.ca/assets/favicon-32x32.png", "description_meta": "Nous fabriquons des craquelins sains et nutritfs \u00c3\u00a0 partir d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/druidebio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "druidebio.com", "logo_url": "https://druidebio.com/wp-content/uploads/2022/08/cropped-logo-fav-180x180.png", "cover_url": "https://druidebio.com/wp-content/uploads/2023/08/newsletter.jpg", "description_meta": "Providing the highest quality products while respecting nature. Bringing us into balance not only with our environment but with ourselves as well \u2026", "site_name": "Laboratoires Druide\u00ae | Bio For Life"}
\ No newline at end of file
added data/enrich_cache/dubeloiselle.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dubeloiselle.ca", "logo_url": "https://www.dubeloiselle.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/duchanvre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "duchanvre.com", "logo_url": "https://duchanvre.com/app/uploads/2019/12/favicon.png", "cover_url": "https://duchanvre.com/app/uploads/2019/12/DuChanvre-5.jpg", "description_meta": "Entreprise qu\u00e9b\u00e9coise \u0153uvrant dans la construction et le design. Sp\u00e9cialistes de l\u2019isolation en b\u00e9ton de chanvre et des finitions \u00e0 la chaux.", "site_name": "DuChanvre."}
\ No newline at end of file
added data/enrich_cache/ducsdemontrichard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ducsdemontrichard.com", "logo_url": "https://ducsdemontrichard.com/cdn/shop/files/favicon-ducs_3c45971c-2889-4bd0-b37a-e88db75491e2_32x32.png?v=1614368664", "cover_url": "https://cdn.shopify.com/s/files/1/0461/7843/5239/files/SEO_Duc-de-Montrichard.jpg?v=1612879881", "description_meta": "Notre maison d&#39;artisans vous propose une grande vari\u00e9t\u00e9 de produits 100% canard , des terrines de gibier qu\u00e9b\u00e9cois, et plus encore!", "site_name": "ducsdemontrichard"}
\ No newline at end of file
added data/enrich_cache/duhaimegourmet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "duhaimegourmet.com", "logo_url": "https://www.duhaimegourmet.com/wp-content/uploads/2018/03/favicon-2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/duminot.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "duminot.com", "logo_url": "https://www.duminot.com/wp-content/uploads/2021/01/cropped-CDM-180x180.png", "cover_url": null, "description_meta": "La Cidrerie Du Minot 281 prix et distinctions remport\u00e9s \u00e0 ce jour. D\u00e9couvrir nos prix D\u00c9COUVREZ NOS CIDRES P\u00c9TILLANTS Bulles naturelles \u00e0 100%. Sans sucre", "site_name": "La Cidrerie du Minot"}
\ No newline at end of file
added data/enrich_cache/dumplingfusion.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "dumplingfusion.ca", "logo_url": "https://www.dumplingfusion.ca/cdn/shop/files/simple_invoice_account_logo_41691_3d358ac334f022f91af6432e47cdc452.png?crop=center&height=32&v=1737413573&width=32", "cover_url": "http://www.dumplingfusion.ca/cdn/shop/files/Couverture_facebook_emballages.png?v=1739812395", "description_meta": "Des dumplings aux multiples saveurs, pas seulement asiatique! \ud83d\ude31 Tout est fait \u00e0 Sherbrooke m\u00eame la p\u00e2te! Un incontournable pour vos r\u00e9ceptions famille/ami!", "site_name": "Dumpling Fusion"}
\ No newline at end of file
added data/enrich_cache/duoverre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "duoverre.com", "logo_url": "https://duoverre.com/cdn/shop/files/favicon_a560d771-ab6e-47bc-bbe1-f916da31df92.png?crop=center&height=32&v=1680265097&width=32", "cover_url": "http://duoverre.com/cdn/shop/files/devant_noir.png?v=1769296767", "description_meta": "Plongez dans l\u2019univers lumineux de DUO verre fusion : cr\u00e9ations uniques en verre fusion, fa\u00e7onn\u00e9es \u00e0 la main au Qu\u00e9bec. Veilleuse rechargeable, bijoux, cadeaux et plus", "site_name": "DUO verre fusion"}
\ No newline at end of file
added data/enrich_cache/durham-sud.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "durham-sud.com", "logo_url": "https://www.durham-sud.com/medias/favicon_2.png", "cover_url": "https://www.durham-sud.com/medias/img/logopartage.png", "description_meta": "La municipalit\u00e9 est fi\u00e8re de vous accueillir sur son site Web officiel.", "site_name": "Durham-Sud"}
\ No newline at end of file
added data/enrich_cache/duusnutrition.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "duusnutrition.com", "logo_url": "https://duusenergy.com/cdn/shop/files/favicon_1.png?v=1771950533&width=180", "cover_url": "http://duusenergy.com/cdn/shop/files/SEO.png?v=1769699830&width=2048", "description_meta": null, "site_name": "Duus Nutrition"}
\ No newline at end of file
added data/enrich_cache/duvillage1860.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "duvillage1860.com", "logo_url": "https://www.duvillage1860.com/-/media/ecosystem/divisions/canada-dairy/sites/du-village/du-village-images/android-icon-192x192.png?h=192&w=192&rev=be21fb26eb754983b2868dee118f71a8&hash=DC458743AA4C15501C4DCC5ED593B8C8", "cover_url": null, "description_meta": null, "site_name": "www.duvillage1860.com"}
\ No newline at end of file
added data/enrich_cache/earthsown.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "earthsown.com", "logo_url": "https://earthsown.com/android-icon-192x192.png", "cover_url": "https://earthsown.com/wp-content/uploads/2023/12/Untitled-design-2023-03-01T153051.971.png", "description_meta": "At Earth&#039;s Own, we got a pretty sweet line-up of mega delish plant-based m*lks that are 100% Canadian and 100% tasty.", "site_name": "Earth&#039;s Own"}
\ No newline at end of file
added data/enrich_cache/easyplanettravel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "easyplanettravel.com", "logo_url": "https://easyplanettravel.com/cdn/shop/files/EPT_logo_en_fr_2025_2.png?crop=center&height=32&v=1745510561&width=32", "cover_url": "http://easyplanettravel.com/cdn/shop/files/Custom_World_Maps_Wanderlust_Gifts_by_Easy_Planet_Travel.png?v=1723645245", "description_meta": "Uniquely Curated Gifts For the Thoughtful Explorer, Custom World Maps, Travel Gifts", "site_name": "Easy Planet Travel"}
\ No newline at end of file
added data/enrich_cache/eaudesourceeverest.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "eaudesourceeverest.com", "logo_url": "https://eaudesourceeverest.com/favicon.ico", "cover_url": null, "description_meta": "Fond\u00c3\u00a9e au Qu\u00c3\u00a9bec depuis plus de 25 ans, Eau de source Everest est embouteilleur et distributeur d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/eautroncsucre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "eautroncsucre.com", "logo_url": "https://eautroncsucre.com/images/webclip.png", "cover_url": "https://uploads-ssl.webflow.com/658204137e6e007ce2c1058c/659ef0d1f114230cb400b197_Capture%20d%E2%80%99e%CC%81cran%2C%20le%202024-01-10%20a%CC%80%2014.28.13.png", "description_meta": "La cabane \u00c3\u00a0 sucre Eau Tronc Sucr\u00c3\u00a9 est une institution du domaine c\u00c3\u00a9ricole dans la belle r\u00c3\u00a9gion de Mirabel.\u00c2\u00a0Nous sommes une cabane \u00c3\u00a0 sucre typique ou vous pouvez manger au printemps les d\u00c3\u00a9licieux produits confectionn\u00c3\u00a9s avec le sirop d&#x27;\u00c3\u00a9rable qui provient de notre \u00c3\u00a9rabli\u00c3\u00a8re.Nous sommes aussi fi\u00c3\u00a8re fabriquant des produits \u00c2\u00a8 Eau Tronc Sucr\u00c3\u00a9\u00c2\u00a8 que vous pouvez maintenant trouver dans ", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ebenistedart.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ebenistedart.ca", "logo_url": "https://ebenistedart.ca/wp-content/uploads/2023/11/cropped-favicon-180x180.png", "cover_url": "https://ebenistedart.ca/wp-content/uploads/2024/05/facebook-1.png", "description_meta": "Chez \u00c9b\u00e9niste d&#039;Art, l\u2019\u00e9b\u00e9nisterie est une passion qui se transmet de p\u00e8re en fils depuis 25 ans...", "site_name": "\u00c9b\u00e9niste d&#039;Art"}
\ No newline at end of file
added data/enrich_cache/ebenisteriepelletieretfils.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ebenisteriepelletieretfils.com", "logo_url": "https://ebenisteriepelletieretfils.com/favicon.ico", "cover_url": null, "description_meta": "&Eacute;b&eacute;nisterie Pelletier et fils", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ebenisteriestevegenesse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ebenisteriestevegenesse.com", "logo_url": "https://ebenisteriestevegenesse.com/favicon.ico", "cover_url": "https://cdn.shopify.com/s/files/1/0274/6964/3861/files/logo.png?height=628&pad_color=f8f8f8&v=1613540770&width=1200", "description_meta": "Jouet en bois fabriqu\u00e9 au Qu\u00e9bec", "site_name": "\u00c9b\u00e9nisterie Steve Genesse"}
\ No newline at end of file
added data/enrich_cache/echappeeiac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "echappeeiac.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/63c5b58e5bd4205344a77eb3/4187bc91-dd9f-49ac-92c6-c6ff330192b0/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/63c5b58e5bd4205344a77eb3/t/695d9ef213516b29da622c1d/1767743218542/Logo.png?format=1500w", "description_meta": null, "site_name": "L"}
\ No newline at end of file
added data/enrich_cache/ecksand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecksand.com", "logo_url": "https://ecksand.com/cdn/shop/files/ECKSAND_STORIES_2025_copy.jpg?crop=center&height=48&v=1763069413&width=48", "cover_url": "https://ecksand.com/cdn/shop/files/89306626_3426783334058598_4333111772434137088_n_eb5754f0-2c6a-434d-9527-5700696f2e5f_1200x1200.jpg?v=1677623853", "description_meta": "Discover Ecksand\u2019s Engagement Rings &amp; Fine Jewelry. Modern heirlooms with a Canadian edge, crafted in solid recycled gold and set with ethical diamonds.", "site_name": "Ecksand"}
\ No newline at end of file
added data/enrich_cache/ecoboeuf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecoboeuf.com", "logo_url": "https://static.wixstatic.com/media/2ffc47_cf70cc3e92dc4ffda39dcfaf7ddb87fa%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/2ffc47_cf70cc3e92dc4ffda39dcfaf7ddb87fa%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ecoledu3iemerang.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecoledu3iemerang.com", "logo_url": "https://static.wixstatic.com/media/837e0b_f0ab2809a2134f27b50f9ac2abcd9984%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/837e0b_f0ab2809a2134f27b50f9ac2abcd9984%7Emv2.jpg", "cover_url": null, "description_meta": "L", "site_name": "\u00c9cole du 3e rang"}
\ No newline at end of file
added data/enrich_cache/ecolocado.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecolocado.com", "logo_url": "https://ecolocado.com/wp-content/uploads/2023/06/cropped-ecolo-cado-official-18-180x180.jpg", "cover_url": "https://ecolocado-photos.storage.googleapis.com/wp-content/uploads/2021/05/13181909/lifestleeco43-1-1.jpeg", "description_meta": "Parcourez les bo\u00eetes cadeaux Ecolocado remplies de produits qu\u00e9b\u00e9cois et \u00e9colos. Pour un magasinage simplifi\u00e9 et des id\u00e9es cadeaux pour toutes les occasions.", "site_name": "Ecolocado"}
\ No newline at end of file
added data/enrich_cache/ecoloco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecoloco.ca", "logo_url": "https://www.ecoloco.ca/cdn/shop/files/Favicon-ecolo-2.svg?crop=center&height=32&v=1755172651&width=32", "cover_url": "http://www.ecoloco.ca/cdn/shop/files/Eco-loco-Createur-de-solution-ecoresponsable_1.jpg?v=1755523738", "description_meta": "Cr\u00e9ateur de solutions \u00e9cologiques et boutique \u00e9cologique. Tout ce que vous avez besoin au quotidien pour une vie plus \u00e9cologique.", "site_name": "Eco Loco"}
\ No newline at end of file
added data/enrich_cache/ecolovestores.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecolovestores.com", "logo_url": "https://ecolovestores.com/cdn/shop/files/ETSY_VIGNETTE.png?crop=center&height=32&v=1736559649&width=32", "cover_url": "http://ecolovestores.com/cdn/shop/files/Copie_de_co._ove_1_correction4_L-Recovered.squrarev600.png?height=628&pad_color=fff&v=1685891478&width=1200", "description_meta": "ecolovestores", "site_name": "ecolovestores"}
\ No newline at end of file
added data/enrich_cache/ecomuso.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecomuso.ca", "logo_url": "https://ecomuso.ca/cdn/shop/files/Icon.png?crop=center&height=32&v=1663605407&width=32", "cover_url": "http://ecomuso.ca/cdn/shop/files/Design_sans_titre_2_5a55f512-b849-43f4-9dd7-802f9e471b0f.png?v=1684443089", "description_meta": "\u00c9comuso est une compagnie qu\u00e9becoise qui se sp\u00e9cialise dans la commercialisation et le d\u00e9veloppement d&#39;accessoires pour chien \u00e9co-responsables! Des colliers et harnais de haute qualit\u00e9 faits avec des tissus de fibres recycl\u00e9es, con\u00e7us pour r\u00e9sister aux plus gros pitous et leur donner un style qui a du chien.", "site_name": "ecomuso.com"}
\ No newline at end of file
added data/enrich_cache/ecoplast.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecoplast.ca", "logo_url": "https://ecoplast.ca/wp-content/uploads/2024/02/cropped-favicon-180x180.png", "cover_url": "https://ecoplast.ca/wp-content/uploads/2024/06/img_about-1.jpg", "description_meta": "\u00c9coplast se sp\u00e9cialise dans la revalorisation de plastique (WPC) avec des r\u00e9sidus de bois afin de cr\u00e9er un composite utiliser dans diff\u00e9rent produits pour l&#039;ext\u00e9rieur.", "site_name": "Ecoplast - Fabricant qu\u00e9b\u00e9cois de WPC"}
\ No newline at end of file
added data/enrich_cache/ecotime.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecotime.ca", "logo_url": "https://ecotime.ca/wp-content/uploads/2024/09/cropped-favicon_Ecotime_144px-180x180.png", "cover_url": "https://ecotime.ca/wp-content/uploads/2022/03/Untitled-design.jpg", "description_meta": "Ecotime con\u00e7oit des syst\u00e8mes innovants et mobilise la soci\u00e9t\u00e9 pour optimiser la gestion circulaire de nos ressources naturelles.", "site_name": "Ecotime"}
\ No newline at end of file
added data/enrich_cache/ecoumene.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ecoumene.com", "logo_url": "https://ecoumene.com/cdn/shop/files/logotype_VERT_RGB_275741.svg?crop=center&height=32&v=1759846731&width=32", "cover_url": null, "description_meta": "The best organic gardeners \u2014 From seeds to tools, find everything you need for your garden right here. A wide selection of quality products that all gardeners will love. Organic.", "site_name": "Jardins de l&#39;\u00e9coum\u00e8ne"}
\ No newline at end of file
added data/enrich_cache/edgarcafebar.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "edgarcafebar.com", "logo_url": "https://edgarcafebar.com/wp-content/uploads/2020/12/cropped-Fichier-1Edgar-180x180.png", "cover_url": "https://edgarcafebar.com/wp-content/uploads/2020/12/Fichier-1Edgar.png", "description_meta": "Restaurant \u00e0 Sept-\u00celes en bordure du fleuve Saint-Laurent. Sp\u00e9cialis\u00e9 dans les produits artisanaux, du terroir, et les fromages.", "site_name": "Edgar Cafe Bar"}
\ No newline at end of file
added data/enrich_cache/edithserei.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "edithserei.com", "logo_url": "https://www.edithserei.com/android-icon-192x192.png", "cover_url": null, "description_meta": "L", "site_name": null}
\ No newline at end of file
added data/enrich_cache/editions-cardinal.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "editions-cardinal.ca", "logo_url": "https://www.editions-cardinal.ca/cdn/shop/files/favicon_les-editions-cardinal.png?crop=center&height=32&v=1707189824&width=32", "cover_url": "http://www.editions-cardinal.ca/cdn/shop/files/logo-inverted.png?height=628&pad_color=ffffff&v=1707908928&width=1200", "description_meta": "D\u00e9couvrez l&#39;univers captivant des \u00c9ditions Cardinal, o\u00f9 l&#39;originalit\u00e9 et la diversit\u00e9 des livres se marient \u00e0 une qualit\u00e9 \u00e9ditoriale exceptionnelle. Explorez notre catalogue et plongez-vous dans des histoires uniques et enrichissantes.", "site_name": "\u00c9ditions Cardinal"}
\ No newline at end of file
added data/enrich_cache/editionsdemortagne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "editionsdemortagne.com", "logo_url": "https://editionsdemortagne.com/wp-content/uploads/2023/10/cropped-Icone_de_mortagne_rgb-180x180.png", "cover_url": null, "description_meta": "Les \u00c9ditions de Mortagne est une maison d&#039;\u00e9ditions qu\u00e9b\u00e9coise qui vous offre la vente en ligne de livres en version papier et \u00e9lectronique.", "site_name": "\u00c9ditions de Mortagne"}
\ No newline at end of file
added data/enrich_cache/edsquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "edsquebec.com", "logo_url": "https://edsquebec.com/wp-content/uploads/2024/12/cropped-logo-eds-font-transparent-francaisC-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/edwardsmokedmeat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "edwardsmokedmeat.com", "logo_url": "https://www.edwardsmokedmeat.com/favicon.ico", "cover_url": "https://www.edwardsmokedmeat.com/https&#x3A;&#x2F;&#x2F;primary.jwwb.nl&#x2F;public&#x2F;g&#x2F;o&#x2F;x&#x2F;temp-bqyelglvorfbqdxgdyrp&#x2F;img_0613-high.jpg&#x3F;enable-io&#x3D;true&amp;enable&#x3D;upscale&amp;fit&#x3D;bounds&amp;width&#x3D;1200", "description_meta": "https://edwardsmokedmeat.order-online.ai/#/", "site_name": null}
\ No newline at end of file
added data/enrich_cache/effetmonstre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "effetmonstre.com", "logo_url": "https://www.effetmonstre.com/app/themes/baserock/assets/ico/android-chrome-384x384.png", "cover_url": "https://www.effetmonstre.com/app/uploads/2023/12/og-tag-em.jpg", "description_meta": "Atteignez de nouveaux sommets gr\u00e2ce \u00e0 notre agence num\u00e9rique \u00e0 Qu\u00e9bec. Laissez-nous vous offrir une solution web qui d\u00e9passera vos attentes!", "site_name": "Effet Monstre"}
\ No newline at end of file
added data/enrich_cache/effikace.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "effikace.ca", "logo_url": "https://www.effikace.ca/cdn/shop/files/effikace-feuille.png?crop=center&height=32&v=1781105511&width=32", "cover_url": "http://www.effikace.ca/cdn/shop/files/effikace-logo-vert_1.png?v=1758470542", "description_meta": "Effikace offers a stain remover designed for deodorant stains and underarm marks, as well as a line of high-performance concentrated cleaners.", "site_name": "Produits Effikace inc."}
\ No newline at end of file
added data/enrich_cache/egagnonetfils.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "egagnonetfils.com", "logo_url": "https://egagnonetfils-com.s3.bhs.io.cloud.ovh.net/2021/06/cropped-logo_m-1-180x180.png", "cover_url": "https://henri.nyc3.cdn.digitaloceanspaces.com/egagnonetfils/wp-content/uploads/2023/05/10164614/brush-dec_2-1-1024x33.png", "description_meta": "https://egagnonetfils.com/wp-content/uploads/2021/09/E.Gagnon-Et-Fils-Ltee-Boston-Seafood-Show-2020-Video-Promo-2.m4v E.Gangon et fils Top services, homard et crab premium D\u00e9couvrez nos produits Quelques mots sur E. Gagnon &amp; Fils Pionnier de la transformation du homard et du crabe commun au Qu\u00e9bec, Degust Mer \u0153uvrant maintenant sous l&rsquo;identit\u00e9 corporative, E. Gagnon et Fils Lt\u00e9e, fait pa", "site_name": "Gagnon et fils"}
\ No newline at end of file
added data/enrich_cache/ekorcekombucha.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ekorcekombucha.com", "logo_url": "https://ekorcekombucha.com/wp-content/uploads/2022/06/ekorce-kombucha-the-fermete-aromatise-favicon.jpg", "cover_url": "https://ekorcekombucha.com/wp-content/themes/Avada/assets/images/logo.png", "description_meta": "IL \u00c9TAIT UNE FOIS \r\n\u00c9korce kombucha, c\u2019est \u00e0 la fois la rusticit\u00e9 d\u2019une Abitibi-T\u00e9miscamingue color\u00e9e et le c\u00f4t\u00e9 sophistiqu\u00e9 de ses trois cr\u00e9ateurs, Jonathan, Philippe et Yan, des gars qui, un soir, autour d\u2019un feu, ont choisi d\u2019unir leurs expertises et de faire", "site_name": "Ekorce Kombucha"}
\ No newline at end of file
added data/enrich_cache/elanbio.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "elanbio.ca", "logo_url": "https://elanbio.ca/cdn/shop/files/favicon-32x32_32x32.png?v=1619812742", "cover_url": null, "description_meta": "Our exclusive organic products are carefully chosen to offer you a selection that is rich in flavour, texture, and freshness. Every one of our products is certified organic, gluten-free, and GMO free.", "site_name": "Elan"}
\ No newline at end of file
added data/enrich_cache/elapierre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "elapierre.com", "logo_url": "https://elapierre.com/wp-content/themes/imago/images/favicon/android-icon-192x192.png", "cover_url": "https://elapierre.com/wp-content/themes/imago/images/ogImageforFacebook.jpg", "description_meta": "Les \u00c9quipements Lapierre, chef de file dans l&#039;\u00e9quipement d&#039;\u00e9rabli\u00e8res et les produits ac\u00e9ricoles. Les experts de votre cabane \u00e0 sucre.", "site_name": "\u00c9quipements Lapierre"}
\ No newline at end of file
added data/enrich_cache/emotionsinwood.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "emotionsinwood.com", "logo_url": "https://emotionsinwood.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/emudundee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "emudundee.com", "logo_url": "https://www.emudundee.com/favicon.ico", "cover_url": "https://www.emudundee.com/image/cache/catalog/2020/emurs-600x315.jpg", "description_meta": "Emu Dundee | Produits novateurs \u00e0 base d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/en.horacejewelry.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "en.horacejewelry.com", "logo_url": "https://en.horacejewelry.com/favicon.ico", "cover_url": null, "description_meta": "Based in Montreal, Horace Jewelry offers affordable jewelry with a modern and dainty touch. Necklace, bracelets, earrings and more: find the perfect accessory!", "site_name": "HoraceJewelry"}
\ No newline at end of file
added data/enrich_cache/en.meemoza.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "en.meemoza.ca", "logo_url": "https://en.meemoza.ca/cdn/shop/files/Logo-no-text-noir.gif?crop=center&height=48&v=1743739405&width=48", "cover_url": "http://en.meemoza.ca/cdn/shop/files/m-logo-fb_1200x1200.jpg?v=1614352714", "description_meta": "Practical and Sustainable Clothing for Women. Tailored in Montreal. A wardrobe full of comfort to enjoy every moment. Since 2011. Discover our products!", "site_name": "Eco-Friendly and Ethical Clothing | Made in Canada | Meemoza"}
\ No newline at end of file
added data/enrich_cache/enfantssauvages.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "enfantssauvages.ca", "logo_url": "https://static.wixstatic.com/media/c631f2_4dece288b5944d73980e4a368eb44f56%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/c631f2_4dece288b5944d73980e4a368eb44f56%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/c631f2_940f7ae33f2e4810ac0aeed9c017a3ee~mv2.jpg/v1/fill/w_2500,h_1496,al_c/c631f2_940f7ae33f2e4810ac0aeed9c017a3ee~mv2.jpg", "description_meta": "Cr\u00e9ations florales uniques, \u00e9coresponsables et sur mesure pour mariages et \u00e9v\u00e9nements prestigieux. Nous offrons des bouquest et artisanat floral haut de gamme.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/entrelesbranches.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "entrelesbranches.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Entre les Branches est une micro-ferme fruiti\u00e8re biologique situ\u00e9e \u00e0 L\u00e9vis. Nous offrons des produits gourmands : p\u00e2tisseries, confitures et caramels. Retrouvez-nous au March\u00e9 fermier de L\u00e9vis et dans des boutiques de la r\u00e9gion.", "site_name": "Entre les Branches"}
\ No newline at end of file
added data/enrich_cache/entreluneetsol.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "entreluneetsol.com", "logo_url": "https://static.wixstatic.com/media/4b7e94_833823d4472b4287b51ae9f38c77006a%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/4b7e94_833823d4472b4287b51ae9f38c77006a%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/entreprises3b.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "entreprises3b.com", "logo_url": "https://www.entreprises3b.com/favicon.ico", "cover_url": null, "description_meta": "entreprises3b.com, Fond\u00e9e en 1999, les Entreprises 3B Inc. est productrice de sirop d&#039;\u00e9rable biologique, Certifi\u00e9 \u00c9cocert Canada.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/entreprisespitre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "entreprisespitre.com", "logo_url": "https://entreprisespitre.com/wp-content/smush-webp/2024/06/cropped-pit_icone_fraise_rouge_rvb_vf-180x180.png.webp", "cover_url": "https://entreprisespitre.com/wp-content/uploads/2024/05/image-share.png", "description_meta": "Nous cultivons avec passion une vari\u00e9t\u00e9 de petits fruits de grande qualit\u00e9 sur nos terres agricoles nich\u00e9es au c\u0153ur des Hautes-Laurentides, notamment des fraises et des framboises.", "site_name": "Les Entreprises Pitre"}
\ No newline at end of file
added data/enrich_cache/epiceriechezpaul.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "epiceriechezpaul.com", "logo_url": "https://epiceriechezpaul.com/wp-content/uploads/2017/09/Thumbsup.png", "cover_url": "https://epiceriechezpaul.com/wp-content/uploads/2017/09/sans-titre-11425082017.jpg", "description_meta": "D\u00e9couvrez nos fameux p\u00e2t\u00e9s croches de l&#039;Isle faits maison, notre p\u00e2t\u00e9 \u00e0 la truite irr\u00e9sistible et nos d\u00e9licieux pains, p\u00e2tisseries &amp; brioches frais du jour!", "site_name": "\u00c9picerie Chez Paul"}
\ No newline at end of file
added data/enrich_cache/epicesdion.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "epicesdion.com", "logo_url": "https://epicesdion.com/wp-content/themes/dion/assets/img/favicon/apple-touch-icon.png", "cover_url": "https://epicesdion.com/wp-content/uploads/2025/09/single-carriere-placeholder-1.jpg", "description_meta": "Herbes, \u00e9pices et m\u00e9langes maison pr\u00e9par\u00e9s au Qu\u00e9bec. Produits sans gluten, sans noix, sans MSG. Plus de 350 vari\u00e9t\u00e9s pour rehausser vos recettes.", "site_name": "Dion Herbes et \u00c9pices"}
\ No newline at end of file
added data/enrich_cache/epicesduguerrier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "epicesduguerrier.com", "logo_url": "https://epicesduguerrier.com/cdn/shop/files/EDG_TeteSeule_LogoNoirFondBlanc_f93842cd-4828-414b-8570-908337abc3d1_32x32.jpg?v=1673369149", "cover_url": "http://epicesduguerrier.com/cdn/shop/files/Epices-du-Guerrier-Logo.jpg?v=1744819539", "description_meta": "Achetez en ligne des \u00e9pices qu\u00e9b\u00e9coises bor\u00e9ales et autochtones, artisanales et cueillies \u00e0 la main selon les traditions des Premi\u00e8res Nations. M\u00e9langes exclusifs pour BBQ, gibier, poulet, poisson, l\u00e9gumes, b\u0153uf, cocktails, cadeaux gourmands et bien plus encore. Livraison rapide partout au Canada.", "site_name": "\u00c9pices du Guerrier"}
\ No newline at end of file
added data/enrich_cache/epil-vite.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "epil-vite.ca", "logo_url": "http://www.epil-vite.ca/favicon.ico", "cover_url": null, "description_meta": "Epil Vite est une marque canadienne de produits \u00e9pilatoires depuis plus de 30 ans qui fournit tous types de cires \u00e9pilatoires de qualit\u00e9 professionnelle.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/epuree.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "epuree.ca", "logo_url": "https://epuree.ca/wp-content/uploads/2021/10/favicon_epuree_512x512-300x300.png", "cover_url": "https://epuree.ca/wp-content/uploads/2021/10/Sans-titre-35.png", "description_meta": "Pur\u00e9e de bonheur, pill\u00e9e au Qu\u00e9bec D\u00e9couvrir les saveurs SansGluten Sans saveurs artificielles SansOGM Sans agentsde conservation 15 D\u00e9licieuses saveurs Simple et rapide Cuisson Ins\u00e9rez le sachet dans l\u2019eau bouillante pendant une dizaine de minutes Pr\u00e9paration Amusez-vous \u00e0 monter votre assiette. Vous pouvez vous inspirer de nos recettes Savourez Profitez et savourez votre repas entre", "site_name": "\u00c9pur\u00e9e - Inspiration Chef"}
\ No newline at end of file
added data/enrich_cache/equipebergerontremblay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "equipebergerontremblay.com", "logo_url": "https://www.equipebergerontremblay.com/images2/favicons/apple-touch-icon.png", "cover_url": "https://www.equipebergerontremblay.com/images/facebook_ban.jpg", "description_meta": "Propri\u00e9t\u00e9s \u00e0 vendre \u00e0 St-Agapit avec le courtier immobilier \u00e0 St-Agapit \u00c9quipe Bergeron Tremblay", "site_name": "Propri\u00e9t\u00e9s \u00e0 vendre \u00e0 St-Agapit avec le courtier immobilier \u00e0 St-Agapit \u00c9quipe"}
\ No newline at end of file
added data/enrich_cache/equipelebleu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "equipelebleu.com", "logo_url": "https://equipelebleu.com/wp-content/themes/lebleu/assets/favicon/apple-touch-icon.png", "cover_url": "https://equipelebleu.com/wp-content/uploads/2024/07/LeBleu_bureaux-300dpi\u00a9Christian_Leduc-0021-1024x681.jpg", "description_meta": "Nous sommes des cr\u00e9ateurs de fiert\u00e9 et d\u2019impact. Nos id\u00e9es et nos pratiques sont audacieuses et courageuses.", "site_name": "LEBLEU Communication humaine | Ressources humaines, Marketing, Design et Web"}
\ No newline at end of file
added data/enrich_cache/equipementswoody.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "equipementswoody.com", "logo_url": "https://equipementswoody.com/favicon.ico", "cover_url": "https://equipementswoody.com/images/woody-logo-fr.png", "description_meta": "\u00c9quipements Woody | Accueil", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabeille.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabeille.com", "logo_url": "http://erabeille.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabilis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabilis.com", "logo_url": "https://erabilis.com/favicon.ico", "cover_url": "https://erabilis.com/administrator/cache/preview/c5143f84671b4b0484e48505eea1e85e.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erable.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erable.ca", "logo_url": "https://www.erable.ca/favicon.ico", "cover_url": null, "description_meta": "Terre de cr\u00e9ativit\u00e9", "site_name": "Region de L&#039;Erable"}
\ No newline at end of file
added data/enrich_cache/erableappalaches.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erableappalaches.ca", "logo_url": "https://erableappalaches.ca/cdn/shop/files/apple-touch-icon.png?crop=center&height=32&v=1667233623&width=32", "cover_url": "http://erableappalaches.ca/cdn/shop/files/ProduitsChaudiere_Logo.png?height=628&pad_color=fff&v=1699480979&width=1200", "description_meta": "Produits d&#39;\u00e9rable des Appalaches", "site_name": "Produits d&#39;\u00e9rable des Appalaches"}
\ No newline at end of file
added data/enrich_cache/erableaufildutemps.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erableaufildutemps.ca", "logo_url": "https://erableaufildutemps.ca/favicon.ico", "cover_url": null, "description_meta": "Producteurs d&#39;\u00e9rable biologiques \u00e0 Mont-Saint-Gr\u00e9goire, QC. Sirop d&#39;\u00e9rable, autocueillette d&#39;asperges et de bleuets, Maple Time mini c\u00f4nes. Boutique en ligne et kiosque \u00e0 la ferme.", "site_name": "L&#39;\u00c9rable au Fil du Temps"}
\ No newline at end of file
added data/enrich_cache/erablementbon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablementbon.com", "logo_url": "https://erablementbon.com/favicon/apple-touch-icon.png", "cover_url": "https://erablementbon.com/imgs/erablement_bon.jpg", "description_meta": "\u00c9rablement Bon prolonge le temps des sucres \u00e0 l\u2019ann\u00e9e avec des produits d\u2019\u00e9rable artisanaux et des services mobiles pour vos \u00e9v\u00e9nements, partout en Mont\u00e9r\u00e9gie.", "site_name": "erablementbon.com"}
\ No newline at end of file
added data/enrich_cache/erablesdupatrimoinetheberge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablesdupatrimoinetheberge.com", "logo_url": "https://tracemaple.com/cdn/shop/files/trace-favicon_32x32.png?v=1741312065", "cover_url": "http://tracemaple.com/cdn/shop/files/Trace_logo_descrip._noir_1200x1200.png?v=1740342094", "description_meta": "Treat yourself and enjoy our maple products from the comfort of your home. Browse our wide selection of maple delights\u2014maple syrup, maple candy, maple caramel, and much more.", "site_name": "Trace - \u00c9rable &amp; Territoire"}
\ No newline at end of file
added data/enrich_cache/erabliere-cheminduroy.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliere-cheminduroy.qc.ca", "logo_url": "https://erabliere-cheminduroy.qc.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliere-st-henri.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliere-st-henri.ca", "logo_url": "https://www.erabliere-st-henri.ca/wp-content/uploads/favicon.jpg", "cover_url": "https://www.erabliere-st-henri.ca/wp-content/uploads/repas-300x192.png", "description_meta": "Venez d\u00e9guster des mets typiquement qu\u00e9becois fait enti\u00e8rement maison qui saura plaire au plus fin palais. Appelez-nous au (450) 459-9469", "site_name": "\u00c9rabli\u00e8re St-Henri"}
\ No newline at end of file
added data/enrich_cache/erabliereagregoire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereagregoire.com", "logo_url": "https://erabliereagregoire.com/favicon.ico", "cover_url": null, "description_meta": "\u00c3\u0089rabli\u00c3\u00a8re familiale \u00c3\u00a9tablie depuis 1962, La Mine d&#039;Arts - \u00c3\u0089rabli\u00c3\u00a8re Aur\u00c3\u00a9lien Gr\u00c3\u00a9goire inc. exploite plusieurs ressources \u00c3\u00a0 travers les richesses naturelles qu&#039;elle poss\u00c3\u00a8de. Vous pourrez y trouver du sirop d&#039;\u00c3\u00a9rable ainsi que plusieurs produits d&#039;\u00c3\u00a9rable.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereauxpetitsplaisirs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereauxpetitsplaisirs.ca", "logo_url": "https://auxpetitsplaisirs.ca/cdn/shop/files/logo_aux_petits_plaisirs.png?crop=center&height=32&v=1767834397&width=32", "cover_url": "http://auxpetitsplaisirs.ca/cdn/shop/files/collage.png?v=1779478045", "description_meta": "Exp\u00e9rience gourmande \u00e0 la ferme \u00e0 Warwick. Table fermi\u00e8re, menu de saison, produits locaux et ambiance conviviale. R\u00e9servez votre place.", "site_name": "Aux Petits Plaisirs"}
\ No newline at end of file
added data/enrich_cache/erabliereauxquatresaveurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereauxquatresaveurs.com", "logo_url": "https://www.erabliereauxquatresaveurs.com/cdn/shop/files/Design_sans_titre_9.png?crop=center&height=32&v=1779223880&width=32", "cover_url": "https://www.erabliereauxquatresaveurs.com/cdn/shop/files/EAQS_Logo_Integrale_Pastille_Quebec_Encadre_2Couleurs_RVB_3123d5b9-624f-49e3-af1d-3ec372cf9a0a.png?v=1749839025&width=1024", "description_meta": "\u00c9rabli\u00e8re aux quatre saveurs", "site_name": "\u00c9rabli\u00e8re aux quatre saveurs"}
\ No newline at end of file
added data/enrich_cache/erablierebernard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierebernard.com", "logo_url": "https://erablierebernard.com/wp-content/uploads/2023/04/cropped-logo_feuille_seule_EB-180x180.png", "cover_url": "https://erablierebernard.com/wp-content/uploads/2025/05/Design-sans-titre-15.png", "description_meta": "Facilitez-vous la vie avec notre savoureuse vari\u00e9t\u00e9 de mets cuisin\u00e9s surgel\u00e9s. Situ\u00e9 \u00e0 Granby pour r\u00e9ception du temps des sucres, temps des f\u00eates et autres!", "site_name": "\u00c9rabli\u00e8re Bernard"}
\ No newline at end of file
added data/enrich_cache/erablierebrixetcompagnie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierebrixetcompagnie.com", "logo_url": "https://www.erablierebrixetcompagnie.com/uploads/b/82e15cb0-7871-11ea-89a1-65aec8b78481/icon_180x180_ios_ODAzOD.png?width=180", "cover_url": null, "description_meta": "Sirop et sous-produits d&#039;\u00e9rable \u00e0 l&#039;ann\u00e9e. Livraison possible.\nTout plein d&#039;emballages-cadeaux disponibles, communiquez avec nous.", "site_name": "\u00c9rabli\u00e8re Brix et Compagnie"}
\ No newline at end of file
added data/enrich_cache/erablierecharbonneau.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierecharbonneau.qc.ca", "logo_url": "https://erablierecharbonneau.qc.ca/icon.png?icon.131ele0vr1rks.png", "cover_url": "https://erablierecharbonneau.qc.ca/images/og-default.jpg", "description_meta": "\u00c9rabli\u00e8re familiale au pied du Mont-Saint-Gr\u00e9goire. Cinq g\u00e9n\u00e9rations d&#x27;ac\u00e9riculteurs. Repas traditionnel des sucres \u00e0 volont\u00e9, casse-cro\u00fbte d&#x27;\u00e9t\u00e9 et bi\u00e8res CABANAK, mariages et \u00e9v\u00e9nements priv\u00e9s jusqu&#x27;\u00e0 250 convives, boutique de produits d&#x27;\u00e9rable.", "site_name": "\u00c9rabli\u00e8re Charbonneau"}
\ No newline at end of file
added data/enrich_cache/erablierechezlahaie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierechezlahaie.com", "logo_url": "https://erablierechezlahaie.com/wp-content/uploads/2016/08/cropped-favicon-grey-180x180.png", "cover_url": "https://erablierechezlahaie.com/wp-content/uploads/2016/08/cropped-favicon-grey.png", "description_meta": null, "site_name": "Erabliere Lahaie"}
\ No newline at end of file
added data/enrich_cache/erablieredanielrobert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieredanielrobert.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "\u00c9rabli\u00e8re Daniel Robert transforme des produits de l", "site_name": "My Site 1"}
\ No newline at end of file
added data/enrich_cache/erablieredenisbedard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieredenisbedard.com", "logo_url": "https://erablieredenisbedard.com/favicon.ico", "cover_url": null, "description_meta": "L", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereducap.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereducap.com", "logo_url": "https://img1.wsimg.com/isteam/ip/385a3dc5-13c8-4f6c-8f62-e6350756c060/Logo_ErabliereDuCap_Blanc.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/385a3dc5-13c8-4f6c-8f62-e6350756c060/blob-232ce96.png", "description_meta": "Notre \u00e9rabli\u00e8re familiale, en fonction depuis 1984, offre des repas de cabane \u00e0 sucre, des visites de l&#x27;\u00e9rabli\u00e8re ainsi qu&#x27;une boutique de produits d&#x27;\u00e9rable!", "site_name": "\u00c9rabli\u00e8re du Cap"}
\ No newline at end of file
added data/enrich_cache/erabliereducap.order-online.ai.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereducap.order-online.ai", "logo_url": "https://erabliereducap.order-online.ai/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereduchesne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereduchesne.com", "logo_url": "http://www.erabliereduchesne.com/favicon.ico", "cover_url": "http://www.erabliereduchesne.com/uploads/1/4/6/3/14637062/p39.png", "description_meta": "&#039;&#039;VENEZ VIVRE L&#039;AMBIANCE D&#039;UNE VRAI CABANE \u00c0 SUCRE&#039;&#039; \n819-565-2806,\n819-348-2610", "site_name": "Mon site"}
\ No newline at end of file
added data/enrich_cache/erabliereducoeursucre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereducoeursucre.com", "logo_url": "https://erabliereducoeursucre.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erablieredulactaureau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieredulactaureau.com", "logo_url": "https://erablieredulactaureau.com/boutique/image/catalog/cart.png", "cover_url": null, "description_meta": null, "site_name": "Erabli\u00e8re du lac Taureau"}
\ No newline at end of file
added data/enrich_cache/erablieredunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieredunord.com", "logo_url": "https://erablieredunord.com/cdn/shop/files/favicon_32x32.jpg?v=1698866227", "cover_url": null, "description_meta": "Les \u00c9rabli\u00e8res du Nord est une entreprise situ\u00e9e \u00e0 Trois-Rives en Mauricie, qui produit un sirop d&#39;\u00e9rable de qualit\u00e9, certifi\u00e9 biologique. Des produits tels que le beurre et la tire sont offerts. Choisissez les \u00c9rabli\u00e8res du Nord pour vos cadeaux corporatifs, en offrant une bouteille personnalis\u00e9e avec votre logo.", "site_name": "Les \u00c9rablieres du Nord"}
\ No newline at end of file
added data/enrich_cache/erabliereduruisseau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereduruisseau.ca", "logo_url": "https://erabliereduruisseau.ca/wp-content/uploads/2019/11/cropped-favicon-2019_erabliere-du-ruisseau-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereduvillage.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereduvillage.ca", "logo_url": "https://erabliereduvillage.ca/cdn/shop/files/Sans_titre_43.png?crop=center&height=32&v=1674258008&width=32", "cover_url": "http://erabliereduvillage.ca/cdn/shop/files/Sans_titre_27.jpg?v=1677007911", "description_meta": "Un des meilleurs endroits pour savourer l&#39;\u00e9rable et vivre une exp\u00e9rience gourmande toute l&#39;ann\u00e9e! Beergarden avec terrasse sous les \u00e9rables l&#39;\u00e9t\u00e9. Repas du temps des sucres traditionnels et r\u00e9invent\u00e9s au printemps. Produits de l&#39;\u00e9rable fins et gourmands disponibles dans notre boutique sur place ouverte \u00e0 l&#39;ann\u00e9e!", "site_name": "\u00c9rabli\u00e8re du Village"}
\ No newline at end of file
added data/enrich_cache/erablierefamilialepbernier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierefamilialepbernier.ca", "logo_url": "https://erablierefamilialepbernier.ca/wp-content/uploads/2019/04/cropped-Fichier-1-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erablieregouin.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieregouin.ca", "logo_url": "http://erablieregouin.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereiledorleans.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereiledorleans.qc.ca", "logo_url": "http://www.erabliereiledorleans.qc.ca/favicon.ico", "cover_url": null, "description_meta": "L", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erablierejbcaron.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierejbcaron.ca", "logo_url": "https://erablierejbcaron.ca/images/favicon.png", "cover_url": null, "description_meta": null, "site_name": "\u00c9rabli\u00e8re JB Caron"}
\ No newline at end of file
added data/enrich_cache/erablierejt.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierejt.ca", "logo_url": "https://www.erablierejt.ca/favicon.ico", "cover_url": "https://www.erablierejt.ca/wp-content/uploads/2022/10/accueil-canne-sirop.png", "description_meta": "Commandez notre sirop et nos produits d\u2019\u00e9rable en ligne, directement sur notre site Internet!", "site_name": "\u00c9rabli\u00e8re J\u00e9r\u00e9mie T\u00e9treault"}
\ No newline at end of file
added data/enrich_cache/erablierelacbeauport.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierelacbeauport.com", "logo_url": "https://www.erablierelacbeauport.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/69419b22038a4353099c0866/t/69419d64ba9a7e698b3b38b7/1765907812204/Logo+E%CC%81rablie%CC%80re+2.png?format=1500w", "description_meta": null, "site_name": "\u00c9rabli\u00e8re du Lac-Beauport"}
\ No newline at end of file
added data/enrich_cache/erablierelacouleedouce.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierelacouleedouce.com", "logo_url": "https://erablierelacouleedouce.com/cdn/shop/files/logo_fond_transparent.png?crop=center&height=32&v=1767136894&width=32", "cover_url": null, "description_meta": "La Coul\u00e9e Douce", "site_name": "La Coul\u00e9e Douce"}
\ No newline at end of file
added data/enrich_cache/erablierelafabrick.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierelafabrick.com", "logo_url": "https://erablierelafabrick.com/wp-content/uploads/2020/07/Logo-Fabrick-noir-01.png", "cover_url": "http://erablierelafabrick.io/wp-content/uploads/2020/11/Capture-de\u0301cran-le-2020-11-26-a\u0300-17.07.12.png", "description_meta": "Situ\u00e9e \u00e0 Shefford dans les Cantons de l&#039;Est, l&#039;\u00c9rabli\u00e8re La Fabrick est productrice de produits d&#039;\u00e9rable et de sirops vieilli en baril Whisky et Rhum.", "site_name": "\u00c9rabli\u00e8re La Fabrick"}
\ No newline at end of file
added data/enrich_cache/erablierelandry.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierelandry.com", "logo_url": "https://erablierelandry.com/web/20240801213806im_/https://erablierelandry.com/favicon.ico?1680053672", "cover_url": "https://web.archive.org/web/20240801213806im_/http://erablierelandry.com/data/documents/erabliere-landry-cap-st-ignace_partage.png", "description_meta": "Production de sirop d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erablierelapetitegoutte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierelapetitegoutte.com", "logo_url": "https://img1.wsimg.com/isteam/ip/15e75dbe-aa6d-4bbb-8e79-297c09118f43/0-22b46ef.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/15e75dbe-aa6d-4bbb-8e79-297c09118f43/IMG_0916.jpg", "description_meta": "D\u00e9couvrez notre sucrerie \u00e0 l&amp;#39;eau d&amp;#39;\u00e9rable, o\u00f9 tradition et passion se rencontrent pour vous offrir des produits d&amp;#39;\u00e9rable authentiques et savoureux.", "site_name": "Erabli\u00e8re la Petite Goutte"}
\ No newline at end of file
added data/enrich_cache/erablierelataniere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierelataniere.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erablieremarcelvien.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieremarcelvien.com", "logo_url": "http://erablieremarcelvien.com/favicon.ico", "cover_url": null, "description_meta": "\u00c3\u0089rabli\u00c3\u00a8re Marcel Vien", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erablieremartin.order-online.ai.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieremartin.order-online.ai", "logo_url": "https://erablieremartin.order-online.ai/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erablierembouthillette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierembouthillette.com", "logo_url": "https://erablierembouthillette.com/wp-content/uploads/favicon-2.png", "cover_url": "https://erablierembouthillette.com/wp-content/uploads/sirop-1-325x325.png", "description_meta": "L\u2019\u00e9rabli\u00e8re M. Bouthillette est une entreprise familiale situ\u00e9e \u00e0 Bonsecours en Estrie. La famille Bouthillette exploite cette \u00e9rabli\u00e8re depuis 5 g\u00e9n\u00e9rations.", "site_name": "\u00c9rabli\u00e8re M. Bouthillette"}
\ No newline at end of file
added data/enrich_cache/erablieremenard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieremenard.com", "logo_url": "https://www.erablieremenard.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "\u00c9rabli\u00e8re M\u00e9nard"}
\ No newline at end of file
added data/enrich_cache/erablieremeunier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieremeunier.com", "logo_url": "https://erablieremeunier.com/wp-content/uploads/2016/12/cropped-favicon-180x180.png", "cover_url": "https://erablieremeunier.com/wp-content/uploads/2024/02/S245464.jpg", "description_meta": "Venez passer une journ\u00e9e inoubliable \u00e0 la cabane \u00e0 sucre dans une atmosph\u00e8re des plus chaleureuses. Mets traditionnels, tire d&#039;\u00e9rable et activit\u00e9s.", "site_name": "\u00c9rabli\u00e8re Meunier | Cabane \u00e0 sucre familiale, salle de r\u00e9ceptions \u00e0 Richelieu"}
\ No newline at end of file
added data/enrich_cache/erablieremont-rouge.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieremont-rouge.ca", "logo_url": "https://www.erablieremont-rouge.ca/uploads/b/a8f1bde0-5a05-11eb-b0b3-1b5a31a3888b/icon_180x180_ios.png?width=180", "cover_url": "https://www.erablieremont-rouge.ca/uploads/b/a8f1bde0-5a05-11eb-b0b3-1b5a31a3888b/Phil%20et%20marjo%20devant%20cabane_NDU0MT.JPG", "description_meta": "L\u2019\u00e9rabli\u00e8re est le lieu parfait pour se procurer des produits de l\u2019\u00e9rable de toutes sortes et de hautes qualit\u00e9s.", "site_name": "\u00c9rabli\u00e8re Mont-Rouge"}
\ No newline at end of file
added data/enrich_cache/erablieremontsvalin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieremontsvalin.com", "logo_url": "http://erablieremontsvalin.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erablierems.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierems.com", "logo_url": "https://erablierems.com/cdn/shop/files/favicon_32x32.png?v=1625774458", "cover_url": "http://erablierems.com/cdn/shop/files/logo-ms_046b7a81-4b8b-4ac8-86d7-d68b7db102aa_1200x1200.jpg?v=1637007080", "description_meta": "L\u2019\u00c9rabli\u00e8re M.S., un incontournable du temps des sucres dans les Hautes-Laurentides! D\u00e9couvrez nos produits de l&#39;\u00e9rable et mets cuisin\u00e9s traditionnels sur notre boutique!", "site_name": "\u00c9rabli\u00e8re M.S."}
\ No newline at end of file
added data/enrich_cache/erablierenouvellegeneration.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierenouvellegeneration.com", "logo_url": "https://www.erablierenouvellegeneration.com/favicon.ico", "cover_url": null, "description_meta": "Producteur de gel\u00e9e \u00e0 l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereouellet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereouellet.com", "logo_url": "https://erabliereouellet.com/favicon.ico", "cover_url": null, "description_meta": "Accueil", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereprince.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereprince.ca", "logo_url": "https://www.erabliereprince.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereprince.order-online.ai.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereprince.order-online.ai", "logo_url": "https://erabliereprince.order-online.ai/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliereps.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereps.ca", "logo_url": "https://erabliereps.ca/favicon.ico", "cover_url": "https://erabliereps.ca/wp-content/uploads/2024/10/Logo_noir.png", "description_meta": "M\u00e9daill\u00e9 meilleur au Qu\u00e9bec trois ans de suite, il offre des saveurs authentiques. Parfait pour vos cr\u00eapes ou \u00e0 d\u00e9guster seul. Commandez maintenant !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/erabliererivard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliererivard.ca", "logo_url": "https://erabliererivard.ca/cdn/shop/files/Erabilere_Rivard_Logo_Mono_Blanc.pdf.png?crop=center&height=32&v=1764362351&width=32", "cover_url": "http://erabliererivard.ca/cdn/shop/files/logo_erabliere_rivard_bab39cf3-5dea-4e04-8e23-3e80a048d1ab.png?height=628&pad_color=ffffff&v=1764454138&width=1200", "description_meta": "D\u00e9couvrez l\u2019\u00c9rabli\u00e8re Rivard : sirop d\u2019\u00e9rable pur, cr\u00e9ations artisanales et notre incontournable sirop vieilli en f\u00fbt de ch\u00eane, au go\u00fbt profond et raffin\u00e9. Exp\u00e9dition partout au Qu\u00e9bec.", "site_name": "\u00c9rabli\u00e8re Rivard"}
\ No newline at end of file
added data/enrich_cache/erablieresbergeron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieresbergeron.com", "logo_url": "https://erablieresbergeron.com/wp-content/uploads/2024/02/cropped-favicon-les-erablieres-bergeron-180x180.png", "cover_url": null, "description_meta": "D\u00e9gustez chez vous les douceurs de la cabane gr\u00e2ce \u00e0 notre boutique en ligne d\u2019essentiels et de produits fins de l\u2019\u00e9rable.", "site_name": "Les \u00c9rabli\u00e8res Bergeron"}
\ No newline at end of file
added data/enrich_cache/erablieresercovier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieresercovier.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/37d7940e-1722-492a-8f4a-c7686ee4ed68/Logo_ErabliereSercovier.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/37d7940e-1722-492a-8f4a-c7686ee4ed68/_DSC918892.jpg", "description_meta": "Des produits de qualit\u00e9 faits par des passionn\u00e9s d&#39;ici.", "site_name": "\u00c9rabli\u00e8re Sercovier"}
\ No newline at end of file
added data/enrich_cache/erablieresm.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablieresm.com", "logo_url": "https://www.erablieresm.com/wp-content/uploads/2022/09/cropped-esm-1-180x180.png", "cover_url": null, "description_meta": "L\u2019\u00c9rabli\u00e8re Ste-Marguerite, une cabane \u00e0 sucre authentique dans les Laurentides. Repas traditionnel, ambiance festive. R\u00e9servez votre place!", "site_name": "&Eacute;rabli&egrave;re | Cabane &agrave; sucre | Salle de spectacles"}
\ No newline at end of file
added data/enrich_cache/erabliereurbain.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereurbain.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/56f516_785b7cba8eaf42269c241e0e9c33a4c2%7Emv2_d_3456_2304_s_2.jpg/v1/fit/w_2500,h_1330,al_c/56f516_785b7cba8eaf42269c241e0e9c33a4c2%7Emv2_d_3456_2304_s_2.jpg", "description_meta": "L", "site_name": "\u00c9rabliere Urbain"}
\ No newline at end of file
added data/enrich_cache/erabliereversan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erabliereversan.com", "logo_url": "https://erabliereversan.com/wp-content/uploads/2020/10/feuille.png", "cover_url": "https://erabliereversan.com/wp-content/uploads/2020/10/20-ans-deja-facebook-1.jpg", "description_meta": "Notre \u00e9rabli\u00e8re vous propose \u00e0 longueur d\u2019ann\u00e9e un all\u00e9chant \u00e9ventail de repas et des sucreries de produits d&#039;\u00e9rable. Salle \u00e0 manger", "site_name": "\u00c9rabli\u00e8re l&#039;Autre Versan"}
\ No newline at end of file
added data/enrich_cache/erablierewesthill.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erablierewesthill.ca", "logo_url": "https://erablierewesthill.ca/wp-content/uploads/2014/03/cropped-erablierewesthill_logo2-180x180.jpg", "cover_url": "https://erablierewesthill.ca/wp-content/uploads/2026/02/Sirop-2026.jpg", "description_meta": "Tubing collector lines and tapped trees - R&eacute;seau de tubulure et &eacute;rables entaill&eacute;s (see English text after the French text below) Nous avons le plaisir de vous annoncer que l&#039;&Eacute;rabli&egrave;re West Hill f&ecirc;te cette ann&eacute;e son 25&egrave;me anniversaire! C&#039;est avec une grande joie que nous c&eacute;l&eacute;brons ce quart de si&egrave;cle de production ", "site_name": "\u00c9rabli\u00e8re West-Hill Sugar Shack"}
\ No newline at end of file
added data/enrich_cache/erostrength.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erostrength.ca", "logo_url": "https://erostrength.ca/cdn/shop/files/favicons.ai.jpg?crop=center&height=32&v=1757173641&width=32", "cover_url": "http://erostrength.ca/cdn/shop/files/favicons1_8be7ebc9-eb3d-4010-bc97-79c6c4290486.png?v=1740269647", "description_meta": "ero offers premium high-protein overnight oats with zero added sugar. Available in a variety of flavours, our oats offer the perfect balance of nutrition, convenience, and flavour to power your day. The perfect meal for health-conscious individuals. Find your strength with ero!", "site_name": "ero"}
\ No newline at end of file
added data/enrich_cache/erroerro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "erroerro.com", "logo_url": "https://erroerro.com/wp-content/uploads/2020/08/favicon.png", "cover_url": "https://erroerro.com/wp-content/uploads/2020/11/erro-social-fr.png", "description_meta": "Err\u014d, c\u2019est un vin d\u2019\u00e9rable concoct\u00e9 \u00e0 partir de notre propre sirop d\u2019\u00e9rable qu\u00e9b\u00e9cois certifi\u00e9 biologique. D\u00e9couvrer un nouveau classique.", "site_name": "Err\u014d"}
\ No newline at end of file
added data/enrich_cache/escalenature.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "escalenature.ca", "logo_url": "https://escalenature.ca/cdn/shop/files/Escale_Nature_800_x_600_px.webp?crop=center&height=32&v=1731556453&width=32", "cover_url": "http://escalenature.ca/cdn/shop/files/savon-artisanal-naturel-fait-au-quebec.jpg?v=1650375452", "description_meta": "Savons naturels artisanaux et produits pour le corps, produits m\u00e9nagers naturels et \u00e9cologiques comme le savon noir et le savon du pays fait au Qu\u00e9bec.", "site_name": "Savonnerie Escale Nature"}
\ No newline at end of file
added data/enrich_cache/escuminac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "escuminac.com", "logo_url": "https://escuminac.com/cdn/shop/files/barasingha-black_1.png?crop=center&height=32&v=1620183881&width=32", "cover_url": "http://escuminac.com/cdn/shop/files/Frame_6.png?height=628&pad_color=ffffff&v=1732166387&width=1200", "description_meta": "Escuminac brings you unblended, single forest maple syrups that are 100% pure and natural. Check out our delicious maple syrups and order online now!", "site_name": "escuminac-canada"}
\ No newline at end of file
added data/enrich_cache/espaceoriental.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "espaceoriental.com", "logo_url": "https://espaceoriental.com/cdn/shop/files/Espace_Oriental___Logo_1.png?crop=center&height=32&v=1676062499&width=32", "cover_url": "http://espaceoriental.com/cdn/shop/files/Logo___Carre___500X500_6fb0e264-2bdd-4ff8-bac5-654b1e5cf973.png?v=1720469222", "description_meta": "Discover Espace Oriental, THE reference in organic cosmetics in Quebec. Our products are designed and manufactured locally to offer you healthy and effective solutions at a fair price. Welcome to the world of natural well-being.", "site_name": "ESPACE ORIENTAL\u00ae"}
\ No newline at end of file
added data/enrich_cache/espaceterroir.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "espaceterroir.ca", "logo_url": "https://www.espaceterroir.ca/cdn/shop/files/coul_princ.png?crop=center&height=32&v=1654531555&width=32", "cover_url": "http://www.espaceterroir.ca/cdn/shop/files/brun_princ.png?v=1654626350", "description_meta": "Un point de vente in\u00e9dit d\u00e9di\u00e9 aux producteurs et transformateurs alimentaires des Laurentides.", "site_name": "Espace Terroir"}
\ No newline at end of file
added data/enrich_cache/espritdeclocher.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "espritdeclocher.ca", "logo_url": "https://espritdeclocher.ca/icon.png", "cover_url": "http://espritdeclocher.ca/images/logo.png", "description_meta": "BI&Egrave;RE, BOUFFE ET BON TEMPS, TOUT SOUS UN M&Ecirc;ME TOIT!\nBienvenue au Resto-Pub L&rsquo;Esprit de Clocher + Le Baldaquin! Vous y trouverez nos canettes de bi&egrave;res et la plupart de nos plats en formule POUR EMPORTER. Sur place, s&rsquo;ajoutent des burgers, des poutines, des nachos&hellip; Une cuisine de style bistro, une vari&eacute;t&eacute; de bi&egrave;res remarquables, du cidre, ", "site_name": "Microbrasserie L"}
\ No newline at end of file
added data/enrich_cache/esquif.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "esquif.com", "logo_url": "https://www.esquif.com/favicon.ico", "cover_url": "https://www.esquif.com/wp-content/uploads/2020/07/esquif-home.jpg", "description_meta": null, "site_name": "Esquif - Un site utilisant WordPress"}
\ No newline at end of file
added data/enrich_cache/essor.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "essor.ca", "logo_url": "https://www.essor.ca/favicon.ico", "cover_url": null, "description_meta": "Traiter avec un courtier d\u2019assurance Essor, c\u2019est payant! D\u00e9couvrez nos produits d\u2019assurance et nos services financiers.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/etcheminmicrobrasserie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "etcheminmicrobrasserie.ca", "logo_url": "https://static.wixstatic.com/media/0d98fc_ea7374719d044e198760de05ee993353%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/0d98fc_ea7374719d044e198760de05ee993353%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/etohbrasserie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "etohbrasserie.com", "logo_url": "https://etohbrasserie.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/etoiledunord.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "etoiledunord.net", "logo_url": "https://www.etoiledunord.net/wp-content/uploads/2024/02/cropped-EDN-Logo-Facebook-180x180.jpg", "cover_url": "https://www.etoiledunord.net/wp-content/uploads/2021/05/Restaurant-motel-etoile-du-nord-gaspesie-1-copie.jpeg", "description_meta": "Une \u00e9tape incontournable au c\u0153ur de la Gasp\u00e9sie. Cuisine de tradition et du terroir, poisson, homard, fruits de mer, bifteck. H\u00e9bergement en bord de mer.", "site_name": "L&#039;\u00c9toile du Nord"}
\ No newline at end of file
added data/enrich_cache/eugeneallard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "eugeneallard.com", "logo_url": "https://eugeneallard.com/cdn/shop/files/Favicon_Eugene_Allard_3.png?crop=center&height=32&v=1758141541&width=32", "cover_url": "http://eugeneallard.com/cdn/shop/files/Eugene-Allard-L_art-du-bon-gout-2025.png?v=1759981143", "description_meta": "Since 1933, Eug\u00e8ne Allard has been the leading kitchen retailer in Quebec. Discover our cookware, knives, tableware, coffee machines, small appliances, and home goods. Shop online or in-store and enjoy expert service.", "site_name": "Eug\u00e8ne Allard"}
\ No newline at end of file
added data/enrich_cache/eurographics.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "eurographics.ca", "logo_url": "https://www.eurographics.ca/assets/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": "Best Colorful Art and Puzzles at Eurographics", "site_name": "Eurographics"}
\ No newline at end of file
added data/enrich_cache/eva25.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "eva25.ca", "logo_url": "https://eva25.ca/wp-content/uploads/2024/06/cropped-Frame-1-180x180.png", "cover_url": "https://eva25.ca/wp-content/uploads/2025/08/44954304560341d304fabb33075d7ff48749afb1-scaled.jpg", "description_meta": "Les v\u00e9hicules antiques de plus de 25 ans n\u00e9cessitent une \u00e9valuation de leur valeur marchande avant de d\u00e9poser une demande \u00e0 la SAAQ : voiture, moto, VR,...", "site_name": "\u00c9VA25"}
\ No newline at end of file
added data/enrich_cache/evaluationautoantique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "evaluationautoantique.com", "logo_url": "https://evaluationautoantique.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/evaporateur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "evaporateur.com", "logo_url": "https://www.evaporateur.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/evofinition.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "evofinition.ca", "logo_url": "https://evofinition.ca/wp-content/uploads/2021/11/favicon.png", "cover_url": null, "description_meta": null, "site_name": "Finitions EVO"}
\ No newline at end of file
added data/enrich_cache/exceldor.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "exceldor.ca", "logo_url": "https://www.exceldor.ca/assets/favicon/apple-touch-icon.png", "cover_url": "https://s3.ca-central-1.amazonaws.com/files.exceldor.ca/files/recettes/_1200x630_crop_center-center_82_none/COLLABO-Brochettes-de-poulet-BBQ-whisky-et-cassonade.jpg?mtime=1620823339", "description_meta": "Pr\u00e9sentation de la marque Exceldor, on y retrouve les nouveaut\u00e9s, les descriptions d\u00e9taill\u00e9es des produits, la liste des d\u00e9taillants, et les rabais de la\u2026", "site_name": "Exceldor"}
\ No newline at end of file
added data/enrich_cache/expertsnutrite.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "expertsnutrite.com", "logo_url": "https://expertsnutrite.com/favicon.ico", "cover_url": "https://expertsnutrite.com/wp-content/uploads/2022/02/le-reseau-dexperts-nutrite-votre-allie-pour-une-pelouse-durable-et-en-sante.jpg", "description_meta": "Confiez l&#039;entretien de votre pelouse aux Experts Nutrite! Fertilisation, engrais et traitements pour une pelouse durable et en sant\u00e9. Visitez notre site Web!", "site_name": "Le r\u00e9seau d\u2019Experts Nutrite | Votre alli\u00e9 pour une pelouse durable et en sant\u00e9"}
\ No newline at end of file
added data/enrich_cache/expireddomains.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "expireddomains.com", "logo_url": "https://expireddomains.com/ed2assets/icon-512.png?v=ed2assets", "cover_url": "https://expireddomains.com/ed2assets/og-default.jpg", "description_meta": "Buy expired domains with real SEO authority. Search 19M+ auctions, closeouts &amp; drops by DA, backlinks, age &amp; traffic \u2014 bid or buy in one click.", "site_name": "ExpiredDomains.com"}
\ No newline at end of file
added data/enrich_cache/explore.pivohub.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "explore.pivohub.com", "logo_url": "https://explore.pivohub.com/apple-touch-icon.png", "cover_url": "https://explore.pivohub.com/apple-touch-icon.png", "description_meta": "Explorez la bi\u00e8re artisanale, le caf\u00e9, le cidre et bien plus pr\u00e8s de chez vous! Pr\u00e9sent\u00e9 par PivoHub.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fabetco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fabetco.com", "logo_url": "https://fabetco.com/cdn/shop/files/path1.svg?crop=center&height=48&v=1705605857&width=48", "cover_url": "http://fabetco.com/cdn/shop/files/fabetco.svg?v=1713390767", "description_meta": "Bienvenue chez Fabetco, notre p\u00e2tisserie locale est devenue un incontournable gr\u00e2ce \u00e0 ses d\u00e9licieux beignes frais quotidiens. Que vous pr\u00e9f\u00e9riez les classiques ou les cr\u00e9ations innovantes, nos saveurs uniques utilisant des ingr\u00e9dients locaux de qualit\u00e9 sauront ravir vos papilles.", "site_name": "Fab&amp;Co"}
\ No newline at end of file
added data/enrich_cache/fabhandcrafted.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fabhandcrafted.com", "logo_url": "https://www.fabhandcrafted.com/cdn/shop/files/FAV_fab_32x32.png?v=1614304014", "cover_url": null, "description_meta": "Discover our handcrafted leather goods in Montreal. Experience the art of leatherwork and quality craftsmanship with Fab\u2019. Shop online now!", "site_name": "Fab&#39;"}
\ No newline at end of file
added data/enrich_cache/fabli.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fabli.co", "logo_url": "https://fabli.co/cdn/shop/files/fabli-favicon.png?crop=center&height=32&v=1745073975&width=32", "cover_url": "http://fabli.co/cdn/shop/files/fabli_logotype_jaune.png?height=628&pad_color=ffffff&v=1745073947&width=1200", "description_meta": "Fabli, the screen-free audio companion that helps children grow up differently \u2014 with stories, games, and music.", "site_name": "Fabli"}
\ No newline at end of file
added data/enrich_cache/fabriqueallwood.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fabriqueallwood.ca", "logo_url": "https://fabriqueallwood.ca/cdn/shop/files/fabrique-allwood-logo-dark.svg?crop=center&height=32&v=1719930497&width=32", "cover_url": "http://fabriqueallwood.ca/cdn/shop/files/Fabrique_all_wood_set_28267.jpg?v=1747658974", "description_meta": "D\u00e9couvrez La Fabrique Allwood, un savoir-faire qu\u00e9b\u00e9cois : des meubles \u00e9coresponsable en bois massif faits \u00e0 la main au Qu\u00e9bec, con\u00e7us pour durer.", "site_name": "La Fabrique Allwood"}
\ No newline at end of file
added data/enrich_cache/faceaufleuve.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "faceaufleuve.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/27f36885-926e-4b70-ac2a-cdca7e424f11/BanniereWeb_1913x820_FaceAuFleuve.jpg", "description_meta": null, "site_name": "Faceaufleuve"}
\ No newline at end of file
added data/enrich_cache/faceboock.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "faceboock.com", "logo_url": "https://faceboock.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/facembrace.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "facembrace.com", "logo_url": "https://facembrace.com/web/image/website/1/favicon/", "cover_url": "http://facembrace.com/web/image/10819/logo_facembrace_R-horizontal.png", "description_meta": "Facembrace offre le parfait compl\u00e9ment de confort du masque respiratoire pour votre th\u00e9rapie \u00e0 PPC (CPAP) et le masque de protection antiprojection le plus confortable sur le march\u00e9.", "site_name": "Rheabrio"}
\ No newline at end of file
added data/enrich_cache/fafard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fafard.ca", "logo_url": "https://www.fafard.ca/wp-content/themes/base-theme/assets/img/icons/favicon.ico", "cover_url": null, "description_meta": "Fafard brand quality potting soils, fertilizers, composts and soil amendments have been accompanying Canada&#039;s gardeners in all their projects since 1940.", "site_name": "Scotts Fafard"}
\ No newline at end of file
added data/enrich_cache/fairmont-manoir-richelieu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fairmont-manoir-richelieu.com", "logo_url": "https://www.fairmont-manoir-richelieu.com/content/themes/base/assets/img/favicon/android-icon-192x192.png", "cover_url": "https://www.fairmont-manoir-richelieu.com/content/uploads/2023/02/6473-49.jpg", "description_meta": "Luxury resort overlooking the St. Lawrence River in the heart of Charlevoix. Spa, golf, 6 restaurants, casino, rooms with river views and private event venues.", "site_name": "Fairmont Le Manoir Richelieu"}
\ No newline at end of file
added data/enrich_cache/fairmont.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fairmont.com", "logo_url": "https://www.fairmont.com/content/dam/technical-folder/seo/fairmont/apple-touch-icon.png", "cover_url": "https://static-p46175-e229011.adobeaemcloud.com/fa3c8c3ec84cd677a2c7ee41023dd9214038cbd7bee282d0203c2716927f8933/resources/images/favicon-1200x630.png", "description_meta": "Montagnes enneig\u00e9es et ciel \u00e9toil\u00e9. Plages vierges qui s\u2019\u00e9tendent \u00e0 l\u2019horizon. Escapades urbaines pleines d\u2019aventures. O\u00f9 que vous voyagiez, vous profiterez avec nous de paysages \u00e0 couper le souffle et de moments inoubliables. Chez Fairmont, le v\u00e9ritable luxe est \u00e0 port\u00e9e de toutes et tous.", "site_name": "Fairmont Hotels &amp; Resorts"}
\ No newline at end of file
added data/enrich_cache/famille-leclerc-charlevoix.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "famille-leclerc-charlevoix.net", "logo_url": "http://famille-leclerc-charlevoix.net/favicon.ico", "cover_url": null, "description_meta": "La famille Leclec a plusieurs produits diversifi\u00e9s comme notre camping, notre maison ancestrale, notre chantier naval et la p\u00eache.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/famillemigneron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "famillemigneron.com", "logo_url": "https://famillemigneron.com/wp-content/themes/migneron/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": "Famille Migneron"}
\ No newline at end of file
added data/enrich_cache/fantaisieduble.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fantaisieduble.ca", "logo_url": "https://www.fantaisieduble.ca/favicon.ico", "cover_url": "https://www.fantaisieduble.ca/images/logo-sociaux.jpg", "description_meta": "Fantaisie du bl\u00e9 offre des services de traiteur de buffet froid, des plats familiaux ou individuels en pr\u00eat-\u00e0-manger, des bo\u00eetes \u00e0 lunch, des d\u00e9jeuners, des pains, des p\u00e2tisseries et des desserts.", "site_name": "Fantaisie du bl\u00e9"}
\ No newline at end of file
added data/enrich_cache/farnham-alelager.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "farnham-alelager.com", "logo_url": "https://farnham-alelager.com/wp-content/uploads/favicon-200x200.png", "cover_url": "https://farnham-alelager.com/wp-content/uploads/Img-sharing-Farnham-1024x544.png", "description_meta": "Un peu am\u00e8re. #incanswetrust", "site_name": "Farnham Ale &amp; Lager"}
\ No newline at end of file
added data/enrich_cache/farouche.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "farouche.ca", "logo_url": "https://www.farouche.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/67fc4e0d93520c049a9846c2/t/69e698086fd7237688b40c04/1776719880926/Logo+farouche_500w.png?format=1500w", "description_meta": "Sanctuaire nature avec des h\u00e9bergements luxueux et des activit\u00e9s immersives. R\u00e9servez votre retraite au c\u0153ur de la nature sauvage. Sur place refuges luxueux, ferme nordique, activit\u00e9s plein air sur la rivi\u00e8re du diable en paddleboard, en randonn\u00e9e en montagne et en fatbike electrique. Explorer le pa", "site_name": "Farouche Tremblant - Hotel nature &amp; Experiences"}
\ No newline at end of file
added data/enrich_cache/faunenord.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "faunenord.org", "logo_url": "https://faunenord.org/wp-content/uploads/2023/03/logoFaunENord_Blanc.png", "cover_url": "https://faunenord.org/wp-content/uploads/2023/03/logoFaunENord_Blanc.png", "description_meta": "FaunENord Votre organisme r\u00e9gional au service de la soci\u00e9t\u00e9 et de l&#039;environnement Faunenord est un organisme \u00e0 but non lucratif, entreprise d\u2019\u00e9conomie sociale, \u0153uvrant en environnement. Notre mission est de contribuer au d\u00e9veloppement durable du Nord-du-Qu\u00e9bec en offrant nos services-conseils et en d\u00e9veloppant des projets structurants dans les domaines de l\u2019am\u00e9nagement int\u00e9gr\u00e9 du territoire, ", "site_name": "FaunENord - FaunENord votre organisme r\u00e9gional au service de la soci\u00e9t\u00e9 et de l\u2019"}
\ No newline at end of file
added data/enrich_cache/fauxbergers.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fauxbergers.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/59ef6707bce176836d20a985/1523137300423-OEMTA9S9EW552IQ7JY4S/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/59ef6707bce176836d20a985/t/5ac93b02aa4a998f3f2d6d80/1523137292135/Capture+d%E2%80%99%C3%A9cran+2017-05-26+%C3%A0+10.17.35.png+%E2%80%8E-+Photos_002957.png?format=1500w", "description_meta": "Les restaurants Faux Bergers et la Buvette gentille misent sur la fra\u00eecheur des produits locaux de qualit\u00e9 afin d\u2019offrir des exp\u00e9riences gastronomiques uniques.", "site_name": "Faux Bergers"}
\ No newline at end of file
added data/enrich_cache/fayschocolat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fayschocolat.com", "logo_url": "https://fayschocolat.com/cdn/shop/files/Favicon-Fays_Logo_Coq_Gold_32x32.jpg?v=1666016870", "cover_url": "http://fayschocolat.com/cdn/shop/files/Fays_Logo-03_ab7f9227-c0b2-4364-b94d-814e65e6a8dd.png?v=1667921916", "description_meta": "Notre chocolaterie artisanale r\u00e9invente la tradition pour vous offrir une exp\u00e9rience chocolat\u00e9e hors du commun et fi\u00e8rement d\u2019ici.", "site_name": "FAYS, terroir chocolat\u00e9"}
\ No newline at end of file
added data/enrich_cache/fcoshop.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fcoshop.ca", "logo_url": "https://fcoshop.ca/cdn/shop/files/Transparent_7a3b4e3f-5979-460c-a185-a7719bf6e18d.png?crop=center&height=32&v=1677189093&width=32", "cover_url": "http://fcoshop.ca/cdn/shop/files/Transparent_d41048bc-5c93-49eb-84f5-27154011f591.png?v=1676423934", "description_meta": "Fourrure et Compagnie offre des produits d&#39;entretien et des accessoires pour chien 100% fabriqu\u00e9s au Qu\u00e9bec. Shampooing pour chien, accessoires de cuir et de cuir v\u00e9gan, baume pour pattes ou bandanas de coton, vous trouverez ici ,le produit parfait pour votre chien.", "site_name": "Fourrure Et Compagnie"}
\ No newline at end of file
added data/enrich_cache/feedesglaces.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "feedesglaces.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/356e70e2-2ed8-4612-9a46-7dec5d4e9835/logo%20f%C3%A9e.jpg", "description_meta": null, "site_name": "La F\u00e9e des glaces"}
\ No newline at end of file
added data/enrich_cache/felixandnorton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "felixandnorton.com", "logo_url": "https://www.felixandnorton.com/cdn/shop/files/logo_fn_socials_new_2025_0f6ced9b-b210-4e03-bb3b-cf185a717748.png?crop=center&height=32&v=1748461831&width=32", "cover_url": "http://www.felixandnorton.com/cdn/shop/files/Events_74ee09b9-3121-4dda-8c47-025edd34ef87.jpg?v=1748883840", "description_meta": "Baking smiles since 1985. F\u00e9lix &amp; Norton is Montreal&#39;s original provider of gourmet cookies. Our rich history is surpassed only by our rich flavours cookies made with pure Belgian chocolate. Now you can have fresh F&amp;N delivered right to your door anywhere in Canada!", "site_name": "F\u00e9lix &amp; Norton"}
\ No newline at end of file
added data/enrich_cache/fenetresconcept.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fenetresconcept.com", "logo_url": "https://www.fenetresconcept.com/apple-touch-icon.png", "cover_url": "https://www.fenetresconcept.com/site_tb.jpg", "description_meta": "Fen\u00eatres Concept se d\u00e9marque en fabriquant et en distribuant ses produits de fenestration via un r\u00e9seau de sp\u00e9cialistes en installation de portes et fen\u00eatres", "site_name": "Fen\u00eatres Concept"}
\ No newline at end of file
added data/enrich_cache/ferbo.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ferbo.ca", "logo_url": "https://ferbo.ca/favicon.ico", "cover_url": "https://ferbo.ca/wp-content/uploads/2019/02/erabliere-ferbo-st-joachim-wide.jpg", "description_meta": "Sirop et produits d\u00e9riv\u00e9s de l\u2019\u00e9rable.", "site_name": "\u00c9rabli\u00e8re Ferbo"}
\ No newline at end of file
added data/enrich_cache/ferme-purmer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ferme-purmer.com", "logo_url": "https://ferme-purmer.com/wp-content/uploads/2016/04/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "En plein c\u0153ur de l\u2019archipel des Sept \u00celes, la Ferme maricole Purmer pratique l\u2019\u00e9levage marin et offre une exp\u00e9rience touristique sans pareil!", "site_name": "Ferme maricole Purmer"}
\ No newline at end of file
added data/enrich_cache/ferme3j.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ferme3j.com", "logo_url": "https://ferme3j.com/favicon.ico", "cover_url": null, "description_meta": "Entreprise familiale qui d\u00e9veloppe diff\u00e9rents produits du terroir : lait de ferme, fromages artisanaux et viande de boucherie, dans un contexte de d\u00e9veloppement durable au Saguenay\u2013Lac-Saint-Jean.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeacielouvert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeacielouvert.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/659622f947607e6dc485f867/63537c1e-5900-4c90-b67a-47dfe30cd8ee/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/659622f947607e6dc485f867/t/68d95e2df71e0a6045109b83/1759075885608/a+ciel+ouvert.png?format=1500w", "description_meta": "Ferme fruiti\u00e8re biologique produisant des fraises, framboises, camerises et tulipes. La Ferme \u00c0 Ciel Ouvert offre \u00e9galement des produits transform\u00e9s \u00e0 d\u00e9guster sur place comme des sorbets, glace, slush, jus \u00e0 base de fruits.", "site_name": "\u00c0 CIEL OUVERT"}
\ No newline at end of file
added data/enrich_cache/fermeagricola.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeagricola.com", "logo_url": "https://fermeagricola.com/wp-content/uploads/2019/01/cropped-Kale-Favicon-White-Leaves-1-180x180.png", "cover_url": "https://fermeagricola.com/wp-content/uploads/2019/02/Agricola-Facebook-Banner.jpg", "description_meta": "At Agricola Cooperative Farm we grow organic vegetables and flowers for the Ottawa/Gatineau region. Join our CSA for fresh organic vegetables!", "site_name": "Agricola Farm"}
\ No newline at end of file
added data/enrich_cache/fermeail-land.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeail-land.com", "logo_url": "https://fermeail-land.com/favicon.ico", "cover_url": "http://fermeail-land.com/cdn/shop/files/Image-logo_1200x1200.jpg?v=1658845120", "description_meta": "Ferme Ail-Land", "site_name": "Ferme Ail-Land"}
\ No newline at end of file
added data/enrich_cache/fermeailailail.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeailailail.com", "logo_url": "https://static.wixstatic.com/media/a1a37d_06847b62db1d4741abaf527d7a258d70%7Emv2_d_1800_1200_s_2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a1a37d_06847b62db1d4741abaf527d7a258d70%7Emv2_d_1800_1200_s_2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeambrosia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeambrosia.com", "logo_url": "https://fermeambrosia.com/wp-content/uploads/2022/06/Plume-1-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeamico.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeamico.com", "logo_url": "https://fermeamico.com/wp-content/uploads/2026/02/favicon4-300x300.png", "cover_url": "https://fermeamico.com/wp-content/uploads/2026/02/amico-smo-visuel.jpg", "description_meta": "Producteur d&#039;\u0153ufs \u00e0 L\u00e9vis, la Ferme Amico offre depuis 1966 des \u0153ufs frais et un engrais naturel, issus d&#039;un savoir-faire familial reconnu.", "site_name": "Ferme Amico"}
\ No newline at end of file
added data/enrich_cache/fermeapicoledulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeapicoledulac.com", "logo_url": "https://cdn.prod.website-files.com/6a26e2fbb52a43529187eeb2/6a299e90d9ff9c8aefa6e384_favicon_256.png", "cover_url": "https://cdn.prod.website-files.com/6a26e2fbb52a43529187eeb2/6a4f8c5c997ddba7aae934aa_cee098e7952518acfec80a303ba86eff_OG-image.jpg", "description_meta": "Artisans apicoles au Saguenay\u2013Lac-Saint-Jean. Miel brut non chauff\u00e9, vente d&#x27;abeilles reines et nucl\u00e9is, autocueillette de camerises. Produits 100 % naturels.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeapicolemekinac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeapicolemekinac.ca", "logo_url": "http://fermeapicolemekinac.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermearcenciel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermearcenciel.ca", "logo_url": "https://fermearcenciel.ca/favicon.ico", "cover_url": "https://storage.googleapis.com/wzsitethumbnails/site-49482986/800x500.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeauxtroissoleils.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeauxtroissoleils.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/1b8dff_ca946f00a656477fa125db5e7f45281a%7Emv2.png/v1/fit/w_2500,h_1330,al_c/1b8dff_ca946f00a656477fa125db5e7f45281a%7Emv2.png", "description_meta": null, "site_name": "Fermeauxtroissoleils"}
\ No newline at end of file
added data/enrich_cache/fermebec-o.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermebec-o.ca", "logo_url": "https://fermebec-o.ca/cdn/shop/files/favicon.png?crop=center&height=32&v=1678537590&width=32", "cover_url": "http://fermebec-o.ca/cdn/shop/files/FermeBecO_Logo_RVB_Noir_06d4cad7-a89d-47d7-aded-f78c953affb5.png?v=1683148426", "description_meta": "Maintenant des \u0153ufs frais de Compton sont disponibles \u00e0 l&#39;ann\u00e9e dans les Cantons-de-l&#39;Est. Go\u00fbtez la diff\u00e9rence chez un d\u00e9taillant ou un restaurateur pr\u00e8s de chez vous!", "site_name": "Ferme Bec-O"}
\ No newline at end of file
added data/enrich_cache/fermebenoitvernier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermebenoitvernier.com", "logo_url": "https://www.fermebenoitvernier.com/cdn/shop/files/corn_square.png?crop=center&height=32&v=1655064032&width=32", "cover_url": "http://www.fermebenoitvernier.com/cdn/shop/files/LOGO_FERME_BENOIT_VERNIER_8de6dd3f-4260-437a-89cf-4ce7d763ff81.png?height=628&pad_color=fff&v=1655063865&width=1200", "description_meta": "Ferme mara\u00eech\u00e8re situ\u00e9 \u00e0 Saint-Zotique, Qu\u00e9bec. Producteur de fraises, ma\u00efs sucr\u00e9 et citrouilles.", "site_name": "Ferme Benoit Vernier"}
\ No newline at end of file
added data/enrich_cache/fermeblackcreek.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeblackcreek.ca", "logo_url": "https://fermeblackcreek.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermebourdages.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermebourdages.com", "logo_url": "https://fermebourdages.com/wp-content/uploads/2017/01/favicon.png", "cover_url": "https://s0.wp.com/i/blank.jpg", "description_meta": "Ferme Bourdages / Fraises, ma\u00efs, confitures, vins, p\u00e2t\u00e9s...", "site_name": "Ferme Bourdages / Fraises, ma\u00efs, confitures, vins, p\u00e2t\u00e9s..."}
\ No newline at end of file
added data/enrich_cache/fermebrylee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermebrylee.ca", "logo_url": "https://fermebrylee.ca/cdn/shop/t/8/assets/favicon.png?v=148718616098839658131598282455", "cover_url": "https://fermebrylee.ca/cdn/shopifycloud/storefront/assets/no-image-2048-a2addb12_600x600.gif", "description_meta": null, "site_name": "Ferme Brylee"}
\ No newline at end of file
added data/enrich_cache/fermecapriceetcabriole.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermecapriceetcabriole.ca", "logo_url": "https://fermecapriceetcabriole.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermechampgauche.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermechampgauche.com", "logo_url": "https://fermechampgauche.com/wp-content/uploads/2022/12/cropped-Sans-titre-2_Plan-de-travail-1-1-180x180.png.webp", "cover_url": "https://fermechampgauche.com/wp-content/uploads/2023/03/334948116_1604857069989433_3356997901826740333_n.png", "description_meta": "Champ Gauche\u00a0Une entreprise diversifi\u00e9e offrant \u00e0 sa client\u00e8le des produits de pr\u00eat-\u00e0-manger et des produits transform\u00e9s cuisin\u00e9s \u00e0 partir de sa production de", "site_name": "Champ Gauche"}
\ No newline at end of file
added data/enrich_cache/fermecharlaue.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermecharlaue.com", "logo_url": "https://static.wixstatic.com/media/bbbe6c_f7ca78626ccd4f4da4987970ab8b5b24%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/bbbe6c_f7ca78626ccd4f4da4987970ab8b5b24%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/bbbe6c_a8150ca347dd457ab0787d42d99e5895%7Emv2.png/v1/fit/w_2500,h_1330,al_c/bbbe6c_a8150ca347dd457ab0787d42d99e5895%7Emv2.png", "description_meta": "Ferme CharLaue SENC | Panier de legumes | 777 Chemin Iberville, Saint-Narcisse-de-Beaurivage, QC, Canada\nKiosque Libre Service, Panier de l\u00e9gumes estival, Viande de boeuf.", "site_name": "Ferme Charlaue"}
\ No newline at end of file
added data/enrich_cache/fermecidricoleequinoxe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermecidricoleequinoxe.com", "logo_url": "https://www.fermecidricoleequinoxe.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5e9f8bacbf481b45d62bf2dc/t/69d7c85fe27f016aea2eb633/1775749215656/EQUINOXE_LOGO.png?format=1500w", "description_meta": "\u00c9quinoxe, c\u2019est une ferme cidricole bio des Cantons-de-l\u2019Est o\u00f9 tout est cultiv\u00e9, \u00e9lev\u00e9 et transform\u00e9 sur place. Cidres natures, spiritueux fermiers, vins vivants et bistro champ\u00eatre: un lieu gourmand pens\u00e9 pour surprendre et rassembler.", "site_name": "\u00c9quinoxe"}
\ No newline at end of file
added data/enrich_cache/fermedecembre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedecembre.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/6744825b50355b5e918df4ce/06d31b40-0651-4260-aa13-252acd993c6a/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6744825b50355b5e918df4ce/t/67efee3cdfd8146435ab6dc2/1743777340477/De%CC%81cembre_white+-+tagline+-+verticale.png?format=1500w", "description_meta": "Des l\u00e9gumes cultiv\u00e9s \u00e0 l\u2019ann\u00e9e en plein coeur de la ville de Qu\u00e9bec - L\u00e9gumes quatre-saisons pour restaurateurs et \u00e9piciers - Service de greffe de tomates et d\u2019aubergines - Jardin communautaire", "site_name": "D\u00e9cembre - L\u00e9gumes \u00e0 l"}
\ No newline at end of file
added data/enrich_cache/fermedegau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedegau.com", "logo_url": "https://fermedegau.com/cdn/shop/files/FermeDegau_FavIconVF.png?crop=center&height=32&v=1686846712&width=32", "cover_url": "http://fermedegau.com/cdn/shop/files/Ferme-degau-siteweb-pourRS.jpg?v=1670968323", "description_meta": "Ferme mara\u00eech\u00e8re \u00e0 Neuville, sp\u00e9cialis\u00e9e dans le ma\u00efs sucr\u00e9 de Neuville Situ\u00e9e \u00e0 Neuville, la Ferme Degau cultive du ma\u00efs sucr\u00e9 de Neuville et des l\u00e9gumes frais de saison, offerts directement au kiosque \u00e0 la ferme durant l\u2019\u00e9t\u00e9.", "site_name": "Ferme Degau"}
\ No newline at end of file
added data/enrich_cache/fermedelaberceuse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedelaberceuse.com", "logo_url": "http://fermedelaberceuse.com/favicon.ico", "cover_url": "http://fermedelaberceuse.com/media/system/sites/logos/1392304119_logohome.png", "description_meta": "Nous pratiquons une culture biologique reconnue par le certificateur Qu\u00e9bec Vrai. Nos m\u00e9thodes culturales favorisent d\u2019abord la vie dans le sol. Nous cultivons plus de 30 l\u00e9gumes et fruits de 225 vari\u00e9t\u00e9s diff\u00e9rentes.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermedescouleurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedescouleurs.com", "logo_url": "https://www.fermedescouleurs.com/favicon.ico", "cover_url": null, "description_meta": "Des l\u00e9gumes frais aux produits transform\u00e9s, nous vous offrons une vaste gamme de produits cultiv\u00e9s \u00e9cologiquement. Chacun de nos choix est synonyme de", "site_name": "Ferme des couleurs"}
\ No newline at end of file
added data/enrich_cache/fermedeshautesterres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedeshautesterres.com", "logo_url": "https://www.fermedeshautesterres.com/medias/favicon.gif", "cover_url": "https://www.fermedeshautesterres.com//medias/img/ferme-accueil.jpg", "description_meta": "D\u00e9couvrez cet endroit enchanteur \u00e0 Saint-R\u00e9mi-de-Tingwick. Des viandes produites au rythme de la nature, transform\u00e9es sur place et livr\u00e9es \u00e0 votre domicile!", "site_name": "Ferme des Hautes Terres"}
\ No newline at end of file
added data/enrich_cache/fermedesmarais.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedesmarais.ca", "logo_url": "https://www.fermedesmarais.ca/apple-touch-icon.png", "cover_url": "https://www.fermedesmarais.ca/image/style/bg_landscape_ferme_desmarais.jpg", "description_meta": "Producteur 100% qu\u00e9b\u00e9cois \u00e0 Pierreville, nous offrons depuis plus de 60 ans des fruits et l\u00e9gumes frais ainsi que l\u2019autocueillette de fraises et de bleuets.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermedesvoltigeurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedesvoltigeurs.com", "logo_url": "https://www.fermedesvoltigeurs.com/wp-content/uploads/2026/02/cropped-favicon-fdv-180x180.png", "cover_url": "https://www.fermedesvoltigeurs.com/wp-content/uploads/2026/02/voltigeur-image-og.jpg", "description_meta": "Ferme des Voltigeurs: poulet de grain et biologique du Qu\u00e9bec. Produits frais et locaux, \u00e9lev\u00e9s sans sous-produits animaux, disponibles partout au Qu\u00e9bec.", "site_name": "Ferme des voltigeurs"}
\ No newline at end of file
added data/enrich_cache/fermedevelyne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedevelyne.com", "logo_url": "https://fermedevelyne.com/owebo-votresite/sites/default/files/images/depositphotos_37118811-1-Blueberry-set.jpg", "cover_url": "https://fermedevelyne.com/sites/default/files/images/depositphotos_37118811-1-Blueberry-set.jpg", "description_meta": "Situ\u00e9e \u00e0 Princeville, pr\u00e8s de Victoriaville, vous y ferez l\u2019autocueillette de bleuets en famille ou entre amis. Nos champs propres et notre souci de l\u2019environnement sauront vous ravir.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeduruisseaudor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeduruisseaudor.com", "logo_url": "https://fermeduruisseaudor.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermedutarieu.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermedutarieu.ca", "logo_url": "https://fermedutarieu.ca/wp-content/uploads/2020/07/cropped-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeduvallon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeduvallon.ca", "logo_url": "https://i0.wp.com/fermeduvallon.ca/wp-content/uploads/2023/03/Logo_2_60px.png?fit=60%2C60&#038;ssl=1", "cover_url": "https://fermeduvallon.ca/wp-content/uploads/2021/06/vache_highland5-1.jpg", "description_meta": "Ferme \u00c9rabli\u00e8re du Vallon, situ\u00e9e dans Bellechasse, proposant des produits d&#039;\u00e9rable et de la viande de boeufs Highland nourris \u00e0 l&#039;herbe.", "site_name": "Ferme du Vallon"}
\ No newline at end of file
added data/enrich_cache/fermeduvieuxjack.my.canva.site.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeduvieuxjack.my.canva.site", "logo_url": "https://fermeduvieuxjack.my.canva.site/_assets/images/e53c4bd8da5e491d9ab09e7cf0daf874.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeeboulmontaise.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeeboulmontaise.ca", "logo_url": "https://fermeeboulmontaise.ca/wp-content/uploads/2021/12/FE-E\u0301TAMPE-sans-fond-300x300.png", "cover_url": "https://fermeeboulmontaise.ca/wp-content/uploads/2026/03/banner-scaled.png", "description_meta": "D\u00e9couvrez la saveur viandes et des plats cuisin\u00e9s sur place : agneaux de Charlevoix, porcs et autres produits savoureux de la Ferme !", "site_name": "La Ferme \u00c9boulmontaise"}
\ No newline at end of file
added data/enrich_cache/fermeemeu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeemeu.com", "logo_url": "https://fermeemeu.com/wp-content/uploads/2021/07/cropped-oeuf-4-180x180.png", "cover_url": null, "description_meta": "Un site int\u00e9gr\u00e9 d\u2019activit\u00e9s multiples : l\u2019\u00e9levage d\u2019\u00e9meus, la transformation en produits, l\u2019interpr\u00e9tation, restauration &amp; commercialisation.", "site_name": "Centre de l&#039;\u00e9meu de Charlevoix - La ferme"}
\ No newline at end of file
added data/enrich_cache/fermeentrecieletterre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeentrecieletterre.com", "logo_url": "https://static.wixstatic.com/media/a4c791_5c2069664edc41f08fd43d1a8ad9fde3%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a4c791_5c2069664edc41f08fd43d1a8ad9fde3%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeequinoxe.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeequinoxe.ca", "logo_url": "https://fermeequinoxe.ca/wp-content/uploads/2021/06/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "Ferme \u00c9quinoxe la halte gourmande du terroir", "site_name": "Ferme \u00c9quinoxe"}
\ No newline at end of file
added data/enrich_cache/fermeetforet.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeetforet.ca", "logo_url": "https://fermeetforet.ca/wp-content/uploads/2017/05/cropped-FF_Treetype_Marin-e1493773241584-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermefraga.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermefraga.ca", "logo_url": "https://fermefraga.ca/images/favicon.png", "cover_url": "https://fermefraga.ca/images/Produit02-Copy.jpg", "description_meta": "Ferme familial offrant des produits locaux de Boeuf Wagyu", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermefrancoisblouin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermefrancoisblouin.com", "logo_url": "https://fermefrancoisblouin.com/media/templates/site/vineyard/images/icons/icon180x180.png", "cover_url": "https://fermefrancoisblouin.com/images/blog/intro/asperges.jpg", "description_meta": null, "site_name": "Ferme Fran\u00e7ois Blouin"}
\ No newline at end of file
added data/enrich_cache/fermefrancoisgosselininc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermefrancoisgosselininc.ca", "logo_url": "https://fermefrancoisgosselininc.ca/wp-content/uploads/2024/02/cropped-Favicon_F_gosselin-180x180.png", "cover_url": "https://fermefrancoisgosselininc.ca/wp-content/uploads/2021/12/wedding-photography-Qn5QFRNXJIs-unsplash.jpg", "description_meta": "La force d&rsquo;une famille, produits d&rsquo;une qualit\u00e9 sup\u00e9rieure Informations sur l&rsquo;autocueillette Voir notre boutique 01 Producteur de fraises, framboises et m\u00fbres Venez \u00e0 nos installations pour acheter vos fraises ou les cueillir 02 Vente de produits d&rsquo;\u00e9rable Profitez de nos produits d&rsquo;\u00e9rable disponibles \u00e0 l&rsquo;ann\u00e9e en kiosque \u00e0 la ferme ou sur la boutique en...", "site_name": "Ferme Francois Gosselin"}
\ No newline at end of file
added data/enrich_cache/fermegenest.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermegenest.com", "logo_url": "https://fermegenest.com/favicon.ico", "cover_url": "https://fermegenest.com/wp-content/uploads/2016/05/68fc6-entete_apropos_vf.jpg", "description_meta": "Vous \u00eates \u00e0 la recherche d&#039;un bel endroit pour des pique-niques, marcher ou encore d\u00e9couvrir, vous serez servis \u00e0 la Ferme Genest. Vous pourrez faire l&#039;autocueillette de nos cultures, faire la d\u00e9gustation de produits maison et bien plus!", "site_name": "La Ferme Genest"}
\ No newline at end of file
added data/enrich_cache/fermegenty.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermegenty.com", "logo_url": "https://img1.wsimg.com/isteam/ip/02b80e65-3b53-428a-be62-dea3e6295f81/blob.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/02b80e65-3b53-428a-be62-dea3e6295f81/Logo_Ferme_Genty_Vertical_CS.ai.png", "description_meta": "Petit \u00e9levage de vaches Highland qui commercialise la viande de boeuf, de porc et de volaille, ainsi que des oeufs frais et produits saisonniers. Les propri\u00e9taires offrent le service de visite \u00e0 la ferme, adapt\u00e9e selon l&#x27;\u00e2ge des visiteurs. Les visitent plaisent au petits comme aux plus grands.", "site_name": "Ferme Genty senc"}
\ No newline at end of file
added data/enrich_cache/fermegilbert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermegilbert.com", "logo_url": "https://fermegilbert.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermegiroflee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermegiroflee.com", "logo_url": "https://fermegiroflee.com/cdn/shop/files/LOGO_GIROFLEE_RGB_d0f5ae4a-246e-44f7-a62b-5d0ffe6f79d3.jpg?crop=center&height=32&v=1677537434&width=32", "cover_url": "http://fermegiroflee.com/cdn/shop/files/Mariklode_devant_le_kiosque_Credits_Benoit_Coulombe_Ferme_Giroflee.jpg?v=1780941918", "description_meta": "Organic blueberry and raspberry autocueillette. Ferme Girofl\u00e9e. Mont\u00e9r\u00e9gie. Delicious blueberries. Activities for everyone. A place of certified organic fruit and vegetable production, a sustainable agrotourism destination and a living laboratory for socio-environmental transition. Tourist attractions.", "site_name": "Ferme Girofl\u00e9e"}
\ No newline at end of file
added data/enrich_cache/fermegl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermegl.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/fd2162_abf708fbc5b44ff18d66f079b6d9ffe9%7Emv2_d_1415_2120_s_2.jpg/v1/fit/w_2500,h_1330,al_c/fd2162_abf708fbc5b44ff18d66f079b6d9ffe9%7Emv2_d_1415_2120_s_2.jpg", "description_meta": "Ferme Guillaume L\u00e9tourneau, Autocueillette \u00eele d", "site_name": "Fermegl"}
\ No newline at end of file
added data/enrich_cache/fermegpomerleau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermegpomerleau.com", "logo_url": "https://fermegpomerleau.com/favicon.ico", "cover_url": null, "description_meta": "Site web de la Ferme G. Pomerleau, pour l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeguyrivest.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeguyrivest.com", "logo_url": "https://static.wixstatic.com/media/f128e4_51e5dc69862d49c9a96ebddc1043b32e.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/f128e4_51e5dc69862d49c9a96ebddc1043b32e.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermehillheadchili.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermehillheadchili.ca", "logo_url": "https://www.fermehillheadchili.ca/uploads/b/8d48a420-23cb-11eb-8044-fda46aaf8589/icon_180x180_ios_NzMxMT.png?width=180", "cover_url": "https://www.fermehillheadchili.ca/uploads/b/8d48a420-23cb-11eb-8044-fda46aaf8589/El%20gringo%20picante%20red%20chillis.jpg", "description_meta": "piments, semences, sauces et condiments fabriqu\u00e9s a partir de nos r\u00e9coltes", "site_name": "Ferme Hill Head Chili Inc"}
\ No newline at end of file
added data/enrich_cache/fermehlf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermehlf.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermehortiplus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermehortiplus.com", "logo_url": "https://www.fermehortiplus.com/favicon.ico", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQXQFU2fwzhDCPAVrEWXHEd0DYdWLYcGFFpqyddnVlldmYCCEFSTHdvX588Cp4CMoJR1NQLA7X2KqERG5TbBLbiaoQabWewrURlD5316wjVE1OZATYcYr8e6YxbYqxhaDtfkBLgSe9117tHymdqACl8=w16383", "description_meta": "Bienvenue \u00e0 la Ferme Horti-Plus", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeiwannafarm.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeiwannafarm.com", "logo_url": "http://fermeiwannafarm.com/favicon.ico", "cover_url": "https://nebula.wsimg.com/ed85191396b34f6c02fbd1a361d780bc?AccessKeyId=A2E409C112DBAECBBE96&disposition=0&alloworigin=1", "description_meta": "Iwanna Farm Serena Shufelt Steven Neil Brigham, Quebec", "site_name": "Iwanna Farm"}
\ No newline at end of file
added data/enrich_cache/fermejnmorin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermejnmorin.com", "logo_url": "https://www.fermejnmorin.com/cdn/shop/t/2/assets/favicon.png?v=148718616098839658131468003203", "cover_url": "http://www.fermejnmorin.com/cdn/shop/t/2/assets/logo.png?v=158641319390281263841478289356", "description_meta": "La Ferme JN Morin (Les Sauces BBQ St-Zacharie inc.) situ\u00e9e en Beauce (Qu\u00e9bec) propose une multitude de produits du terroir (confiture, p\u00e2t\u00e9, sirop d\u2019\u00e9rable, etc\u2026) sur sa boutique en ligne.", "site_name": "FERME JN MORIN"}
\ No newline at end of file
added data/enrich_cache/fermejodoin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermejodoin.com", "logo_url": "https://photosme.pics/ms/icon.png", "cover_url": "https://fermejodoin.com/cairbos", "description_meta": "Saatnya panen maxwin di CAIRBOS via fermejodoin! Ladang subur slot gacor dengan rtp live tertinggi hari ini. Raih jp paus & jaminan saldo pasti cair kilat.", "site_name": "CAIRBOS"}
\ No newline at end of file
added data/enrich_cache/fermelacanopee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelacanopee.com", "logo_url": "https://www.fermelacanopee.com/uploads/b/fdf2d330-3592-11ee-8405-43e9c3c4e656/icon_180x180_ios_OTE5ND.png?width=180", "cover_url": null, "description_meta": "Nos l\u00e9gumes bio sont disponibles pour la livraison \u00e0 Granby ou \u00e0 retirer au March\u00e9 Public. De notre ferme locale \u00e0 votre assiette.", "site_name": "Ferme de la Canop\u00e9e"}
\ No newline at end of file
added data/enrich_cache/fermelacdargent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelacdargent.com", "logo_url": "http://www.fermelacdargent.com/wp-content/themes/simplemag/images/retina-favicon.png", "cover_url": null, "description_meta": "Chaleureuse cabane \u00e0 sucre au cachet d&#039;antan (vue sur le lac). D\u00e9guster un repas canadien authentique, l\u00e9cher la palette et manger de la tire sur la neige.", "site_name": "&Eacute;rabli&egrave;re du Lac d&#039;Argent (Marbleton)"}
\ No newline at end of file
added data/enrich_cache/fermelarondefarm.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelarondefarm.ca", "logo_url": "https://fermelarondefarm.ca/wp-content/uploads/2018/03/ICON-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermelarouquine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelarouquine.com", "logo_url": "https://www.fermelarouquine.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/66044bd9c0e525070399652b/t/663cdb05ef610b5ee89be956/1715264261947/logo.png?format=1500w", "description_meta": null, "site_name": "Ferme la Rouquine"}
\ No newline at end of file
added data/enrich_cache/fermelavignestevens.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelavignestevens.ca", "logo_url": "https://fermelavignestevens.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermelebunker.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelebunker.com", "logo_url": "https://fermelebunker.com/wp-content/uploads/2026/04/cropped-favicon-180x180.png", "cover_url": "https://fermelebunker.com/wp-content/uploads/2025/07/la-charloise-fond-batiment-lotbiniere.webp", "description_meta": "Autocueillette, produits locaux et activit\u00e9s \u00e0 l\u2019\u00cele d\u2019Orl\u00e9ans. D\u00e9couvrez la Ferme Le Bunker pr\u00e8s de Qu\u00e9bec.", "site_name": "Ferme Le Bunker"}
\ No newline at end of file
added data/enrich_cache/fermelecrepuscule.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelecrepuscule.com", "logo_url": "https://www.fermelecrepuscule.com/apple-touch-icon.png", "cover_url": "https://www.fermelecrepuscule.com/site_tb.jpg", "description_meta": "Entreprise agricole, biologique, vou\u00e9e \u00e0 la production de viande et poulet biologique, produits de l", "site_name": "Ferme Le Cr\u00e9puscule"}
\ No newline at end of file
added data/enrich_cache/fermelesbonsplans.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelesbonsplans.com", "logo_url": "https://static.wixstatic.com/media/fedfc4_ccb8d8eec3a348059fb708fcb75ee8ff%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/fedfc4_ccb8d8eec3a348059fb708fcb75ee8ff%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermelesbroussailles.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelesbroussailles.com", "logo_url": "http://www.fermelesbroussailles.com/favicon.ico", "cover_url": "http://www.fermelesbroussailles.com/wp-content/uploads/2020/04/favicon-ferme-les-broussailles.jpg", "description_meta": "Fromages de ch\u00e8vre et de brebis faits de lait cru et biologique.", "site_name": "Ferme les Broussailles"}
\ No newline at end of file
added data/enrich_cache/fermelesfillesduroy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelesfillesduroy.com", "logo_url": "https://static.wixstatic.com/media/6296f5_3e7f6994c3ce46ffa145acf8e1a3b8f6%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/6296f5_3e7f6994c3ce46ffa145acf8e1a3b8f6%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/6296f5_41cb99b24b644b59ad2fdf93e225ae29~mv2.jpg/v1/fill/w_2500,h_1666,al_c/6296f5_41cb99b24b644b59ad2fdf93e225ae29~mv2.jpg", "description_meta": "Ferme mara\u00eech\u00e8re situ\u00e9e dans le magnifique village de St-Vallier de Bellechasse. Le kiosque \u00e0 la ferme vous permet de vous procurer de nombreux l\u00e9gumes, des produits d", "site_name": "Les Filles du Roy"}
\ No newline at end of file
added data/enrich_cache/fermelesmoutaines.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelesmoutaines.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "fermelesmoutaines"}
\ No newline at end of file
added data/enrich_cache/fermelucdufour.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermelucdufour.com", "logo_url": "https://fermelucdufour.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermemalaco.order-online.ai.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermemalaco.order-online.ai", "logo_url": "https://fermemalaco.order-online.ai/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermemanicouagan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermemanicouagan.com", "logo_url": "https://static.wixstatic.com/media/1fbd86_f53e8c4ff4504bf1b66acdaf69bf5ce6%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1fbd86_f53e8c4ff4504bf1b66acdaf69bf5ce6%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermemarienoellebeaulieu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermemarienoellebeaulieu.com", "logo_url": "https://u.jimcdn.com/cms/o/sd0f96a7413f0d7a9/img/favicon.ico?t=1708963267", "cover_url": "https://image.jimcdn.com/app/cms/image/transf/none/path/sd0f96a7413f0d7a9/backgroundarea/if0e20fb98ff659ba/version/1784378254/image.jpg", "description_meta": "Fermette \u00e0 visiter dans Charlevoix. Vente d", "site_name": "fermemarienoellebeaulieu"}
\ No newline at end of file
added data/enrich_cache/fermemarilau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermemarilau.com", "logo_url": "https://fermemarilau.com/wp-content/uploads/2021/05/cropped-favicon-180x180.png", "cover_url": "https://fermemarilau.com/wp-content/uploads/photo-cover.png", "description_meta": "\u00c0 la Ferme Marilau, les viandes que nous vendons proviennent de nos \u00e9levages, sans hormone de croissance ni antibiotique de pr\u00e9vention.", "site_name": "Ferme Marilau"}
\ No newline at end of file
added data/enrich_cache/fermemegalex.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermemegalex.ca", "logo_url": "https://fermemegalex.ca/wp-content/uploads/2024/07/cropped-grange-180x180.png", "cover_url": "https://fermemegalex.ca/wp-content/uploads/2024/11/1000006595-1024x768.jpg", "description_meta": "Go\u00fbtez \u00e0 la diff\u00e9rence des produits frais de la ferme en Chaudi\u00e8re-Appalaches ! L\u00e9gumes, viande et autres produits frais, cultiv\u00e9s et \u00e9lev\u00e9s avec passion.", "site_name": "Ferme M\u00e9galex"}
\ No newline at end of file
added data/enrich_cache/fermemoreau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermemoreau.com", "logo_url": "https://fermemoreau.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermemoultonhill.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermemoultonhill.ca", "logo_url": "https://www.fermemoultonhill.ca/uploads/b/53c935b0-28bf-11ef-8687-5f191179f005/Untitled design.png", "cover_url": null, "description_meta": "Ferme cidricole Moulton Hill, cidres nature, pique-niques dans un verger de prunes et exp\u00e9riences locales \u00e0 Sherbrooke.", "site_name": "Ferme cidricole Moulton Hill"}
\ No newline at end of file
added data/enrich_cache/fermenelsonparadis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermenelsonparadis.com", "logo_url": "https://www.fermenelsonparadis.com/favicon.ico", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQUITvlqaT8KU0X2JfaP5eskKY9A3Xs7jJB91V-YrLR1Vh8Vo0T9UwBPQ0XFWJ1SmKFQj3-WpDKSk0g5SYBmBAdTM9J_Uh4ep7KHiZ4m69xV6C1YFpZVYltPhx_N98iB_j6ydF79q6wdBH-IwpqggrWR537hnMKo_0jLeEg=w16383", "description_meta": "Le lundi 27 juillet 2026\nNOTRE SAISON 2026 EST MAINTENANT COMPL\u00c9T\u00c9E.\nMalgr\u00e9 quelques p\u00e9rip\u00e9ties, elle s&#39;est av\u00e9r\u00e9e plut\u00f4t bonne.\nUn \u00e9norme merci \u00e0 vous tous qui nous encouragez ann\u00e9e apr\u00e8s ann\u00e9e. \n\nNous nous tournons d\u00e9j\u00e0 vers la pr\u00e9paration de l&#39;ann\u00e9e 2027. \nCelle-ci devrait pr\u00e9senter plusieurs", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeoiseaubleu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeoiseaubleu.com", "logo_url": "https://www.fermeoiseaubleu.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeoka.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeoka.ca", "logo_url": "https://fermeoka.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeolac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeolac.ca", "logo_url": "https://images.panierdachat.app/94/KWJenmiq_5e444bf40c57d.jpg?w=32&amp;h=32&amp;fit=max", "cover_url": "https://images.panierdachat.app/94/HTu8sNHo_ferme-o-lac-affiche-rev-visuel-0ca21bad-1316-416e-b092-cc4ee0dd02e7.jpg?w=1200&h=630&fit=fill", "description_meta": "Paniers de l\u00e9gumes biologiques pour la saison 2025! Fruits et l\u00e9gumes biologiques \u00e0 Saguenay (Jonqui\u00e8re)", "site_name": "Ferme Olac"}
\ No newline at end of file
added data/enrich_cache/fermepomerleau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermepomerleau.com", "logo_url": "https://www.fermepomerleau.com/cdn/shop/files/favico-1.png?crop=center&height=48&v=1731604016&width=48", "cover_url": "http://www.fermepomerleau.com/cdn/shop/files/natercia-photographe-9306-Modifier_ecf62462-28e8-49a9-8dc0-73c1df67faaa.jpg?v=1731611886", "description_meta": "La Ferme Pomerleau, situ\u00e9e \u00e0 Inverness, vend son porc, son b\u0153uf et ses produits d\u2019\u00e9rable directement aux consommateurs de partout au Qu\u00e9bec.", "site_name": "Ferme Pomerleau MycoPousse"}
\ No newline at end of file
added data/enrich_cache/fermereservoir.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermereservoir.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/5ad6568c3e2d0938bdeccc16/1533566813554-T7X0OME2LJU3HV0VASF6/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5ad6568c3e2d0938bdeccc16/t/5b685f7b03ce64d629079460/1533566847972/Duck+Logo+-+Small+Coral+Outline+-+Ferme+Reservoir.png?format=1500w", "description_meta": "Outaouais organic farm offering fresh, local vegetables in the summer &amp; home delivery Winter CSA boxes to Gatineau, Ottawa, Chelsea, Wakefield, and Low.", "site_name": "ferme r\u00e9servoir"}
\ No newline at end of file
added data/enrich_cache/fermeroka.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeroka.com", "logo_url": "https://fermeroka.com/image/catalog/roka.png", "cover_url": null, "description_meta": "Ferme Roka, Les Domaines Roka", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeroquette.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeroquette.ca", "logo_url": "https://fermeroquette.ca/wp-content/uploads/2021/10/cropped-logo-roquette-600px-180x180.png", "cover_url": "https://fermeroquette.ca/wp-content/uploads/2021/10/logo-roquette-header8.png", "description_meta": "Ferme biologique la Roquette coop\u00e9rative de travailleurs. On y produit des fruits et l\u00e9gumes biologiques dans la r\u00e9gion des Laurentides.", "site_name": "Ferme la roquette"}
\ No newline at end of file
added data/enrich_cache/fermerosedesvents.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermerosedesvents.com", "logo_url": "https://fermerosedesvents.com/wp-content/uploads/2024/10/RoseDesVents_Logo.png", "cover_url": "https://fermerosedesvents.com/wp-content/uploads/ferme-rose-des-vents-fb.jpg", "description_meta": "Poulet de grain du Qu\u00e9bec produit et transform\u00e9 \u00e0 la ferme. Grain 100% v\u00e9g\u00e9tal. Visitez notre boutique en ligne, d\u00e9couvrez notre gamme de produits d&#039;exception!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermeruisseaudeschasseurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermeruisseaudeschasseurs.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/1e83beaa-c42e-40fc-bce7-d309cc25efe4/20245829_1373781612736279_8342436218900256684_.jpg", "description_meta": "Framboisi\u00e8re \u00e0 proximit\u00e9 de la ville de Jonqui\u00e8re. Venez faire de l&#x27;auto-cueillette de framboises sans rendez-vous!", "site_name": "Ferme Ruisseau des Chasseurs"}
\ No newline at end of file
added data/enrich_cache/fermesc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermesc.ca", "logo_url": "https://fermesc.ca/wp-content/uploads/2022/09/cropped-cropped-logo_web-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermesimonfortin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermesimonfortin.com", "logo_url": "https://www.fermesimonfortin.com/assets/favicons/apple-touch-icon.png", "cover_url": "https://www.fermesimonfortin.com/assets/img/facebook.png", "description_meta": "La Ferme Simon Fortin inc. concentre son expertise dans la production de boeufs de p\u00e2turage de race Angus et la production et l\u2019autocueillette de citrouilles et de courges.", "site_name": "Ferme Simon Fortin inc."}
\ No newline at end of file
added data/enrich_cache/fermesleclair.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermesleclair.com", "logo_url": "https://www.fermesleclair.com/wp-content/uploads/2018/03/cropped-favicon-300x300.png", "cover_url": "https://www.fermesleclair.com/wp-content/uploads/2020/06/releve-leclair1-1.jpg", "description_meta": "D\u00e9couvrez les l\u00e9gumes de qualit\u00e9 sup\u00e9rieure de la Ferme Leclair - une ferme mara\u00eech\u00e8re situ\u00e9e \u00e0 St-Pamphile, sur la Rive-Sud de Montr\u00e9al.", "site_name": "Fermes Leclair"}
\ No newline at end of file
added data/enrich_cache/fermesrb.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermesrb.com", "logo_url": "https://fermesrb.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermesrudbeckie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermesrudbeckie.com", "logo_url": "https://fermesrudbeckie.com/wp-content/uploads/2023/02/cropped-favicon.png", "cover_url": null, "description_meta": "Les Fermes Rudbeckie Farms proposent une gamme de produits locaux dans la r\u00e9gion des Chaudi\u00e8re-Appalaches. Commandez-en ligne maintenant!", "site_name": "Fermes Rudbeckie Farms"}
\ No newline at end of file
added data/enrich_cache/fermest-elie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermest-elie.com", "logo_url": "https://fermest-elie.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Ferme St-\u00c9lie"}
\ No newline at end of file
added data/enrich_cache/fermestc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermestc.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermestecatherine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermestecatherine.ca", "logo_url": "https://fermestecatherine.ca/favicon.ico", "cover_url": null, "description_meta": "Vente au d\u00c3\u00a9tail de fleurs, fruits, l\u00c3\u00a9gumes et pommes. Autocueillette sur place.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermestours.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermestours.ca", "logo_url": "https://www.fermestours.ca/app/uploads/2025/02/cropped-favicon-stours-180x180.png", "cover_url": "https://www.fermestours.ca/app/uploads/2025/02/ogimage-ferme-stours.jpg", "description_meta": "D\u00e9couvrez la Ferme St-Ours, engag\u00e9e dans l\u2019\u00e9co-responsabilit\u00e9 et le bien-\u00eatre animal. \u0152ufs bio, \u00e9rable, huile de tournesol et grains locaux.", "site_name": "Ferme St-Ours"}
\ No newline at end of file
added data/enrich_cache/fermesucreeclement.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermesucreeclement.com", "logo_url": "https://www.fermesucreeclement.com/wp-content/uploads/2016/06/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fermesvalens.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermesvalens.com", "logo_url": "https://fermesvalens.com/images/favicon/apple-touch-icon.png", "cover_url": "https://fermesvalens.com/images/og/share.jpg", "description_meta": "Les Fermes Valens \u2014 viandes biologiques, nourries \u00e0 l&#039;herbe et naturelles \u00e9lev\u00e9es \u00e0 notre ferme familiale de Huntingdon, Qu\u00e9bec. B\u0153uf, porc, poulet et agneau livr\u00e9s partout au Qu\u00e9bec.", "site_name": "Les Fermes Valens"}
\ No newline at end of file
added data/enrich_cache/fermevalleeverte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermevalleeverte.com", "logo_url": "data:image/png;base64,iVBORw0KGgo=", "cover_url": "https://image.jimcdn.com/app/cms/image/transf/none/path/s3fa7e3b678004c29/image/i39c2c860c1f25eaa/version/1755967035/image.jpg", "description_meta": "Fromagerie et Produits laitiers frais de St-Jean-de-Matha.Transformation du Lait de nos vaches en Fromages, Lait et Yogourts. Ferme Vall\u00e9e Verte situ\u00e9e au 180 rang Guillaume Tell \u00e0 St-Jean-de-Matha - l\u00e0 o\u00f9 un d\u00e9cor enchanteur vous y attend (vue sur les montagnes). Au plaisir de vous servir !", "site_name": "Ferme Vall\u00e9e Verte"}
\ No newline at end of file
added data/enrich_cache/fermewillika.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermewillika.ca", "logo_url": "https://fermewillika.ca/favicon.ico", "cover_url": "https://fermewillika.ca/wp-content/uploads/2023/04/cropped-FermeWillika_Logo_darkbg.png", "description_meta": "Micropousses fra\u00eeches et vinaigrettes artisanales cultiv\u00e9es \u00e0 Rigaud. Ferme Willika vous offre des superaliments savoureux, locaux et livr\u00e9s pr\u00e8s de chez vous.", "site_name": "Ferme Willika"}
\ No newline at end of file
added data/enrich_cache/fermierdefamille.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fermierdefamille.com", "logo_url": "https://www.fermierdefamille.com/favicon.ico", "cover_url": "https://www.fermierdefamille.com/static/maps/images/rff_tessa_rectangle_2020.jpg", "description_meta": "Recevez vos l\u00e9gumes biologiques chaque semaine en vous abonnant \u00e0 un point de livraison proche de chez vous. D\u00e9couvrez les formules flexibles et authentiques de nos fermes!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ferventferment.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ferventferment.ca", "logo_url": "https://ferventferment.ca/favicon.ico", "cover_url": "https://ferventferment.ca/socialLinkLogo.png", "description_meta": "Explorez l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/festivalcharlevoixdanse.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "festivalcharlevoixdanse.org", "logo_url": "https://static.wixstatic.com/media/131977_c43288f530714df198584171f7fb220e%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/131977_c43288f530714df198584171f7fb220e%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/131977_c8971705964f4530b1306abd923b6d95~mv2.jpeg/v1/fill/w_1920,h_1080,al_c/131977_c8971705964f4530b1306abd923b6d95~mv2.jpeg", "description_meta": "La cr\u00e9ation d", "site_name": "Festival Charlevoix"}
\ No newline at end of file
added data/enrich_cache/festivallaviree.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "festivallaviree.com", "logo_url": "https://festivallaviree.com/favicon.ico", "cover_url": null, "description_meta": "Site du Festival La Viree de Carleton-Sur-Mer", "site_name": null}
\ No newline at end of file
added data/enrich_cache/festivalpouruninstant.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "festivalpouruninstant.ca", "logo_url": "https://www.festivalpouruninstant.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/65ef21df84c49c3bd7510342/t/69dc524ed962d805762afba6/1776046670448/FPI+Logo+5+x+2+po+horizontal-2.png?format=1500w", "description_meta": null, "site_name": "Festival Pour un Instant"}
\ No newline at end of file
added data/enrich_cache/feuetco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "feuetco.ca", "logo_url": "https://feuetco.ca/cdn/shop/files/FAVICON_Feu_Plan_de_travail_1.png?v=1618884469&width=32", "cover_url": "http://feuetco.ca/cdn/shop/files/Untitled2.4.jpg?v=1763052979", "description_meta": "Produits parfum\u00e9s faits \u00e0 la main au Qu\u00e9bec. Bougies de soya avec m\u00e8che de bois cr\u00e9pitante et cire de soya 100% naturelle. Cubes de cires, diffuseurs pour voiture et diffuseurs \u00e0 roseaux. Une multitude de fragrances dont Feu de bois, C\u00e8dre, Lavande et plus.", "site_name": "Feu&amp;Co"}
\ No newline at end of file
added data/enrich_cache/feuilledelune.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "feuilledelune.com", "logo_url": "https://www.feuilledelune.com/wp-content/uploads/2021/03/picto-fdl.svg", "cover_url": null, "description_meta": "[vc_row full_width=&quot;stretch_row&quot; css_animation=&quot;none&quot;...", "site_name": null}
\ No newline at end of file
added data/enrich_cache/feves-lheritage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "feves-lheritage.com", "logo_url": "https://feves-lheritage.com/wp-content/uploads/2020/11/Favicon.png", "cover_url": null, "description_meta": "Savourez le go\u00fbt unique et la fra\u00eecheur des savoureuses vari\u00e9t\u00e9s de f\u00e8ves L\u2019H\u00e9ritage pr\u00e9par\u00e9es au Qu\u00e9bec : f\u00e8ves au lard, f\u00e8ves v\u00e9g\u00e9tariennes, f\u00e8ves \u00e0 l\u2019\u00e9rable et chili aux l\u00e9gumes. Les f\u00e8ves L\u2019H\u00e9ritage sont mijot\u00e9es au four lentement selon la tradition, r\u00e9frig\u00e9r\u00e9es et emball\u00e9es rapidement pour conserver leur saveur et leur fra\u00eecheur intactes. Savourez les produits du Qu\u00e9bec!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fgchocolatiers.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fgchocolatiers.com", "logo_url": "https://d2j6dbq0eux0bg.cloudfront.net/images/36653223/3316429272.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fiar.shop.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fiar.shop", "logo_url": "https://static.wixstatic.com/media/d8094c_229c695d843a4aebba0759785def9ced%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d8094c_229c695d843a4aebba0759785def9ced%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fildefee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fildefee.ca", "logo_url": "http://fildefee.ca/wp-content/uploads/2016/10/FF.gif", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fincafe.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fincafe.ca", "logo_url": "https://static.wixstatic.com/media/9e38dd_67ec67b22f5d4ac2b691a75d681b4e2d%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/9e38dd_67ec67b22f5d4ac2b691a75d681b4e2d%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fineetfutes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fineetfutes.ca", "logo_url": "https://fineetfutes.ca/cdn/shop/files/logo-fine-et-futes_d258ccfc-c40c-4db0-bf07-df8bc5789120_32x32.png?v=1623332959", "cover_url": "https://cdn.shopify.com/s/files/1/0572/1266/6038/files/ete-gourmand-antipasti-banniere_abf1d969-9f33-4f7e-b0aa-9349d90316e2.jpg?v=1628597996", "description_meta": "\u00c9picerie fine en ligne, Fine et Fut\u00e9s est une boutique gourmande qui propose les produits de plus de 200 fournisseurs du Qu\u00e9bec. Commandez maintenant!", "site_name": "Fine et F\u00fbt\u00e9s"}
\ No newline at end of file
added data/enrich_cache/finfinoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "finfinoix.ca", "logo_url": "https://www.finfinoix.ca/wp-content/uploads/2020/11/cropped-favicon-180x180.png", "cover_url": "https://www.finfinoix.ca/wp-content/uploads/2020/06/Carrousel-Diversifier-vos-assiettes.jpg", "description_meta": "Finfinoix offre plusieurs saveurs de tartinades de cajous pour agr\u00e9menter tous vos repas! C&#039;est tout simplement bon, simple et raffin\u00e9. Essayez-les!", "site_name": "Finfinoix"}
\ No newline at end of file
added data/enrich_cache/firmecreative.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "firmecreative.com", "logo_url": "https://firmecreative.com/favicon_144x144.png", "cover_url": "https://firmecreative.com//og.jpg", "description_meta": "Im\u00e9dia firme cr\u00e9ative, c&#x27;est plus de 30 ans d&#x27;exp\u00e9rience dans le domaine du web, de la publicit\u00e9, des communications et du marketing.", "site_name": "Im\u00e9dia Firme Cr\u00e9ative"}
\ No newline at end of file
added data/enrich_cache/fkaiser.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fkaiser.com", "logo_url": "https://www.fkaiser.com/favicon.ico", "cover_url": "https://www.fkaiser.com/wp-content/uploads/Fromagerie-Fritz-Kaiser-fb-default.jpg", "description_meta": "Une entreprise familiale Fromagerie Fritz Kaiser Nos fromages artisanaux, qui sont m\u00fbris et lav\u00e9s sur des planches de pin pendant des semaines, voir des mois, c", "site_name": "Fromagerie Fritz Kaiser"}
\ No newline at end of file
added data/enrich_cache/flambette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "flambette.com", "logo_url": "https://flambette.com/cdn/shop/t/6/assets/apple-touch-icon.png?v=173146084374628406221685984225", "cover_url": "http://flambette.com/cdn/shop/files/FLAMBETTE_Share_1200x628_24ee168b-61c6-44ac-9efe-69372d6caf0e.jpg?v=1721412761", "description_meta": "Les produits parfum\u00e9s Flambette sont enti\u00e8rement faits \u00e0 la main au Qu\u00e9bec et compos\u00e9s d\u2019ingr\u00e9dients sains et naturels telle la cire de soya. Leurs riches fragrances ont \u00e9t\u00e9 choisies avec soin pour leur caract\u00e8re \u00e0 la fois inattendu et \u00e9tonnamment familier, mais aussi totalement addictif.", "site_name": "Flambette"}
\ No newline at end of file
added data/enrich_cache/flammeenrose.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "flammeenrose.com", "logo_url": "https://flammeenrose.com/cdn/shop/files/logo_seulement.png?crop=center&height=48&v=1774447248&width=48", "cover_url": "http://flammeenrose.com/cdn/shop/files/1200x628_1200x1200.jpg?v=1682857050", "description_meta": "Bijoux haut de gamme, cr\u00e9ations sur mesure et transformation de bijoux faits \u00e0 la main par les meilleurs joailliers au Qu\u00e9bec. \u00c9coconception &amp; diamants \u00e9thiques!", "site_name": "Flamme en Rose"}
\ No newline at end of file
added data/enrich_cache/flavora.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "flavora.ca", "logo_url": "https://flavora.ca/wp-content/uploads/2019/06/flavora_favicon_2.png", "cover_url": "https://flavora.ca/wp-content/uploads/2019/07/flavora_img-seo.jpg", "description_meta": "Produits laitiers savoureux, naturels et artisanaux fabriqu\u00e9s par l\u2019entremise d&#039;un \u00e9levage de brebis laiti\u00e8res dans les Cantons-de-l&#039;Est.", "site_name": "Flavora"}
\ No newline at end of file
added data/enrich_cache/flavva.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "flavva.com", "logo_url": "https://flavva.com/favicon.ico", "cover_url": "https://flavva.com/wp-content/uploads/2026/04/flavva-discovery-box-12-pack-1.png", "description_meta": "FLAVVA \u2014 premium refrigerated hummus and Mediterranean dips made in Canada. Clean label, no preservatives. Shop online with refrigerated delivery.", "site_name": "Flavva Eat Healthy"}
\ No newline at end of file
added data/enrich_cache/flektoys.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "flektoys.com", "logo_url": "https://flek.ca/cdn/shop/files/Flek-favicon.jpg?crop=center&height=32&v=1736272317&width=32", "cover_url": "http://flek.ca/cdn/shop/files/Logo_Flek_1200px_-_837px.png?v=1742914529", "description_meta": "Camions, tracteurs et figurines de qualit\u00e9 pour les enfants d\u00e8s 12 mois. Con\u00e7us au Qu\u00e9bec et conformes aux normes canadiennes ASTM F963. Pens\u00e9s pour les petites mains et les grandes imaginations. Livraison partout au Canada.", "site_name": "Flek"}
\ No newline at end of file
added data/enrich_cache/flesch.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "flesch.ca", "logo_url": "https://flesch.ca/cdn/shop/files/Flesch_Jewelry_favicon_32x32.png?v=1614318886", "cover_url": "http://flesch.ca/cdn/shop/files/Flesch_about_banner-3_35e12d77-1aa8-424e-93ed-ca644a54cb9f_1200x1200.jpg?v=1601313472", "description_meta": "Fine jewelry with a urban twist. Artist from Montreal, Flesch creates clean and refreshingly modern rings, necklaces and earrings. Handmade with love.", "site_name": "Flesch Jewelry"}
\ No newline at end of file
added data/enrich_cache/fleurdolive.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fleurdolive.com", "logo_url": "https://fleurdolive.com/wp-content/uploads/2026/01/cropped-Logo-Fleur-dOlive-1-1-180x180.jpg", "cover_url": "https://fleurdolive.com/wp-content/uploads/2026/01/cropped-Logo-Fleur-dOlive-1-1.jpg", "description_meta": "ACCUEIL \u00c0 PROPOS CATALOGUE CONTACT CATALOGUES D\u00c9TAILLANTS Fran\u00e7ais Anglais Food Service BOUTIQUE EN LIGNE Visiter et commander De la d\u00e9couverte \u00e0 la cr\u00e9ation \u200bApr\u00e8s plus de 20 ans \u00e0 sillonner la plan\u00e8te \u00e0 la recherche des meilleurs produits d\u2019\u00e9picerie fine, de l\u2019Europe \u00e0 l\u2019Asie, Sonia d\u00e9cide de passer \u00e0 une \u00e9tape importante pour Fleur d\u2019Olive. [&hellip;]", "site_name": "Fleur d&#039;olive"}
\ No newline at end of file
added data/enrich_cache/fleursdelune.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fleursdelune.com", "logo_url": "https://fleursdelune.com/favicon.ico", "cover_url": null, "description_meta": "Auberge Fleurs de Lune, La Malbaie, Secteur Cap-a-l&#039;Aigle, Charlevoix. 9 chambres avec salles de bain et magnifique vue sur le Fleuve Saint-Laurent.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fleuryparajdeco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fleuryparajdeco.ca", "logo_url": "https://fleuryparajdeco.ca/cdn/shop/files/IMG_8527.heic?crop=center&height=32&v=1701196622&width=32", "cover_url": "http://fleuryparajdeco.ca/cdn/shop/files/fleury.pdf.jpg?v=1706895242", "description_meta": "Fleury cr\u00e9e des bougies parfum\u00e9es artisanales en cire de soja, aux fragrances raffin\u00e9es et au design \u00e9pur\u00e9. Une signature olfactive douce et \u00e9l\u00e9gante pour sublimer chaque int\u00e9rieur.", "site_name": "Fleury par Anic Jean d\u00e9coration"}
\ No newline at end of file
added data/enrich_cache/flirtdrinks.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "flirtdrinks.com", "logo_url": "https://flirtdrinks.com/cdn/shop/files/Flirt_Favicon.png?crop=center&height=32&v=1718903214&width=32", "cover_url": "http://flirtdrinks.com/cdn/shop/files/Flirt_OgImage.jpg?v=1722363685", "description_meta": "Red\u00e9couvrez le Flirt\u202f! Fait avec des vrais ingr\u00e9dients Jus de citron fra\u00eechement press\u00e9 100 calories 40\u2009% moins sucr\u00e9 qu&#39;un soda traditionnel fabriqu\u00e9 \u00e0 partir de fruits rescap\u00e9s.", "site_name": "Flirt Drinks"}
\ No newline at end of file
added data/enrich_cache/floem.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "floem.ca", "logo_url": "https://floem.ca/cdn/shop/files/floem-favicon-newgreen_background_144px.svg?v=1756147711&width=180", "cover_url": "http://floem.ca/cdn/shop/files/DSC_0363-modifie.jpg?v=1730749021&width=2048", "description_meta": "Discover Flo\u00e8m herbal teas, created from unique ingredients picked from the boreal flora of Canada. Live an authentic taste experience and enjoy the natural benefits of our herbal teas.", "site_name": "Flo\u00e8m"}
\ No newline at end of file
added data/enrich_cache/follefarine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "follefarine.com", "logo_url": "https://follefarine.com/favicon.ico", "cover_url": "https://follefarine.com/wp-content/uploads/2020/07/feuilles-gauche.png", "description_meta": "Folle farine, situ\u00e9e \u00e0 Lanoraie dans Lanaudi\u00e8re, produit une vari\u00e9t\u00e9 de farines biologiques (bl\u00e9, sarrasin, seigle, \u00e9peautre, ma\u00efs et blanche non blanchie.)", "site_name": "Folle Farine"}
\ No newline at end of file
added data/enrich_cache/fondussimo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fondussimo.com", "logo_url": "https://fondussimo.com/cdn/shop/files/favicon_fondussimo_fondue_poele.png?crop=center&height=32&v=1698690123&width=32", "cover_url": "http://fondussimo.com/cdn/shop/files/Image_Accueil_Meta.png?v=1703091187", "description_meta": "Entrez dans la nouvelle \u00e8re de la fondue! Rejoignez la grande famille Fondussimo et d\u00e9couvrez des produits r\u00e9volutionnaires, des recettes et plus encore!", "site_name": "Fondussimo"}
\ No newline at end of file
added data/enrich_cache/foodcrayon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "foodcrayon.com", "logo_url": "https://www.foodcrayon.com/cdn/shop/files/favicon.png?crop=center&height=32&v=1635542055&width=32", "cover_url": "http://www.foodcrayon.com/cdn/shop/files/Photos_Taille_Shopify_Produits_7.png?v=1775678471", "description_meta": "C&#39;est un Crayon d&#39;\u00e9pices que vous aiguisez sur vos repas, sur vos salades, plats , desserts et cocktails. C&#39;est une explosion de saveurs \u00e0 chacune de vos bouch\u00e9es, en plus d&#39;amener du fun autour de la table!", "site_name": "Food Crayon"}
\ No newline at end of file
added data/enrich_cache/foodlabouffe.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "foodlabouffe.net", "logo_url": "https://www.foodlabouffe.net/web/image/website/1/favicon?unique=e0215ea", "cover_url": "https://www.foodlabouffe.net/web/image/website/1/logo?unique=e0215ea", "description_meta": "This is the homepage of the website", "site_name": "Les produits alimentaires Food La Bouffe"}
\ No newline at end of file
added data/enrich_cache/forgeilmarinen.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "forgeilmarinen.com", "logo_url": "https://www.forgeilmarinen.com/favicon.ico", "cover_url": null, "description_meta": "La forge d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/formedica.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "formedica.com", "logo_url": "https://www.formedica.com/cdn/shop/files/favicon-formedica.webp?crop=center&height=32&v=1783712897&width=32", "cover_url": "http://www.formedica.com/cdn/shop/files/formedica_logo.png?v=1738090333", "description_meta": "Formedica vous offre une gamme compl\u00e8te d&#39;\u00e9quipements orthop\u00e9diques, pour les soins de pieds, premiers soins, soins \u00e0 domicile et d&#39;aide \u00e0 la marche.", "site_name": "Formedica"}
\ No newline at end of file
added data/enrich_cache/forms.gle.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "forms.gle", "logo_url": "https://www.gstatic.com/mobilesdk/240501_mobilesdk/firebase_64dp.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fougeres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fougeres.com", "logo_url": "https://www.fougeres.com/wp-content/uploads/2020/06/cropped-logo-01-1-180x180.png", "cover_url": "https://www.fougeres.com/wp-content/uploads/2026/06/fougeres-metaimage.jpeg", "description_meta": "Ancr\u00e9 dans la nature et fa\u00e7onn\u00e9 par plus de trois d\u00e9cennies d\u2019hospitalit\u00e9, Les Foug\u00e8res vous invite \u00e0 d\u00e9couvrir une cuisine pr\u00e9par\u00e9e avec passion, soin et", "site_name": "Les Foug\u00e8res"}
\ No newline at end of file
added data/enrich_cache/fouroclock.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fouroclock.ca", "logo_url": "https://fouroclock.ca/favicon.ico", "cover_url": "https://fouroclock.ca/cdn/shop/files/LOGO_4OCL_INVER_BIL_Plan_de_travail_1_1204x630.png?v=1617840849", "description_meta": "Four O\u2019Clock will accompany you by creating happiness in your daily life. Live an unprecedented tasting experience while feeling the benefits of our teas and herbal teas.", "site_name": "Four O&#39;Clock"}
\ No newline at end of file
added data/enrich_cache/fousdelile.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fousdelile.com", "logo_url": "https://fousdelile.com/wp-content/themes/kom_bespoke/dist/images/favicon-32x32.png", "cover_url": null, "description_meta": "Les fous de l\u2019\u00eele sont simplement des joueurs de vie et des brasseurs d\u2019esp\u00e9rance.", "site_name": "Fous de l&#039;\u00cele Kombucha"}
\ No newline at end of file
added data/enrich_cache/fove.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fove.co", "logo_url": "https://fove.co/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fr.escape.cafe.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fr.escape.cafe", "logo_url": "https://escape.cafe/cdn/shop/files/escape-square-512.png?crop=center&height=32&v=1664202508&width=32", "cover_url": "http://escape.cafe/cdn/shop/files/escape-og-image.png?v=1664202694", "description_meta": "Escape the ordinary with specialty coffees roasted in Montreal. Single-origin beans, bold blends &amp; subscriptions. Go against the grain and find the perfect cup.", "site_name": "Escape Coffee Company"}
\ No newline at end of file
added data/enrich_cache/fr.jouviance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fr.jouviance.com", "logo_url": "https://fr.jouviance.com/cdn/shop/files/WJ2162_Favicon-Jouviance_32x32_28sep2021_32x32.jpg?v=1632859365", "cover_url": null, "description_meta": "Bienvenue chez Jouviance, votre destination #1 pour les soins de la peau et cr\u00e8mes anti-\u00e2ge d\u00e9velopp\u00e9es par des dermatologues. Jetez un coup d&#39;\u0153il !", "site_name": "Jouviance - Canada"}
\ No newline at end of file
added data/enrich_cache/fr.lescoconuts.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fr.lescoconuts.ca", "logo_url": "https://purecoco.ca/cdn/shop/files/coconut-new_-_no_back_517412a0-eeca-4ca2-b06b-c71d86d24921_32x32.png?v=1723491358", "cover_url": "https://purecoco.ca/cdn/shop/files/LesCoconuts-220829-030-Edit_1200x1200.jpg?v=1724446938", "description_meta": "Pure Coco offers luxurious, eco-friendly skincare featuring pure coconut oil, refillable natural deodorants, and spa-like body care. Our gender-neutral, sustainable products nurture your body and the planet. Thoughtful gifting made effortless.", "site_name": "Pure Coco"}
\ No newline at end of file
added data/enrich_cache/fr.maraichersdelorvert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fr.maraichersdelorvert.com", "logo_url": "https://static.wixstatic.com/media/d3d564_4263b4734a6a4fcba345a9e2762adea8%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d3d564_4263b4734a6a4fcba345a9e2762adea8%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/d3d564_fe30ef78bb704f659e422ba102f830bc~mv2.png/v1/fill/w_2307,h_1818,al_c/d3d564_fe30ef78bb704f659e422ba102f830bc~mv2.png", "description_meta": "Paniers de l\u00e9gumes; Kiosque libre-service; March\u00e9 publique", "site_name": "Mara\u00eechers de l"}
\ No newline at end of file
added data/enrich_cache/fr.oreeduboisrestaurant.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fr.oreeduboisrestaurant.com", "logo_url": "https://fr.oreeduboisrestaurant.com/favicon.ico", "cover_url": null, "description_meta": "Home", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fr.poseidn.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fr.poseidn.com", "logo_url": "https://fr.poseidn.com/cdn/shop/files/fav.webp?crop=center&height=32&v=1693807432&width=32", "cover_url": "http://fr.poseidn.com/cdn/shop/files/Poseidn_logo_Master_1-05.png?v=1695336949", "description_meta": "Les meilleures Bombes \u00e0 Boire 3D du monde sont ici. Nos Bombes \u00e0 Cocktail, Bombes \u00e0 Chocolat Chaud et Bombes \u00e0 Th\u00e9 sont aussi d\u00e9licieuses qu&#39;elles sont belles et faciles \u00e0 faire ! D\u00e9couvrez-les d\u00e8s maintenant !", "site_name": "Poseidn"}
\ No newline at end of file
added data/enrich_cache/fr.pure-conscience.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fr.pure-conscience.ca", "logo_url": "https://static.wixstatic.com/media/092cc6_ca79e94c7fdf4896932aa9fa417cc3d7%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/092cc6_ca79e94c7fdf4896932aa9fa417cc3d7%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/092cc6_ca79e94c7fdf4896932aa9fa417cc3d7~mv2.png/v1/fill/w_600,h_600,al_c/092cc6_ca79e94c7fdf4896932aa9fa417cc3d7~mv2.png", "description_meta": "Pure Conscience Farm offers a veriety of natural products: Fruits and Vegetables, Safran, Eggs, Honey, Garlic and Handcrafted Soaps!", "site_name": "Pure Conscience"}
\ No newline at end of file
added data/enrich_cache/fr.wikivoyage.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fr.wikivoyage.org", "logo_url": "https://fr.wikivoyage.org/favicon.ico", "cover_url": "https://upload.wikimedia.org/wikipedia/commons/4/43/Continents_colour2.png?utm_source=fr.wikivoyage.org&amp;utm_campaign=index&amp;utm_content=thumbnail_unscaled", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fraisebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fraisebec.com", "logo_url": "https://fraisebec.com/wp-content/uploads/2025/07/cropped-logo-180x180.png", "cover_url": "https://fraisebec.com/wp-content/uploads/2026/06/D-5468_Fraisebec_Ouverture_cuillette_v1_1200x1600-1.jpg", "description_meta": "Fraisebec est le plus grand producteur de fraises au Canada. Situ\u00e9 dans les Laurentides, nous vous offrons un service d&#039;auto-cueillette \u00e0 quelques minutes de Montr\u00e9al", "site_name": "Fraisebec"}
\ No newline at end of file
added data/enrich_cache/fraisedhiver.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fraisedhiver.ca", "logo_url": "https://fraisedhiver.ca/wp-content/themes/fraisedhiver/assets/images/favicon/apple-touch-icon.png?v=1", "cover_url": null, "description_meta": "Fraise d&#039;hiver : une fraise du Qu\u00e9bec, mais en hiver! En vente chez IGA. Agriculture verticale int\u00e9rieure con\u00e7ue par Ferme d&#039;Hiver.", "site_name": "Fraise d&#039;hiver"}
\ No newline at end of file
added data/enrich_cache/fraisesetframboisesduquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fraisesetframboisesduquebec.com", "logo_url": "https://fraisesetframboisesduquebec.com/wp-content/themes/atomik/images/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "D\u00e9couvrez le plaisir des fraises et framboises du Qu\u00e9bec. Trouvez une ferme pour l&#039;autocueillette, explorez nos recettes et apprenez-en plus sur nos vari\u00e9t\u00e9s.", "site_name": "Fraises et Framboises du Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/fraisfms.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fraisfms.ca", "logo_url": "https://fraisfms.ca/wp-content/uploads/2024/10/cropped-apple-touch-icon-180x180.png", "cover_url": "http://fraisfms.ca/wp-content/uploads/2024/10/Logo-FMS.svg", "description_meta": "Produits Frais FMS est une entreprise familiale qu\u00e9b\u00e9coise se sp\u00e9cialisant dans la culture, l\u2019emballage et la distribution de l\u00e9gumes frais sur les march\u00e9s canadien et nord-am\u00e9ricain.", "site_name": "fms"}
\ No newline at end of file
added data/enrich_cache/fraisiererougi.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fraisiererougi.com", "logo_url": "https://irp.cdn-website.com/8e49f0b1/dms3rep/multi/flavicon-57.png", "cover_url": "https://irp.cdn-website.com/8e49f0b1/dms3rep/multi/opt/flavicon-200-1920w.png", "description_meta": "En 1989, Gilbert et Isabelle Roussel d\u00e9butent la production de fraises sur une parcelle de leur terre. Ils d\u00e9cident alors de consacrer leur \u00e9nergie et leur passion \u00e0 une entreprise qu\u2019ils nommeront Fraisi\u00e8re ROU.G.I. Au fil des ann\u00e9es, les trois enfants int\u00e8grent l\u2019entreprise familiale avec l\u2019objectif d\u2019augmenter la superficie en culture et diversifier la production de fruits et l\u00e9gumes.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/framptonbrasse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "framptonbrasse.com", "logo_url": "https://framptonbrasse.com/logo.png", "cover_url": null, "description_meta": "Bi\u00e8res authentiques brass\u00e9es en beauce D\u00e9couvrez notre ferme brassicole Notre histoire Hopfenweisse Framp-Boise Sieur de L\u00e9ry St-\u00c9douard IIPA Bouquet Tropical Neipa Das Winter Projekt Nuit d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/francoislambert.one.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "francoislambert.one", "logo_url": "https://www.francoislambert.one/cdn/shop/files/Untitled-7-13.jpg?crop=center&height=32&v=1679505516&width=32", "cover_url": "http://www.francoislambert.one/cdn/shop/files/FL-Nouveau-Logo-Noir_a0641330-22e4-4c03-9b6e-40ba48ff004b.png?height=628&pad_color=ffffff&v=1679505467&width=1200", "description_meta": "D\u00e9couvrez la boutique de notre ferme, o\u00f9 chaque produit, du shampoing enrichi aux \u00e9l\u00e9ments naturels \u00e0 nos d\u00e9lices gourmands, est con\u00e7u avec des ingr\u00e9dients issus directement de notre exploitation. Fiers producteur de sirop d&#39;\u00e9rable, nous int\u00e9grons cette essence qu\u00e9b\u00e9coise dans une vari\u00e9t\u00e9 de produits", "site_name": "FrancoisLambert.One"}
\ No newline at end of file
added data/enrich_cache/freddocanada.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "freddocanada.com", "logo_url": "https://freddocanada.com/wp-content/uploads/2024/05/favicon-300x300.png", "cover_url": "https://freddocanada.com/wp-content/uploads/2025/05/45019-874x1024.png", "description_meta": "NOUVEAUT\u00c9 TARTINADE AU CACAO \u00c0 SAVEUR DE NOISETTE fait avec amour et des ingr\u00e9dients simples! Sans noix / sans arachides / sans gluten En savoir plus Les bouch\u00e9es Chunky En savoir plus Les minces sel de mer En savoir plus Les pastilles de chocolat En savoir plus \u00c0 propos de Freddo Les bouch\u00e9es de chocolats [&hellip;]", "site_name": "Freddo Canada"}
\ No newline at end of file
added data/enrich_cache/frescadel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "frescadel.com", "logo_url": "https://irp.cdn-website.com/1a74b26d/dms3rep/multi/soleilFrescadel57.png", "cover_url": "https://irp.cdn-website.com/1a74b26d/dms3rep/multi/opt/Soleilfull-1920w.png", "description_meta": "Une division de Canadawide, Frescadel emballe de fa\u00e7on \u00e9coresponsable une gamme de fruits et l\u00e9gumes conventionnels et biologiques de premi\u00e8re qualit\u00e9. Pr\u00e9sents depuis plusieurs ann\u00e9es dans les plus grandes cha\u00eenes d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/frettdesign.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "frettdesign.ca", "logo_url": "https://frettdesign.ca/cdn/shop/files/favicon_etrema.png?crop=center&height=180&v=1648561754&width=180", "cover_url": null, "description_meta": "Fr\u00ebtt fait une r\u00e9elle diff\u00e9rence dans l&#39;industrie en cr\u00e9ant des designs durables et versatiles. V\u00eatements, accessoires et masques, Fr\u00ebtt propose de vous envelopper de mati\u00e8res 100% naturelles comme le chanvre, de coton biologique ou d\u2019eucalyptus. COMMANDEZ en ligne ou VISITEZ nos boutiques.", "site_name": "Fr\u00ebtt Design"}
\ No newline at end of file
added data/enrich_cache/fringueefutee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fringueefutee.com", "logo_url": "https://fringueefutee.com/favicon.ico", "cover_url": null, "description_meta": "Fringu\u00e9e Fut\u00e9e est une boutique en ligne et ayant pignon sur rue \u00e0 Qu\u00e9bec. Elle offre une vaste s\u00e9lection de v\u00eatements f\u00e9minins de designers qu\u00e9b\u00e9cois. Retrouvez, entre autres, des tuniques, des robes et des chandails de cr\u00e9ateurs tels que Luc Fontaine, Kollonta\u00ef, Marie C, Yoga Jeans, Marilou Design et Cokluch.", "site_name": "Fringu\u00e9e Fut\u00e9e"}
\ No newline at end of file
added data/enrich_cache/fromabitibi.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromabitibi.com", "logo_url": "https://fromabitibi.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Fromagerie Fromabitibi -"}
\ No newline at end of file
added data/enrich_cache/fromageauvillage.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageauvillage.ca", "logo_url": "https://static.wixstatic.com/media/7ce976_9b343824996f4ed4954e239eda01c0b1%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7ce976_9b343824996f4ed4954e239eda01c0b1%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromageauvillage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageauvillage.com", "logo_url": "https://fromageauvillage.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagerie-lemaire.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerie-lemaire.ca", "logo_url": "https://www.fromagerie-lemaire.ca/wp-content/uploads/2015/12/Favicon.png", "cover_url": null, "description_meta": "Pour une halte fromage ou manger une poutine \u00e0 nos restaurants ou se r\u00e9galer \u00e0 l&#039;un de nos bars laitier, la Fromagerie Lemaire saura vous ravir.", "site_name": "Fromagerie Lemaire"}
\ No newline at end of file
added data/enrich_cache/fromagerie-montebello.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerie-montebello.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagerieallen.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieallen.com", "logo_url": "https://static.wixstatic.com/media/add014_e2b96730873b4b45a533d98a5097b099%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/add014_e2b96730873b4b45a533d98a5097b099%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagerieamafacon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieamafacon.com", "logo_url": "https://fromagerieamafacon.com/favicon.ico", "cover_url": null, "description_meta": "Toutes nos cr\u00e9ations ont pour seul souhait de ravir vos papilles. Notre mission, faire les meilleurs fromages au monde. 100% lait sans substances laiti\u00e8res.", "site_name": "Fromagerie Amafa\u00e7on"}
\ No newline at end of file
added data/enrich_cache/fromagerieancetre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieancetre.com", "logo_url": "https://fromagerieancetre.com/apple-touch-icon.png", "cover_url": "https://example.org/facebook.jpg", "description_meta": "L&#039;Anc\u00eatre transforme depuis plus de 30 ans le lait biologique pour offrir des beurres et fromages bios de qualit\u00e9 sup\u00e9rieure.", "site_name": "Fromagerie l&#039;Anc&ecirc;tre"}
\ No newline at end of file
added data/enrich_cache/fromagerieblackburn.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieblackburn.com", "logo_url": "https://www.fromagerieblackburn.com/wp-content/themes/nubee/library/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": "C\u2019est \u00e0 travers le soin que l\u2019on aura mis \u00e0 d\u00e9velopper patiemment les saveurs et les ar\u00f4mes qu\u2019un fromage saura ravir les amateurs du go\u00fbt. \u00c0 la Fromagerie Blackburn, chaque \u00e9tape de fabrication des fromages est minutieusement r\u00e9alis\u00e9e afin que vous puissiez go\u00fbter et appr\u00e9cier des produits artisanaux de la plus grande qualit\u00e9.", "site_name": "Fromagerie Blackburn - Pour le go\u00fbt"}
\ No newline at end of file
added data/enrich_cache/fromagerieboivin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieboivin.com", "logo_url": "https://fromagerieboivin.com/wp-content/themes/sfr-theme-child/img/favicon.ico?v=1.0", "cover_url": "https://fromagerieboivin.com/wp-content/uploads/2021/12/Boivin_Opengraph.jpg", "description_meta": "La fromagerie Boivin vous propose d\u2019authentiques fromages 100 % qu\u00e9b\u00e9cois. Cr\u00e9\u00e9s avec passion \u00e0 partir de lait toujours frais.", "site_name": "Fromagerie Boivin"}
\ No newline at end of file
added data/enrich_cache/fromageriedelagare.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriedelagare.com", "logo_url": "https://fromageriedelagare.com/favicon.ico", "cover_url": "https://www.fromageriedelagare.com/images/02.png", "description_meta": "Situ\u00c3\u00a9e au March\u00c3\u00a9 de la Gare de Sherbrooke, La Fromagerie de la Gare vous offrent des produts du terroir et bien plus!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromageriedelagare.company.site.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriedelagare.company.site", "logo_url": "https://d2j6dbq0eux0bg.cloudfront.net/images/28401139/1396375460.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromageriedesbasques.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriedesbasques.ca", "logo_url": "https://fromageriedesbasques.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromageriedescantons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriedescantons.com", "logo_url": "https://static.wixstatic.com/media/094af7_0cc911a4da7c40a8a682ee6c972e19d4%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/094af7_0cc911a4da7c40a8a682ee6c972e19d4%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromageriedesgrondines.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriedesgrondines.com", "logo_url": "https://static.wixstatic.com/media/4f3921_178b00e189584ba0995dd41d708da4bf%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/4f3921_178b00e189584ba0995dd41d708da4bf%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/4f3921_bacd8f12aaef4d78bacb8a95309bacde%7Emv2.png/v1/fit/w_2500,h_1330,al_c/4f3921_bacd8f12aaef4d78bacb8a95309bacde%7Emv2.png", "description_meta": "D\u00e9couvrez nos fromages biologiques faits \u00e0 partir de lait cru de vaches 100% nourries \u00e0 l", "site_name": "Fromagerie des Grondines"}
\ No newline at end of file
added data/enrich_cache/fromageriedulittoral.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriedulittoral.com", "logo_url": "https://fromageriedulittoral.com/images/icons/android-chrome-192x192.png", "cover_url": "https://fromageriedulittoral.com/images/Upload/Partage/fromagerie-littoral-logo.jpg", "description_meta": "D\u00e9couvrez des produits uniques fabriqu\u00e9s avec un lait de vache entier, provenant uniquement de notre ferme.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromageriedupieddevent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriedupieddevent.com", "logo_url": "https://www.fromageriedupieddevent.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5379fab7e4b074c2fd24be2b/t/5e8a55e468e1057e9c3f5a9d/1586124273728/LOGO+Fromagerie+transparent.png?format=1500w", "description_meta": null, "site_name": "La Fromagerie Pied-De-Vent"}
\ No newline at end of file
added data/enrich_cache/fromageriedupresbytere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriedupresbytere.com", "logo_url": "https://static.wixstatic.com/media/5e147e_f3fe8e1fab77491fbf3c27335e026e99%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5e147e_f3fe8e1fab77491fbf3c27335e026e99%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagerieetchemin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieetchemin.com", "logo_url": "https://static.wixstatic.com/media/61c508_807135a64ab24f17b534315df3d748ff%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/61c508_807135a64ab24f17b534315df3d748ff%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/61c508_f7f8b0a0cd434505aa3ffaddd9e2e40d~mv2.jpg/v1/fill/w_853,h_640,al_c/61c508_f7f8b0a0cd434505aa3ffaddd9e2e40d~mv2.jpg", "description_meta": "Apr\u00e8s 22 ans d", "site_name": "Fromagerie Etchemin"}
\ No newline at end of file
added data/enrich_cache/fromageriegilbert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriegilbert.com", "logo_url": "https://fromageriegilbert.com/s_tpl/webgo/images/fromagerie-gilbert-favicon.png", "cover_url": "https://fromageriegilbert.com/s_data/img/42.png", "description_meta": "L\u2019entreprise de Saint-Joseph-de-Beauce se sp\u00e9cialise dans la production de fromage \u00e0 p\u00e2te ferme non affin\u00e9e. Son fromage \u00ab Le Beauceron \u00bb est reconnu pour sa grande qualit\u00e9 et sa fra\u00eecheur constante.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromageriegourmande.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriegourmande.ca", "logo_url": "https://static.wixstatic.com/media/0f2d78_991839ee38e9430ea6cb70510c0c4f2a%7Emv2.webp/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/0f2d78_991839ee38e9430ea6cb70510c0c4f2a%7Emv2.webp", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromageriehamel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriehamel.com", "logo_url": "https://www.fromageriehamel.com/app/themes/fromagerie-hamel/public/images/favicon/apple-touch-icon.86b9d2.png", "cover_url": "https://www.fromageriehamel.com/app/uploads/2025/05/hamel-fb-img.jpg", "description_meta": "Chez La fromagerie Hamel, nous mettons \u00e0 l\u2019honneur les meilleurs fromages d\u2019ici et d\u2019ailleurs, soigneusement s\u00e9lectionn\u00e9s", "site_name": "La fromagerie Hamel"}
\ No newline at end of file
added data/enrich_cache/fromagerielabourgade.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerielabourgade.com", "logo_url": "https://fromagerielabourgade.com/favicon.ico", "cover_url": "https://fromagerielabourgade.com/wp-content/uploads/2021/05/FromagerieLaBourgade_1200x630.png", "description_meta": "la Fromagerie La Bourgade vous propose un menu pour tous les go\u00fbts, que ce soit pour une petite fringale ou pour un repas digne des plus gros app\u00e9tits.", "site_name": "Fromagerie la Bourgade"}
\ No newline at end of file
added data/enrich_cache/fromagerielacabriole.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerielacabriole.ca", "logo_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQUyYdLiaVVk_oPz2zx__IoDYxO8mcrczGYy08Hm2SlM0bMAav3Zoa7OSgCXPq_hwsUVvlPbAkCwLbf_UfDmPEIfoyA1NsZ9FDSy9Oe72MYWi9znJXEO095ldz6SvdI4oxYz-6UP9SKNRdeYUyHWlEedV8y5tWWOb0dBcV9befZzLGQbhUoR33y_Fk_0kKILBar05ujy4fPnECQoCg7mD6s", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQU1y1MApJmoSHZRWGCbMd6lcf6hmHvfAg-rF6Qyz6LZHJpbBnWfjTDsKLm7b6HHbVQeTkdu1PhqyIi7YvU4BN4iFdNz0nrouY7K9z5wySpIP085odAk-_oGoy6vkWuaD17n1WjljjinGVrtsbmZRYGqyJm0LVcmHQI5Tq5Z-9Lnn5j0FkBO0OIXLQ=w16383", "description_meta": "Bienvenue \u00e0 la \u000bFROMAGERIE LA CABRIOLE!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagerielachaudiere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerielachaudiere.com", "logo_url": "https://fromagerielachaudiere.com/favicon.ico", "cover_url": null, "description_meta": "Depuis 1976, la Fromagerie La Chaudi\u00e8re cr\u00e9\u00e9 une multitude de fromages et de produits qui arborent fi\u00e8rement la signature et les accents d&#039;ici.", "site_name": "Fromagerie La Chaudi&egrave;re"}
\ No newline at end of file
added data/enrich_cache/fromagerielastation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerielastation.com", "logo_url": "https://fromagerielastation.com/wp-content/uploads/2016/11/LogoFromageri.png", "cover_url": "https://fromagerielastation.com/wp-content/uploads/2016/08/La-Station-1.jpg", "description_meta": "Fromages biologiques au lait cru de vaches. Fromagerie fermi\u00e8re en Estrie. Agriculture biologique. Entreprise familiale quatri\u00e8me g\u00e9n\u00e9ration.", "site_name": "Fromagerie La Station"}
\ No newline at end of file
added data/enrich_cache/fromagerieledetour.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieledetour.com", "logo_url": "https://fromagerieledetour.com/wp-content/uploads/2025/12/cropped-favicondetour-180x180.avif", "cover_url": "https://fromagerieledetour.com/wp-content/uploads/2025/12/FROMAGERIE-MAGASIN-VUE-FRONTALE-16-x-9-VERTICALE-scaled.avif", "description_meta": "D\u00e9couvrez la Fromagerie Le D\u00e9tour et nos fromages fins prim\u00e9s au lait de vache, ch\u00e8vre et brebis. Boutique et d\u00e9gustation", "site_name": "Fromagerie Le D\u00e9tour"}
\ No newline at end of file
added data/enrich_cache/fromagerielemetayer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerielemetayer.com", "logo_url": "http://fromagerielemetayer.com/wp-content/uploads/2014/05/Logo1-300x231.png", "cover_url": null, "description_meta": null, "site_name": "Fromagerie Le M\u00e9tayer"}
\ No newline at end of file
added data/enrich_cache/fromagerielesrivieres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerielesrivieres.com", "logo_url": "https://fromagerielesrivieres.com/wp-content/uploads/2024/06/cropped-favicon-fromagerie-180x180.png", "cover_url": "https://fromagerielesrivieres.com/wp-content/uploads/2024/06/fromagerie-les-rivieres_boutique-et-degustation_fromagerie-et-transformation_restaurant-chiz-poutine_comptoir-degustation-boutique.jpg", "description_meta": "Fromagerie Les Rivi\u00e8res, la seule usine laiti\u00e8re \u00e0 Qu\u00e9bec. Fromages artisanaux faits avec du lait 100% qu\u00e9b\u00e9cois. D\u00e9couvrez notre s\u00e9lection!", "site_name": "Fromagerie Les Rivieres"}
\ No newline at end of file
added data/enrich_cache/fromageriemariekade.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriemariekade.com", "logo_url": "https://www.fromageriemariekade.com/wp-content/uploads/2016/10/Marie-Kade\u0301-Logo32.png", "cover_url": null, "description_meta": "Fromagerie Marie Kad\u00e9 is a plant that makes Mediterranean specialty cheeses. We produce a wide variety of cheeses, natural yogurt and pressed yogurt.", "site_name": "Fromagerie Marie Kade"}
\ No newline at end of file
added data/enrich_cache/fromageriemedard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriemedard.ca", "logo_url": "https://fromageriemedard.ca/ressources/images/favicon/android-icon-192x192.png", "cover_url": "https://fromageriemedard.ca/ressources/images/resultats-recherche-google.png", "description_meta": "D\u00e9couvrez les fromages, pains et viennoiseries de la Fromagerie M\u00e9dard \u00e0 Saint-G\u00e9d\u00e9on au Lac-Saint-Jean.", "site_name": "Fromagerie M\u00e9dard"}
\ No newline at end of file
added data/enrich_cache/fromagerienouvellefrance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerienouvellefrance.com", "logo_url": "https://fromagerienouvellefrance.com/wp-content/themes/nouvellefrance/images/favicon.png", "cover_url": null, "description_meta": "Fromagerie Nouvelle France a remport\u00e9 plus de 42 prix dans diff\u00e9rents concours dont le Meilleur Fromage Du Qu\u00e9bec en 2011 et 2014.", "site_name": "Fromagerie Nouvelle France"}
\ No newline at end of file
added data/enrich_cache/fromageriepepitedor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriepepitedor.com", "logo_url": "https://www.fromageriepepitedor.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Fromagerie la P\u00e9pite d&#039;or | Une richesse \u00e0 d\u00e9couvrir!"}
\ No newline at end of file
added data/enrich_cache/fromagerieperron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieperron.com", "logo_url": "https://fromagerieperron.com/wp-content/uploads/2024/08/favicon-fromagerie-perron.png", "cover_url": "https://fromagerieperron.com/wp-content/uploads/2024/08/share-image-fromagerie-perron-scaled.jpg", "description_meta": null, "site_name": "Fromagerie Perron"}
\ No newline at end of file
added data/enrich_cache/fromagerieptitplaisir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieptitplaisir.com", "logo_url": "https://fromagerieptitplaisir.com/images/favicon_rond_png.png", "cover_url": null, "description_meta": "D\u00e9couvrez la Fromagerie P\u2019tit Plaisir \u00e0 Weedon : fromages A2A2 faits \u00e0 la ferme, resto maison, bar laitier et accueil chaleureux toute l\u2019ann\u00e9e.", "site_name": "Fromagerie P"}
\ No newline at end of file
added data/enrich_cache/fromagerieptittraindunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieptittraindunord.com", "logo_url": "https://sp-ao.shortpixel.ai/client/to_webp,q_glossy,ret_img,w_180,h_180/https://www.fromagerieptittraindunord.com/wp-content/uploads/cropped-Logo-le-ptit-train-du-nord-180x180.png", "cover_url": "https://www.fromagerieptittraindunord.com/wp-content/uploads/promotion-transport-gratuit.jpg", "description_meta": "Fromagerie artisanale Le P\u2019tit Train du Nord fabrique des fromages fait de lait frais local et d&#039;ingr\u00e9dients de qualit\u00e9. Boutique en ligne vente tortillons", "site_name": "Fromagerie le P&#039;tit Train du Nord Inc."}
\ No newline at end of file
added data/enrich_cache/fromagerierang9.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerierang9.com", "logo_url": "https://fromagerierang9.com/favicon.ico", "cover_url": "https://fromagerierang9.com/wp-content/themes/rang9/images/og-logo.png", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagerieroy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieroy.com", "logo_url": "https://www.fromagerieroy.com/cdn/shop/files/logo_32x32.jpg?v=1620742573", "cover_url": "http://www.fromagerieroy.com/cdn/shop/files/ROY_logo_noir.png?v=1686744299", "description_meta": "Fromagerie Roy, fromage cheddar, en grain, en bloc, mozzarella, feta, ricotta, produits locaux de Lanaudi\u00e8re, boutique, livraison \u00e0 domicile.", "site_name": "Fromagerie Roy"}
\ No newline at end of file
added data/enrich_cache/fromageriest-laurent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriest-laurent.com", "logo_url": "https://www.fromageriest-laurent.com/wp-content/themes/nubee/assets/favicon/apple-touch-icon.png", "cover_url": "https://www.fromageriest-laurent.com/wp-content/uploads/2025/09/r4a3101_web-1400x933.jpg", "description_meta": "D\u00e9couvrez nos fromages cheddar frais, fins et produits exclusifs. Une tradition gourmande au c\u0153ur du Saguenay-Lac-Saint-Jean depuis 1930.", "site_name": "Fromagerie St-Laurent"}
\ No newline at end of file
added data/enrich_cache/fromageriestfidele.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageriestfidele.net", "logo_url": "https://fromageriestfidele.net/favicon.ico", "cover_url": null, "description_meta": "canada, quebec, charlevoix, fromage, fromages, fromagerie, St-Fidele, La Malbaie, laiterie, comptoir, vente, bar, laitier, St-Laurent, St-Fid\u00e8le, cr\u00e8me, glac\u00e9e, lactose, suisse, cheddar", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagerieterroirbellechasse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerieterroirbellechasse.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "Fromagerie du Terroir de Bellechasse"}
\ No newline at end of file
added data/enrich_cache/fromagerievictoria.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagerievictoria.com", "logo_url": "https://fromagerievictoria.com/wp-content/themes/frmvic/assets/images/favicon-32x32.png", "cover_url": null, "description_meta": "Vous servir du fromage en grains frais tous les jours, fait \u00e0 100% de lait, en plus de vous offrir un service de restauration rapide o\u00f9 toute la famille s\u2019y plaira. C\u2019est \u00e7a, l\u2019exp\u00e9rience Victoria", "site_name": "Fromagerie Victoria"}
\ No newline at end of file
added data/enrich_cache/fromagesbergeron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagesbergeron.com", "logo_url": "https://fromagesbergeron.com/cdn/shop/files/Creation_sans_titre_29ce6009-5570-4fce-89b3-59ba2b464654.svg?crop=center&height=32&v=1746563372&width=32", "cover_url": "https://fromagesbergeron.com/cdn/shop/files/logo-bergeron_46d60cde-112d-419d-9176-1b0de82e2f7f.png?v=1746558955", "description_meta": "Fromagerie Bergeron produit des fromages fins de caract\u00e8re avec fiert\u00e9 et passion depuis 1989. D\u00e9couvrez tous nos fromages, fabriqu\u00e9s avec soin par nos ma\u00eetres fromagers.", "site_name": "Fromagerie Bergeron"}
\ No newline at end of file
added data/enrich_cache/fromagescda.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagescda.com", "logo_url": "https://fromagescda.com/img/favicon.ico?1569797871", "cover_url": null, "description_meta": "Fromages CDA vous invite \u00e0 d\u00e9couvrir tout un \u00e9ventail de fromagers artisans et entrepreneurs qu\u00e9becois pour qui les mots \u00abqualit\u00e9\u00bb et \u00abqu\u00e9becois\u00bb sont synonymes.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagesdeliledorleans.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagesdeliledorleans.com", "logo_url": "https://www.fromagesdeliledorleans.com/wp-content/uploads/2016/02/fromagerie.icon_.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/fromagesduquebec.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagesduquebec.qc.ca", "logo_url": "https://fromagesduquebec.qc.ca/static/apple-touch-icon.6e83f44ef47b.png", "cover_url": "https://fromagesduquebec.qc.ca/static/images/og-image.f558acc68c8e.jpg", "description_meta": "Plaisirs Gourmets distribue depuis 1999 les meilleurs fromages artisans et produits gourmands qu\u00e9b\u00e9cois dans plus de 1500 points de vente au Canada.", "site_name": "Plaisirs Gourmets"}
\ No newline at end of file
added data/enrich_cache/fromagesileauxgrues.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagesileauxgrues.com", "logo_url": "https://fromagesileauxgrues.com/wp-content/uploads/2020/04/cropped-favicon-180x180.jpg", "cover_url": "https://fromagesileauxgrues.com/wp-content/uploads/2025/12/fromagerie-ile-aux-grues-fromages-photo.jpg", "description_meta": "Fromages fins et cheddars vieillis uniques sur le Saint-Laurent. D\u00e9couvrez les produits de la Fromagerie de l&#039;\u00cele-aux-Grues.", "site_name": "Fromagerie de l&#039;\u00cele-aux-Grues"}
\ No newline at end of file
added data/enrich_cache/fromagesrumba.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagesrumba.com", "logo_url": "https://fromagesrumba.com/wp-content/uploads/fbrfg/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": "Les Fromages Rumba"}
\ No newline at end of file
added data/enrich_cache/fromageurportjoli.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromageurportjoli.com", "logo_url": "https://fromageurportjoli.com/cdn/shop/files/Le_Fromageur_Logo_Noir.png?crop=center&height=32&v=1710863163&width=32", "cover_url": "http://fromageurportjoli.com/cdn/shop/files/Partage_media.jpg?v=1733951825", "description_meta": "D\u00e9couvrez le savoir-faire artisanal de la Fromagerie Port-Joli et le restaurant Le Fromageur. Savourez des produits locaux et un menu gourmand qui mettent le fromage \u00e0 l&#39;honneur. \u00c0 d\u00e9guster sur place ou \u00e0 emporter !", "site_name": "Fromageur Port-Joli"}
\ No newline at end of file
added data/enrich_cache/fromagewarwick.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagewarwick.com", "logo_url": "https://i0.wp.com/fromagewarwick.com/wp-content/uploads/2020/06/cropped-Sans-titre-4-1.png?fit=180%2C180&#038;ssl=1", "cover_url": "https://fromagewarwick.com/wp-content/uploads/2020/07/IMG_1748-1.jpg", "description_meta": "Fromage Warwick est un producteur et transformateur de cheddar frais et de cheddar vieilli. Venez d\u00e9couvrir nos d\u00e9licieux produits.", "site_name": "Fromage Warwick"}
\ No newline at end of file
added data/enrich_cache/fromagiersdelatableronde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fromagiersdelatableronde.com", "logo_url": "https://www.fromagiersdelatableronde.com/app/uploads/2020/08/cropped-favicon-2-180x180.png", "cover_url": null, "description_meta": "La fromagerie propose une large gamme de d\u00e9licieux fromages tous fabriqu\u00e9s avec le lait de la ferme familiale.", "site_name": "Les Fromagiers de la Table Ronde"}
\ No newline at end of file
added data/enrich_cache/fruitdor.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fruitdor.ca", "logo_url": "https://fruitdor.ca/favicon.png", "cover_url": "https://fruitdor.ca/workspace/uploads/site/bureau-villeroy-logo-fdo-1615811266.jpg", "description_meta": "Fruit d\u2019Or est un transformateur de canneberges s\u00e9ch\u00e9es et de bleuets biologiques et conventionnels. Nous servons les manufacturiers et distributeurs \u00e0 l\u2019international", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fruitdujour.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fruitdujour.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5e8347fbf128672cef676c31/f9909971-e935-47a1-9ad6-1f3c38f8bcde/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5e8347fbf128672cef676c31/t/5ecbd375ce92da4492e35b5a/1590416249692/DSCN5332+%281%29+%281%29.jpg?format=1500w", "description_meta": "Fruit du jour est une marque fi\u00e8rement qu\u00e9b\u00e9coise qui offre une vari\u00e9t\u00e9 de fruits surgel\u00e9s, cultiv\u00e9s dans la r\u00e9gion de Lanaudi\u00e8re.", "site_name": "Fruit du jour"}
\ No newline at end of file
added data/enrich_cache/fruitslegumesestrie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fruitslegumesestrie.com", "logo_url": "https://fruitslegumesestrie.com/2024site/wp-content/uploads/2024/01/cropped-Flavicon-FLE-1-180x180.webp", "cover_url": "https://fruitslegumesestrie.com/2024site/wp-content/uploads/2024/05/Image-generique-FLE.jpg", "description_meta": null, "site_name": "Boutique FLE"}
\ No newline at end of file
added data/enrich_cache/fumoir-monsieur-emile.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fumoir-monsieur-emile.com", "logo_url": "https://fumoir-monsieur-emile.com/wp-content/uploads/2024/04/cropped-LogoSite_Plan-de-travail-1-copie-180x180.png", "cover_url": "https://fumoir-monsieur-emile.com/wp-content/uploads/2024/04/Photo_POst.jpg", "description_meta": "D\u00e9couvrez le saumon fum\u00e9 haut de gamme de Fumoir Monsieur \u00c9mile, pr\u00e9par\u00e9 en Gasp\u00e9sie depuis plus de 20 ans \u00e0 partir de saumon frais de l\u2019Atlantique.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fumoircascapedia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fumoircascapedia.com", "logo_url": "https://cdn.prod.website-files.com/64b1431e635cb0e2d00ae394/64b5980c895aea04f174e87c_FC-logo-webclip.png", "cover_url": null, "description_meta": "Bienvenue au Fumoir Cascapedia, votre fumoir local nich\u00e9 au c\u0153ur de la p\u00e9ninsule de Gasp\u00e9sie, au Qu\u00e9bec. Avec fiert\u00e9, nous pr\u00e9parons du saumon, de la truite et des p\u00e9toncles fum\u00e9s \u00e0 froid, en respectant les traditions ancestrales transmises de g\u00e9n\u00e9ration en g\u00e9n\u00e9ration au sein de la famille Legouffe. En utilisant des ingr\u00e9dients locaux, nous vous offrons un go\u00fbt authentique de notre r\u00e9gion. Explore", "site_name": null}
\ No newline at end of file
added data/enrich_cache/fumoirdantan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fumoirdantan.com", "logo_url": "https://fumoirdantan.com/wp-content/uploads/2021/04/cropped-logo_fumoir-1-180x180.png", "cover_url": "https://fumoirdantan.com/wp-content/uploads/2021/05/home-hero-1.png", "description_meta": "Le Fumoirdes \u00celes. Depuis 1942 Le proc\u00e9d\u00e9 artisanal du boucanage de poisson, transmis de p\u00e8re en fils, assure la qualit\u00e9 et l&#039;authenticit\u00e9 des produits du", "site_name": "Le Fumoir d&#039;Antan"}
\ No newline at end of file
added data/enrich_cache/fumoirdunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fumoirdunord.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/e929acc1-db9c-43b9-8906-bb4894929504/_IMG_2417.jpg", "description_meta": null, "site_name": "Fumoir du Nord"}
\ No newline at end of file
added data/enrich_cache/fumoirlepaternel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fumoirlepaternel.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/02b41555-c16f-4e63-bdd4-177136b8c96a/logo.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/02b41555-c16f-4e63-bdd4-177136b8c96a/7b7a15a2-8159-40e7-b32d-4c13bfa52bfd.jpg", "description_meta": null, "site_name": "Fumoir Le Paternel"}
\ No newline at end of file
added data/enrich_cache/fumoirsgosselin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fumoirsgosselin.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5d2f8a5ecc7f8c0001cea67c/1563828267731-VWQ8SL36YSZ7NZF5F3XK/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5d2f8a5ecc7f8c0001cea67c/t/5d8a213e4ea55e7d408bd121/1588792116816/Fumoirs+Gosselin-2ig.jpg?format=1500w", "description_meta": "Nich\u00e9e \u00e0 Frelighsburg, dans les Cantons-de-l", "site_name": "Fumoirs gosselin"}
\ No newline at end of file
added data/enrich_cache/furca.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "furca.ca", "logo_url": "https://www.furca.ca/images/site/favicon.png", "cover_url": null, "description_meta": "Furca? Ce sont des produits gourmands \u00e0 base de viande, m\u00ealant recettes traditionnelles et gastronomies exotiques \u00e0 un savoir-faire qu\u00e9b\u00e9cois de qualit\u00e9.", "site_name": "Bon pour toutes les fourchettes"}
\ No newline at end of file
added data/enrich_cache/fusionmetalmobile.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "fusionmetalmobile.com", "logo_url": "https://fusionmetalmobile.com/wp-content/uploads/2026/06/cropped-Fusion-Metal-scaled-1-180x180.png", "cover_url": null, "description_meta": "R\u00e9paration \u2022 Fabrication \u2022 Soudure Mobile", "site_name": "Fusion Metal Mobile"}
\ No newline at end of file
added data/enrich_cache/gabeko.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gabeko.ca", "logo_url": "https://gabeko.ca/favicon.ico", "cover_url": "http://gabeko.ca/cdn/shop/files/3B3153E5-D174-450E-B408-80851C4BDEAD_c2591f74-e626-487a-8b94-4bb40523484a.jpg?v=1677624269", "description_meta": "Gab\u00e9ko \u2022 Corps \u2022 Bain \u2022 Ambiance", "site_name": "Gab\u00e9ko \u2022 Corps \u2022 Bain \u2022 Ambiance"}
\ No newline at end of file
added data/enrich_cache/gagnonlgq.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gagnonlgq.com", "logo_url": "https://gagnonlgq.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/gaiaetcie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gaiaetcie.com", "logo_url": "https://static.wixstatic.com/media/8eca32_9fdd6432b46d455687d0c7dfc94a68c2%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/8eca32_9fdd6432b46d455687d0c7dfc94a68c2%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/galerie500richelieu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "galerie500richelieu.com", "logo_url": "https://galerie500richelieu.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/galerieiris.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "galerieiris.com", "logo_url": "https://galerieiris.com/cdn/shop/files/Logo_1_2.webp?crop=center&height=32&v=1758812853&width=32", "cover_url": "http://galerieiris.com/cdn/shop/files/GalerieIris_bc38cd2b-1369-4e53-a691-87e60f835291.webp?v=1758816720", "description_meta": "The renowned Iris Art Gallery has been a meeting place for the most significant currents of Canadian contemporary art for 40+ years. Spacious and diverse, the gallery permanently showcases the creations of more than eighty artists with varied styles, bringing together paintings, sculptures, fine crafts, and jewelry.", "site_name": "Galerie d&#39;art Iris"}
\ No newline at end of file
added data/enrich_cache/gambrinus.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gambrinus.qc.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/60638a661336a80eaad9899f/8bbe06c3-8edb-4ad0-b7e0-6427f205dd24/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/60638a661336a80eaad9899f/t/6063d581b46736615c23809a/1617155464996/GAMB-16213-vs-logo_oval_CMYK.png?format=1500w", "description_meta": "Gambrinus - Artisan Brasseur", "site_name": "Gambrinus"}
\ No newline at end of file
added data/enrich_cache/garderienature.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "garderienature.ca", "logo_url": "https://garderienature.ca/wp-content/uploads/2018/11/logo-garderie-nature-pastille-bleu-w.png", "cover_url": "https://garderienature.ca/wp-content/uploads/2018/11/logo-garderie-nature-horizontal-couleur-w.png", "description_meta": "Notre Garderie Nature est un service de garde innovant au Saguenay destin\u00e9 aux enfants de 0 \u00e0 5 ans, utilisant la nature comme principal outil p\u00e9dagogique.", "site_name": "Garderie Nature"}
\ No newline at end of file
added data/enrich_cache/garderieslesetoiles.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "garderieslesetoiles.com", "logo_url": "https://garderieslesetoiles.com/wp-content/uploads/2021/06/New-Project-30.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/garno.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "garno.com", "logo_url": "https://garno.com/app/uploads/cropped-favicon-garno-300x300.png", "cover_url": null, "description_meta": "\u00c9pices et assaisonnements provenant des 4 coins du monde. 300 vari\u00e9t\u00e9s d\u2019\u00e9pices et d\u2019herbes, de bases de soupe, potages, sauces, trempettes et de vinaigrettes.", "site_name": "Les \u00c9pices Garno"}
\ No newline at end of file
added data/enrich_cache/gaspeau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gaspeau.com", "logo_url": "http://gaspeau.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/gaspesiegourmandemer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gaspesiegourmandemer.com", "logo_url": "https://gaspesiegourmandemer.com/favicon.ico", "cover_url": "https://gaspesiegourmandemer.com/wp-content/uploads/2026/06/featured-ggmer.jpg", "description_meta": "Neuf poissonneries gasp\u00e9siennes s\u2019unissent pour faire rayonner les produits marins d\u2019ici et offrir aux consommateurs des produits de la mer gasp\u00e9siens, frais, savoureux et ancr\u00e9s dans le savoir-faire de notre territoire.", "site_name": "Gasp\u00e9sie Gourmande Mer"}
\ No newline at end of file
added data/enrich_cache/gaspesiesauvage-shop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gaspesiesauvage-shop.com", "logo_url": "https://gaspesiesauvage-shop.com/wp-content/uploads/2019/01/cropped-cropped-gaspesie-sauvage-logo-14985259743-2-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/gateauxjulimagine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gateauxjulimagine.com", "logo_url": "https://gateauxjulimagine.com/ressources/images/favicon/android-icon-192x192.png", "cover_url": "https://gateauxjulimagine.com/uploads/3p4a9775.jpg", "description_meta": "Les g\u00e2teaux Jul", "site_name": "Les g\u00e2teaux Jul"}
\ No newline at end of file
added data/enrich_cache/gateauxmb.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gateauxmb.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/gateriesanimalia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gateriesanimalia.com", "logo_url": "https://static.wixstatic.com/media/111511_61c3676f8cf74bbebb2806f6ab085654%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/111511_61c3676f8cf74bbebb2806f6ab085654%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/111511_61c3676f8cf74bbebb2806f6ab085654%7Emv2.png/v1/fit/w_2500,h_1330,al_c/111511_61c3676f8cf74bbebb2806f6ab085654%7Emv2.png", "description_meta": "Alimentation Crue - Lyophilis\u00e9e - Om\u00e9ga 3 - 100% Naturelle - SANT\u00c9 - Certifi\u00e9s Aliments Qu\u00e9bec.\u00a0G\u00e2teries pour vos animaux provenant des eaux pures Gasp\u00e9sienne convient au chien et au chat de G\u00e2teries Animalia", "site_name": "G\u00e2teries Animalia"}
\ No newline at end of file
added data/enrich_cache/gazebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gazebec.com", "logo_url": "https://gazebec.com/wp-content/uploads/2020/04/cropped-gazebec-favicon-180x180.png", "cover_url": "https://gazebec.com/wp-content/uploads/2019/10/logo-gazebo-cabanon-meubles-jardin-Gazebec-noir-e1687374545903.png", "description_meta": "Une vie ext\u00e9rieure \u00e0 votre mesure avec Gaz\u00e9bec. Nos gaz\u00e9bos en bois de c\u00e8dre rouge de l&#039;Ouest sont personnalisables selon vos besoins. Cabanons et bien plus!", "site_name": "Gaz\u00e9bec | Vie ext\u00e9rieure \u00e0 votre mesure"}
\ No newline at end of file
added data/enrich_cache/gazebopenguin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gazebopenguin.com", "logo_url": "https://gazebopenguin.com/cdn/shop/files/gazebopenguin.com-favicon-large.png?crop=center&height=32&v=1778780375&width=32", "cover_url": null, "description_meta": "Gazebo Penguin", "site_name": "Gazebo Penguin"}
\ No newline at end of file
added data/enrich_cache/gelcare.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gelcare.com", "logo_url": "https://cdn.shopify.com/oxygen-v2/24063/18238/37655/4118172/build/_assets/favicon-RTOBCVZQ.svg?url", "cover_url": "https://cdn.sanity.io/images/jxk2yin1/production/806410edc12276f2f9ce04c7aad83e299dfaad2a-1200x900.jpg?auto=format&amp;crop=entropy&amp;fit=crop&amp;h=630&amp;q=85&amp;w=1200", "description_meta": "GELCARE is the brand that allows you to become your own nail artist. We provide innovative colours comprised of best-in-class formulas.", "site_name": "GELCARE"}
\ No newline at end of file
added data/enrich_cache/geloso.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "geloso.com", "logo_url": "https://geloso.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/gemmelesirop.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gemmelesirop.ca", "logo_url": "https://gemmelesirop.ca/d5d9ad2c8585130cf0b24a4569f1401f.png", "cover_url": "https://gemmelesirop.ca/ee98b0e573be8c45eb1163bf316dadfc.png", "description_meta": "Situ\u00c3\u00a9 sur la rive-sud de Montr\u00c3\u00a9al, sucrez vous le bec avec nos produits d&#x27;\u00c3\u00a9rable de premi\u00c3\u00a8re qualit\u00c3\u00a9. Restez bien au chaud avec notre bois de chauffage.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/gemmesquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gemmesquebec.com", "logo_url": "https://www.gemmesquebec.com/favicon.png", "cover_url": null, "description_meta": "Collection unique en argent sterling &eacute;labor&eacute;e avec le souci de distinguer la femme &eacute;l&eacute;gante.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/gen-v.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gen-v.com", "logo_url": "https://gen-v.com/favicon.ico?v=1", "cover_url": "https://cms.gen-v.com/uploads/share/_AUTOxAUTO_crop_center-center_80_none_ns/OG-image-FR.jpg", "description_meta": "Nous sommes la g\u00c3\u00a9n\u00c3\u00a9ration V. Nous voulons manger frais, nous voulons manger vrai.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/genacol.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "genacol.ca", "logo_url": "https://genacol.ca/favicon.ico", "cover_url": "https://genacol.ca/wp-content/uploads/2022/12/Logo_Genacol_1800x1800.jpg", "description_meta": "D\u00e9couvrez les suppl\u00e9ments pour la sant\u00e9 articulaire de Genacol : sp\u00e9cifiquement con\u00e7us pour soulager les douleurs li\u00e9es \u00e0 l&#039;arthrose.", "site_name": "Genacol"}
\ No newline at end of file
added data/enrich_cache/genevrier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "genevrier.com", "logo_url": "https://genevrier.com/favicons/android-chrome-192x192.png", "cover_url": "https://genevrier.com/wp-content/uploads/2016/01/logo_summer.png", "description_meta": "Le Gen\u00e9vrier est l\u2019endroit par excellence pour un s\u00e9jour \u00e0 Baie-Saint-Paul, dans Charlevoix, pour la qualit\u00e9 de son h\u00e9bergement en camping ou en chalet, la diversit\u00e9 de ses activit\u00e9s et le confort de ses installations.", "site_name": "Gen\u00e9vrier"}
\ No newline at end of file
added data/enrich_cache/geocan-int.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "geocan-int.com", "logo_url": "https://geocan-int.com/favicon.ico", "cover_url": null, "description_meta": "Geocan r\u00e9invente le march\u00e9 des accessoires et articles pour l\u2019\u00e9cole gr\u00e2ce \u00e0 la conception de mat\u00e9riel scolaire r\u00e9pondant aux besoins des \u00e9tudiants.", "site_name": "G&eacute;ocan"}
\ No newline at end of file
added data/enrich_cache/germainhotels.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "germainhotels.com", "logo_url": "https://www.germainhotels.com/favicons/corpo/favicon-48x48.02e30.png", "cover_url": "https://assets.germainhotels.com/germain-website-assets-production/website-assets/Germain-H%C3%B4tels/Logo_GermainHotels_FR_2019_Black_Square.png", "description_meta": "Germain H\u00f4tels est une entreprise familiale canadienne derri\u00e8re les H\u00f4tels Le Germain, les H\u00f4tels Alt et Escad \u00e0 travers le Canada.", "site_name": "Germain H\u00f4tels"}
\ No newline at end of file
added data/enrich_cache/gfmetisneigette.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gfmetisneigette.ca", "logo_url": "https://www.gfmetisneigette.ca/images/favicon/android-icon-192x192.png", "cover_url": "https://www.gfmetisneigette.ca/", "description_meta": "Soci\u00e9t\u00e9 am\u00e9nageant nos for\u00eats par le d\u00e9veloppement durable, \u00e9conomiquement viable, socialement acceptable, sain pour l\u2019environnement et participons au d\u00e9veloppement \u00e9conomique de nos municipalit\u00e9s.", "site_name": "Groupement forestier M\u00e9tis-Neigette"}
\ No newline at end of file
added data/enrich_cache/gfs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gfs.ca", "logo_url": "https://gfs.ca/wp-content/uploads/2022/08/gfs-favicon.png", "cover_url": "https://gfs.ca/wp-content/uploads/2025/10/Chef-in-Kitchen-on-Laptop.png", "description_meta": "Gordon Food Service is a prominent family-owned food distributor in North America, serving restaurants, healthcare operations, and schools.", "site_name": "Gordon Food Service"}
\ No newline at end of file
added data/enrich_cache/giannonepoultry.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "giannonepoultry.com", "logo_url": "https://media.giannonepoultry.com/public/default/images/favicon/apple-touch-icon/59b7a05aa449622582731273fcbc647da94ed59a/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/giboogrill.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "giboogrill.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/gibou.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gibou.ca", "logo_url": "https://gibou.ca/cdn/shop/files/g_1.png?crop=center&height=32&v=1731510954&width=32", "cover_url": "http://gibou.ca/cdn/shop/files/Anglais_1.png?v=1744216696", "description_meta": "We create high-quality accessories in Montreal, made responsibly, to help everyone who wears them feel comfortable and confident every day. Our products include hair accessories, hand-knitted accessories made by retirees, and self-care accessories.", "site_name": "gibou.ca"}
\ No newline at end of file
added data/enrich_cache/giftideas.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "giftideas.ca", "logo_url": "https://giftideas.ca/apple-touch-icon.png", "cover_url": "https://giftideas.ca/wp-content/uploads/2022/03/gift-ideas-canada-gift-shop-local.jpg", "description_meta": "Discover the best unique gift ideas for 2026 in Canada. Curated, local presents for birthdays, anniversaries, and special occasions.", "site_name": "Giftideas.ca"}
\ No newline at end of file
added data/enrich_cache/gijamika.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gijamika.com", "logo_url": "https://gijamika.com/cdn/shop/files/Gijamika_Favicon_180x.png?v=1625583123", "cover_url": "https://cdn.shopify.com/s/files/1/0578/5396/8592/files/Gijamika_Logo_menu_Noir_c8bd4896-fa83-43d4-8020-d67da9adce81.png?height=628&pad_color=fff&v=1625583383&width=1200", "description_meta": "La Ferme Gijamika", "site_name": "La Ferme Gijamika"}
\ No newline at end of file
added data/enrich_cache/ginius.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ginius.ca", "logo_url": "https://ginius.ca/cdn/shop/files/GIN-Logo_Stamp-Noir_sur_fond_orange_favicon.svg?v=1756149278&width=180", "cover_url": "http://ginius.ca/cdn/shop/files/AMS03838_1.jpg?v=1752154738&width=2048", "description_meta": "Create your own homemade gins the traditional way. Become a chemistry genius with this complete home gin kit.", "site_name": "Ginius"}
\ No newline at end of file
added data/enrich_cache/giteaufildutemps.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "giteaufildutemps.ca", "logo_url": "https://giteaufildutemps.ca/images/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/giteauperchoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "giteauperchoir.com", "logo_url": "https://giteauperchoir.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/giteauxbonsjardins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "giteauxbonsjardins.com", "logo_url": "https://giteauxbonsjardins.com/wp-content/uploads/2025/10/cropped-ChatGPT-Image-Oct-6-2025-08_48_01-PM-1-180x180.png", "cover_url": null, "description_meta": "G\u00eete aux Bons Jardins, nich\u00e9 \u00e0 Saint-Fulgence, Qu\u00e9bec. Accueil chaleureux dans un cadre paisible et naturel. Voyagez au Quebec !", "site_name": "giteauxbonsjardins.com"}
\ No newline at end of file
added data/enrich_cache/glass-shield.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "glass-shield.com", "logo_url": "https://glass-shield.com/favicon/android-icon-192x192.png", "cover_url": null, "description_meta": "For high performance paints offering impact resistance, corrosion, abrasion, chemical attack or ultraviolet light, trust in Glass Shield.", "site_name": "Glass Shield High Performance Coatings"}
\ No newline at end of file
added data/enrich_cache/gmleblanc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gmleblanc.ca", "logo_url": "https://gmleblanc.ca/favicon.ico", "cover_url": null, "description_meta": "La Cabane \u00e0 sucre GM Leblanc vous invite \u00e0 venir vivre le temps des sucres \u00e0 son \u00e9rabli\u00e8re. Menu du temps des sucres situ\u00e9 \u00e0 St-Prosper, Qu\u00e9bec, Canada", "site_name": null}
\ No newline at end of file
added data/enrich_cache/gncfarms.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gncfarms.com", "logo_url": "https://gncfarms.com/favicon.ico", "cover_url": "https://gncfarms.com/wp-content/uploads/2019/02/Logo_HenriCie-300x51.png", "description_meta": "Depuis 1986, notre cultivons, emballons et distribuons avec passion nos l\u00e9gumes de champs.", "site_name": "Les fermes GNC"}
\ No newline at end of file
added data/enrich_cache/gococonut.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gococonut.ca", "logo_url": "https://gococonut.ca/cdn/shop/files/faviconcoconut_32x32.png?v=1614309173", "cover_url": null, "description_meta": "Ready-to-play kids&#39; furniture and Canadian play couches. Modular and durable foam sofas to lounge, jump and have fun. Perfect for any bedroom, living room, playroom or family room!", "site_name": "Go Coconut Canadian Play Couches, Furniture and Toys"}
\ No newline at end of file
added data/enrich_cache/godinguitars.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "godinguitars.com", "logo_url": "https://godinguitars.com/wp-content/uploads/2025/12/site-icon-300x300.png", "cover_url": "https://godinguitars.com/wp-content/uploads/2025/12/053360-GODIN-Connaisseur-MJ-Satina-RW_01.jpg", "description_meta": "Discover Godin Guitars, handcrafted in Canada. Electric, acoustic &amp; bass guitars made with sustainable tonewoods and exceptional craftsmanship.", "site_name": "Godin Guitars Family"}
\ No newline at end of file
added data/enrich_cache/godistribution.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "godistribution.co", "logo_url": "https://godistribution.co/wp-content/uploads/godistribution_logo-8-1-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/gogoquinoa.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gogoquinoa.com", "logo_url": "https://gogoquinoa.com/cdn/shop/files/flavicon_32x32_f8ab1eb4-6f6a-4be4-949b-f8322670d6e7_32x32.png?v=1614361788", "cover_url": "https://cdn.shopify.com/s/files/1/0284/4403/3121/files/logo-200px.png?height=628&pad_color=ffffff&v=1614358013&width=1200", "description_meta": "Treat yourself to healthy, delicious foods that are good for you and the planet, every day. GoGo Quinoa: gluten-free, mostly organic and plant-based products.", "site_name": "GoGo Quinoa"}
\ No newline at end of file
added data/enrich_cache/goldentrianglecoffee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "goldentrianglecoffee.ca", "logo_url": "https://goldentrianglecoffee.ca/cdn/shop/files/Livraison99D_CafeTriangleDor_logo_DoreUni_CMJN_f1b026e0-5787-4a70-b332-730268b9c6fa_48x48.jpg?v=1744389342", "cover_url": "http://goldentrianglecoffee.ca/cdn/shop/files/Livraison99D_GoldenTriangleCoffee_logo_DegradeGold_CMJN-01.jpg?v=1594946161", "description_meta": "Savor the world with Golden Triangle Coffee&#39;s exotic blends. Elevate your coffee experience today with rich, aromatic flavors from iconic regions!", "site_name": "Golden Triangle Coffee"}
\ No newline at end of file
added data/enrich_cache/golfbsp.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "golfbsp.com", "logo_url": "https://www.golfbsp.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/golfmurraybay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "golfmurraybay.com", "logo_url": "https://golfmurraybay.com/wp-content/uploads/2019/03/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/goodbignice.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "goodbignice.com", "logo_url": "https://static.wixstatic.com/media/9fd220_41d561a6e56e45de9caec0bd9b8dc7e6%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/9fd220_41d561a6e56e45de9caec0bd9b8dc7e6%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/9da458_dd639ea56f3a4441abc0920f867501ef~mv2.png/v1/fill/w_750,h_728,al_c/9da458_dd639ea56f3a4441abc0920f867501ef~mv2.png", "description_meta": "Good Big Nice - Aliments ferment\u00e9s sp\u00e9cialis\u00e9e dans le kimchi, la choucroute et les sauces piquantes upcycl\u00e9es", "site_name": "Good Big Nice"}
\ No newline at end of file
added data/enrich_cache/goodleaffarms.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "goodleaffarms.com", "logo_url": "https://cdn.prod.website-files.com/6887db00e220232c75f0aa54/691df62160dcfc6a7615452f_goodleaf%20favicon%20256x256.jpg", "cover_url": "https://cdn.prod.website-files.com/6887db00e220232c75f0aa54/688ac526dd3a8e17576f0f26_og_img.svg", "description_meta": "GoodLeaf grows ultra-fresh, pesticide-free greens using indoor vertical farming in Canada. Try our sustainable produce delivered year-round, farm to table.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/goudrelle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "goudrelle.com", "logo_url": "https://goudrelle.com/favicon.ico", "cover_url": null, "description_meta": "D\u00e9couvrez le meilleur de l&#039;\u00e9rable avec notre sirop pur et nos d\u00e9lices artisanaux. Une exp\u00e9rience sucr\u00e9e inoubliable vous attend!", "site_name": "\u00c9rabli\u00e8re La Goudrelle"}
\ No newline at end of file
added data/enrich_cache/gourma.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gourma.com", "logo_url": "https://gourma.com/favicons/apple-touch-icon.png", "cover_url": "http://gourma.com/img/asset/c29jaWFsX2ltYWdlcy9vZy1pbWFnZS5qcGc=?w=1200&h=630&fit=crop&s=8714229f0442f3a7d8075c12ff7369fb", "description_meta": "Herbes gourmandes est maintenant Gourma! Procurez-vous des herbes fra\u00eeches produites localement par des artisans passionn\u00e9s", "site_name": "Gourma"}
\ No newline at end of file
added data/enrich_cache/gourmandeboutique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gourmandeboutique.com", "logo_url": "https://gourmandeboutique.com/cdn/shop/files/Logo_GB_2020-2-15_250px_555ee41f-26a7-4517-a433-3be2cb5f8438.png?crop=center&height=32&v=1630517768&width=32", "cover_url": "http://gourmandeboutique.com/cdn/shop/files/Exterieur_-_boutique_-_1200x900_f680b7b3-0bfb-4ded-9124-73ae61d6b6e8.jpg?v=1706456865", "description_meta": "Gourmet gift baskets and local fine foods. Specializing in Quebec and Eastern Townships regional products. Gourmet gifts for businesses and individuals.", "site_name": "Gourmande boutique"}
\ No newline at end of file
added data/enrich_cache/gourmetsauvage.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gourmetsauvage.ca", "logo_url": "https://gourmetsauvage.ca/img/favicon/gs-apple-icon-152x152.png", "cover_url": null, "description_meta": "Depuis 30 ans, Gourmet Sauvage fait d\u00e9couvrir la gastronomie bor\u00e9ale \u00e0 travers la r\u00e9colte et la cuisine des plantes sauvages et offre des ateliers ainsi que des conf\u00e9rences et des livres sur le monde fascinant de la cueillette en for\u00eat.", "site_name": "Gourmet Sauvage"}
\ No newline at end of file
added data/enrich_cache/goutetsaveurs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "goutetsaveurs.ca", "logo_url": "https://www.goutetsaveurs.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/636aebcfa0ce925838051c7a/t/64b6a7e3a0dd88764aef98ba/1689692131374/Logos+Gout_Saveurs.png?format=1500w", "description_meta": null, "site_name": "Go\u00fbt et saveurs"}
\ No newline at end of file
added data/enrich_cache/goutezat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "goutezat.com", "logo_url": "https://goutezat.com/wp-content/themes/wpbase/favicons/apple-touch-icon.png", "cover_url": "https://goutezat.com/wp-content/uploads/2021/12/Goutez-AT_produits-regionaux.png", "description_meta": "La destination agro-gourmande de l\u2019Abitibi-T\u00e9miscamingue", "site_name": "Go\u00fbtez AT"}
\ No newline at end of file
added data/enrich_cache/gowood.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gowood.ca", "logo_url": "https://www.gowood.ca/wp-content/uploads/2016/06/cropped-favicon-512px.png", "cover_url": "https://www.gowood.ca/wp-content/uploads/2014/12/gowood.png", "description_meta": "Trusted by customers worldwide, GOWOOD is synonym for quality wood sunglasses, phone cases, watches and chargers with top quality service.", "site_name": "GOWOOD"}
\ No newline at end of file
added data/enrich_cache/grandderangement.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grandderangement.ca", "logo_url": "https://www.grandderangement.ca/app/themes/baserock/assets/ico/android-chrome-256x256.png", "cover_url": "https://www.grandderangement.ca/app/uploads/2021/10/og.jpg", "description_meta": "Premi\u00e8re distillerie certifi\u00e9e biologique au Qu\u00e9bec! D\u00e9couvrez des spiritueux d\u2019exception distill\u00e9s \u00e0 Saint-Jacques, dans Lanaudi\u00e8re", "site_name": "Distillerie Grand D\u00e9rangement"}
\ No newline at end of file
added data/enrich_cache/grandeallee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grandeallee.ca", "logo_url": "https://grandeallee.ca/cdn/shop/files/LOGO_GRANDE-ALLEE_final-monogramme_FAVICON-2_32x32.png?v=1642707267", "cover_url": "http://grandeallee.ca/cdn/shop/files/Image-partage-social_1200x1200.jpg?v=1638994966", "description_meta": "D\u00e9couvrez des bi\u00e8res avec ou sans alcool et des spiritueux de grande qualit\u00e9 \u00e9labor\u00e9s \u00e0 Boisbriand par des experts en sciences et technologies des aliments.", "site_name": "Microbrasserie Grande All\u00e9e"}
\ No newline at end of file
added data/enrich_cache/grandemaison.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grandemaison.com", "logo_url": "https://grandemaison.com/animated_favicon1.gif", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/grandfrene.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grandfrene.ca", "logo_url": "https://grandfrene.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/69f345ecc67d730f0941cdef/t/69f35eca2296f17eaaa1b353/1777557194615/Atelier+du+grand+frene+logo.png?format=1500w", "description_meta": null, "site_name": "Atelier du Grand Fr\u00eane"}
\ No newline at end of file
added data/enrich_cache/grandmaemily.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grandmaemily.com", "logo_url": "https://www.grandmaemily.com/cdn/shop/files/Favicon_16x.png?v=1614298763", "cover_url": "http://www.grandmaemily.com/cdn/shop/files/logo_small.png?v=1614293787", "description_meta": "Grandma Emily is Canadian made. Organic Whole Grain, Natural and Grain free Granola, granola bars and snacks. Buy our delicious selection in bulk or individually sized today!", "site_name": "Grandma Emily Inc."}
\ No newline at end of file
added data/enrich_cache/grangeboustifaille.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grangeboustifaille.com", "logo_url": "https://www.grangeboustifaille.com/favicon.ico", "cover_url": null, "description_meta": "une ferme diversifi\u00e9e qui produit des l\u00e9gumes, fines herbes et fleurs comestibles biologiques et qui \u00e9l\u00e8ve des viandes et volailles au p\u00e2turage", "site_name": "Grange &amp; Boustifaille"}
\ No newline at end of file
added data/enrich_cache/grangerfabco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grangerfabco.com", "logo_url": "https://static.wixstatic.com/media/468a79_cb07883e96be48df8967c3977743e4fd%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/468a79_cb07883e96be48df8967c3977743e4fd%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/grangesmaraicheres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grangesmaraicheres.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/60249b401a0aa1781dd8820b/1613016578507-5ZS1HQ046B1DOI4OADWU/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/60249b401a0aa1781dd8820b/t/60298515d78caf0cbc1b585a/1613333783052/logo-granges-maraicheres-200.png?format=1500w", "description_meta": null, "site_name": "Granges mara\u00eech\u00e8res St-Antoine"}
\ No newline at end of file
added data/enrich_cache/grantsbakery.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grantsbakery.ca", "logo_url": "https://grantsbakery.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/greenbeaver.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "greenbeaver.com", "logo_url": "https://greenbeaver.com/cdn/shop/files/favicon_86a0dae0-be9f-4a4a-a045-37c77925118d.png?crop=center&height=32&v=1783696569&width=32", "cover_url": "http://greenbeaver.com/cdn/shop/files/green-beaver-logo-social.jpg?v=1697465660", "description_meta": "Shop Green Beaver&#39;s all-natural, aluminum-free antiperspirant, toothpaste, sunscreen and more. Proudly Canadian!", "site_name": "Green Beaver"}
\ No newline at end of file
added data/enrich_cache/greenfarmnuts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "greenfarmnuts.com", "logo_url": "https://greenfarmnuts.com/wp-content/uploads/2022/06/cropped-greenfarm-logo-small-180x180.png", "cover_url": "https://greenfarmnuts.com/wp-content/uploads/2026/06/logo-greenfarm-.jpg", "description_meta": "Green Farm supplies wholesale nuts, dried fruits, snack mixes, chocolates, and private label products for businesses across Canada.", "site_name": "Green farm"}
\ No newline at end of file
added data/enrich_cache/grenadineatelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grenadineatelier.com", "logo_url": "https://grenadineatelier.com/favicon.ico", "cover_url": "http://grenadineatelier.com/cdn/shop/files/boutiqueGA.jpg?v=1714857968", "description_meta": "Boutique fleuriste. D\u00e9couvrez nos assortiments de fleurs, bouquets, plantes. Id\u00e9es cadeaux et cartes de souhaits pour toutes occasions.", "site_name": "Grenadine Atelier"}
\ No newline at end of file
added data/enrich_cache/grenierboreal.coop.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grenierboreal.coop", "logo_url": "https://grenierboreal.coop/wp-content/uploads/2017/06/favicon.png", "cover_url": null, "description_meta": "Grenier bor\u00e9al est une coop\u00e9rative qui prot\u00e8ge la production de fruits, de l\u00e9gumes et de produits non ligneux en Minganie\u2013Basse-C\u00f4te-Nord.", "site_name": "Le Grenier Bor\u00e9al"}
\ No newline at end of file
added data/enrich_cache/grenierboutique.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grenierboutique.ca", "logo_url": "https://grenierboutique.ca/wp-content/uploads/2020/10/cropped-fgr-boutique-favicon-1-180x180.png", "cover_url": null, "description_meta": "Grande s\u00e9lection de manteaux, chaussures et accessoires de marques r\u00e9put\u00e9es. Confort, qualit\u00e9 et style! V\u00eatements femmes, hommes et enfants.", "site_name": "Grenier boutique - Fourrure Grenier Boutique"}
\ No newline at end of file
added data/enrich_cache/greniergardangeois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "greniergardangeois.ca", "logo_url": "https://greniergardangeois.ca/wp-content/uploads/2024/05/Favicon-Grenier-Gardangeois.png", "cover_url": "https://greniergardangeois.ca/wp-content/uploads/2024/05/Grenier_Logo-Vertical-Couleur_FP_Large-1024x853.png", "description_meta": "Ferme Grenier Gardangeois situ\u00e9e \u00e0 l&#039;Ange-Gardien. Porc, poulet, grains, pommes. Ferme innovante tourn\u00e9e vers l&#039;avenir.", "site_name": "Grenier Gardangeois"}
\ No newline at end of file
added data/enrich_cache/griendel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "griendel.com", "logo_url": "https://griendel.com/favicon.ico", "cover_url": null, "description_meta": "N\u00e9 dans le quartier St Sauveur, le restaurant est d\u00e9sormais sur Montcalm et les bi\u00e8res sont brass\u00e9es \u00e0 St Jacques de Leeds. Alliance de beaux produits et d\u2019une chaleureuse ambiance, vous trouverez dans nos deux \u00e9tablissements les ingr\u00e9dients d&#039;une soir\u00e9e r\u00e9ussie.\u00a0\u00a0\r\nD\u00e9couvrez aussi notre gamme de", "site_name": "Griendel : Brasserie Artisanale"}
\ No newline at end of file
added data/enrich_cache/grillade.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grillade.ca", "logo_url": "https://grillade.ca/favicon.ico", "cover_url": null, "description_meta": "C\u2019est avec plaisir que nous vous souhaitons la bienvenue sur le site de l\u2019\u00c9rabli\u00e8re La Grillade, situ\u00e9e \u00e0 Saint-Alphonse-de-Granby en Estrie.", "site_name": "\u00c9rabli\u00e8re La Grillade inc."}
\ No newline at end of file
added data/enrich_cache/grilladelaboheme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grilladelaboheme.com", "logo_url": "https://www.grilladelaboheme.com/favicon.ico", "cover_url": "https://www.grilladelaboheme.com/2/wp-content/uploads/2024/08/logo1080.png", "description_meta": "Restaurant steakhouse \u00e0 La Malbaie dans Charlevoix. Grillade La Boh\u00e8me propose b\u0153uf Wagyu Qu\u00e9bec, smokehouse et souper-spectacles. R\u00e9servez votre table. D\u00e9couvrez Grillade La Boh\u00e8me \u00e0 La Malbaie : steakhouse Wagyu Qu\u00e9bec, smokehouse et souper-spectacles \u00e0 Charlevoix. Le meilleur restaurant pour une soir\u00e9e parfaite.", "site_name": "Grillade La Boh\u00e8me"}
\ No newline at end of file
added data/enrich_cache/griseloungewear.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "griseloungewear.com", "logo_url": "https://griseloungewear.com/cdn/shop/files/Favicon-Grise_32x32.png?v=1620440512", "cover_url": "http://griseloungewear.com/cdn/shop/files/LogoGrise-SocialSharing_25b782a0-2f76-4d56-871a-39ca964b7b2a.png?v=1622602373", "description_meta": "We believe comfort should be delicate and pretty. Our loungewear is practical, aesthetic and comfortable. We create pieces that are ethically designed and handmade in Canada, made to be worn day in, day out.", "site_name": "Grise Loungewear"}
\ No newline at end of file
added data/enrich_cache/grisspasta.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grisspasta.com", "logo_url": "https://www.grisspasta.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/grizzly.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grizzly.qc.ca", "logo_url": "https://grizzly.qc.ca/wp-content/uploads/2023/07/cropped-fumoir-grizzly-favicon-180x180.png", "cover_url": "https://grizzly.qc.ca/wp-content/uploads/2023/09/avantages.jpg", "description_meta": "Fumoir Grizzly est la r\u00e9f\u00e9rence pour le meilleur poisson fum\u00e9, un d\u00e9licieux tartare ou de savoureux burgers de poisson. Mettez la patte sur nos produits!", "site_name": "Fumoir Grizzly"}
\ No newline at end of file
added data/enrich_cache/grospierre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grospierre.com", "logo_url": "https://www.grospierre.com/favicon.png", "cover_url": null, "description_meta": "\ud83c\udf4e Une exp\u00e9rience UNIQUE \u00e0 Compton (Cantons-de-l\u2019Est). Auto-cueillette, nouvelles vari\u00e9t\u00e9s de pommes, balades en voiture tir\u00e9e par le tracteur Rigolo, aire de jeux s\u00e9curitaire, pique-nique, etc.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/grounded.food.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grounded.food", "logo_url": "https://grounded.food/cdn/shop/files/Favicon1.3_2.png?v=1762284311&width=32", "cover_url": "http://grounded.food/cdn/shop/files/Instagram_profile_pic_2_0daa9728-e25e-480d-af4b-c3ffd268385a.png?v=1737133060", "description_meta": "Simplifiez vos repas avec GROUNDED! Prot\u00e9ines v\u00e9g\u00e9tales textur\u00e9es (PVT) \u00e0 base de pois. Parfaites pour des recettes rapides, savoureuses et riches en prot\u00e9ines. Un repas v\u00e9g\u00e9 prot\u00e9in\u00e9, vite pr\u00e9par\u00e9.", "site_name": "GROUNDED"}
\ No newline at end of file
added data/enrich_cache/groupeadel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "groupeadel.com", "logo_url": "https://groupeadel.com/wp-content/uploads/2024/03/cropped-Logo-Abatoir-de-Luceville-10-180x180.png", "cover_url": "https://groupeadel.com/wp-content/uploads/2021/05/cropped-Logo-Abatoir-de-Luceville_Artboard-3-1.png", "description_meta": "Au Groupe ADEL, nous avons \u00e0 c\u0153ur d\u2019offrir des services d\u2019abattage et de transformation de qualit\u00e9 sup\u00e9rieure pour un ensemble d\u2019\u00e9leveurs du Bas-Saint-Laurent et de la Gasp\u00e9sie.", "site_name": "Groupe ADEL"}
\ No newline at end of file
added data/enrich_cache/groupecousineau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "groupecousineau.com", "logo_url": "https://groupecousineau.com/img/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/groupekyrielle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "groupekyrielle.com", "logo_url": "https://img1.wsimg.com/isteam/ip/3bb49e1a-ab5d-49d8-a035-f535d824cba0/blob-00d9d6a.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/3bb49e1a-ab5d-49d8-a035-f535d824cba0/blob-00d9d6a.png", "description_meta": "KATHYA C\u00d4T\u00c9\nPropri\u00e9taire\nPr\u00e9sidente directrice g\u00e9n\u00e9rale", "site_name": "Groupe Kyrielle"}
\ No newline at end of file
added data/enrich_cache/groupemarcelle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "groupemarcelle.com", "logo_url": "https://groupemarcelle.com/cdn/shop/files/GM_favicon_option_2.png?crop=center&height=32&v=1737989574&width=32", "cover_url": "http://groupemarcelle.com/cdn/shop/files/groupemarcelle-mobile.jpg?v=1738086307&width=500", "description_meta": "Groupe Marcelle est le plus grand fabricant de cosm\u00e9tiques au Canada. Nous fabriquons des cosm\u00e9tiques sous nos marques: Marcelle, Watier, Annabelle et CW Beggs and Sons.", "site_name": "Groupe Marcelle Inc."}
\ No newline at end of file
added data/enrich_cache/groupemorneau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "groupemorneau.com", "logo_url": "https://www.groupemorneau.com/img/favicon/apple-touch-icon.png?20", "cover_url": "https://www.groupemorneau.com/media/dovpsmpg/header-geo.jpeg", "description_meta": "D&#xE9;couvrez Morneau, un des plus grands r&#xE9;seaux LTL au Canada, avec du transport r&#xE9;frig&#xE9;r&#xE9; et une grande expertise en logistique. On en couvre du terrain !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/groupenovatech.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "groupenovatech.com", "logo_url": "https://www.groupenovatech.com/favicon.ico", "cover_url": null, "description_meta": "", "site_name": null}
\ No newline at end of file
added data/enrich_cache/groupevegco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "groupevegco.com", "logo_url": "https://groupevegco.com/wp-content/themes/default/img/metas/icon_144px.png", "cover_url": "https://groupevegco.com/wp-content/themes/default/img/template/share.jpg", "description_meta": "Groupe Vegco est un leader dans l\u2019industrie des fruits et l\u00e9gumes frais au Qu\u00e9bec.", "site_name": "Groupe Vegco"}
\ No newline at end of file
added data/enrich_cache/grpmegarbane.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "grpmegarbane.com", "logo_url": "https://grpmegarbane.com/wp-content/uploads/2022/09/fav192-GroupeMegarbane.png", "cover_url": "https://grpmegarbane.com/wp-content/uploads/2023/01/fbk-GroupeMegarbane.png", "description_meta": null, "site_name": "Mr Lyster"}
\ No newline at end of file
added data/enrich_cache/gruo.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gruo.ca", "logo_url": "https://sp-ao.shortpixel.ai/client/to_auto,q_glossy,ret_img,w_180,h_180/https://www.gruo.ca/wp-content/uploads/2020/05/cropped-gruo_favicon-180x180.png", "cover_url": "https://www.gruo.ca/wp-content/uploads/2023/06/NIC_2917-scaled.jpg", "description_meta": "Des ingr\u00e9dients 100% naturels, de l&#039;avoine bio du Qu\u00e9bec, plein de fruits et toute la passion d&#039;une accro de gruau.", "site_name": "Gruo"}
\ No newline at end of file
added data/enrich_cache/guepe.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "guepe.qc.ca", "logo_url": "https://cdn.prod.website-files.com/618ad889d42e4eb922f40960/65f05e1e637d7f46295573b3_AileGUEPE-256x256.png", "cover_url": "https://cdn.prod.website-files.com/618ad889d42e4eb922f40960/622a26968ab3f30d5c465866_Capture%20d%E2%80%99e%CC%81cran%202022-03-10%20a%CC%80%2011.25.42.png", "description_meta": "Le Groupe uni des \u00e9ducateurs-naturalistes et professionnels en environnement (GUEPE),organisme \u00e0 but non-lucratif, offre aux jeunes et \u00e0 la population des services \u00e9ducatifs et professionnels en sciences dela nature et de l&#x27;environnement ainsi qu&#x27;en plein air.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/guidesulysse.com:443.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "guidesulysse.com:443", "logo_url": "https://www.guidesulysse.com/images/iconbateau.ico", "cover_url": "https://www.guidesulysse.com/images/logo/logo-bleu-librairie-1200-630.jpg", "description_meta": "Les Guides de voyage Ulysse, r\u00e9f\u00e9rence en documentation de voyage et plein air. Guides, cartes et beaux livres disponibles en ligne.Contenu gratuit pour vos voyages.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/gutsykombucha.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gutsykombucha.com", "logo_url": "https://gutsydrinks.com/cdn/shop/files/Favicon_3_228x228.png?v=1717535572", "cover_url": "https://gutsydrinks.com/cdn/shop/files/Untitled_design_1_1200x.png?v=1717535409", "description_meta": "The healthiest and tastiest fermented drinks on the market. Discover Gutsy&#39;s 8 kombucha flavours &amp; 3 Ginger Beers flavours! Natural energy, 100% organic, no preservatives, low in sugar, fresh and whole ingredient. FREE shipping on orders of 3 cases or more.", "site_name": "Gutsy Drinks"}
\ No newline at end of file
added data/enrich_cache/gvsnowshoes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gvsnowshoes.com", "logo_url": "https://www.gvsnowshoes.com/favicon.ico", "cover_url": "http://www.gvsnowshoes.com/imports/images/logo-gv.png", "description_meta": "Raquettes GV est votre fabricant de raquettes \u00e0 neige en Am\u00e9rique du Nord. Trouvez votre paire aujourd", "site_name": "Raquettes GV"}
\ No newline at end of file
added data/enrich_cache/gwenwyvaarartisane.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "gwenwyvaarartisane.com", "logo_url": "https://gwenwyvaarartisane.com/wp-content/uploads/2019/11/cropped-a38327d1-865c-4e9a-be89-8272ae57fa46.jpeg?w=180", "cover_url": "https://gwenwyvaarartisane.com/wp-content/uploads/2019/11/a839fcfb-af68-4cdb-a2b4-1ab0ff49c9c9.jpeg", "description_meta": "Arts textiles, Histoire et Traditions", "site_name": "Gwenwyvaar Artisane Textile"}
\ No newline at end of file
added data/enrich_cache/habitudedesign.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "habitudedesign.ca", "logo_url": "https://dhgf5mcbrms62.cloudfront.net/106762535/global/7S742VS-180x180.png", "cover_url": null, "description_meta": "Friperie de consignation et boutique cadeau en Outaouais. Un incontournable pour la mode seconde main et une vaste s&eacute;lection de produits fait au Qu&eacute;bec et au Canada.", "site_name": "Habitude - Fi\u00e8rement fait ici"}
\ No newline at end of file
added data/enrich_cache/hagen.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hagen.com", "logo_url": "https://www.hagen.com/wp-content/uploads/2025/05/Hagen-Group_EN-1-Edited.png", "cover_url": "https://hagen.com/wp-content/uploads/2025/06/70years-2407.webp", "description_meta": "With over 70 years of excellence in the pet products industry, the Hagen Group is the world&#039;s leading pet product supplier. Find out more about our products.", "site_name": "Hagen Group"}
\ No newline at end of file
added data/enrich_cache/haltedespelerins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "haltedespelerins.com", "logo_url": "https://haltedespelerins.com/wp-content/uploads/favicon.png", "cover_url": null, "description_meta": "La Halte des P\u00e8lerins \u00ab Avec le Certificat d\u2019Excellence, TripAdvisorMD met \u00e0 l\u2019honneur les \u00e9tablissements touristiques qui ont re\u00e7u toute l\u2019ann\u00e9e d\u2019excellentes notes et les compliments des voyageurs sur notre site \u00bb Heather Leisman Vice-pr\u00e9sidente du marketing aupr\u00e8s des professionnels pour TripAdvisorMD. En savoir plusbienvenueLa Halte des P\u00e8lerins La Halte des P\u00e8lerins, est un vignoble", "site_name": null}
\ No newline at end of file
added data/enrich_cache/haribec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "haribec.com", "logo_url": "http://www.haribec.com/favicon.ico", "cover_url": "http://www.haribec.com/uploads/3/0/5/4/30545226/cereales-bellevue_1.jpg", "description_meta": "Haribec inc est une entreprise produisant des haricots secs de plusieurs vari\u00e9t\u00e9s en partenariat avec des producteurs du Qu\u00e9bec. Environ 90% des productions sont export\u00e9s \u00e0 travers le monde et l&#039;entreprise est reconnu pour la qualit\u00e9 de ses produits.", "site_name": "HARIBEC INC."}
\ No newline at end of file
added data/enrich_cache/haskapproducers.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "haskapproducers.com", "logo_url": "https://i0.wp.com/haskapproducers.com/wp-content/uploads/2020/02/favicon.png?fit=75%2C75&#038;ssl=1", "cover_url": "https://haskapproducers.com/wp-content/uploads/2020/02/Camerise_Description-1-854x1024.png", "description_meta": "La camerise, haskap en anglais, est une petite baie bleue aux propri\u00e9t\u00e9s incroyables. D\u00e9couvrez ce fruit propos\u00e9 par les Producteurs de Camerises.", "site_name": "Haskap Producers"}
\ No newline at end of file
added data/enrich_cache/haute-yamaska.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "haute-yamaska.ca", "logo_url": "https://haute-yamaska.ca/wp-content/uploads/2025/12/cropped-MRC_Haute-Yamaska_logo-couleur_horizontal_RGB1-e1766083201763-1-180x180.png", "cover_url": "https://haute-yamaska.ca/wp-content/uploads/2024/10/centre-ville_canot.png", "description_meta": "La Haute-Yamaska vous invite \u00e0 explorer un territoire prosp\u00e8re, situ\u00e9 entre ville et nature. Une destination de choix pour une qualit\u00e9 de vie in\u00e9gal\u00e9e!", "site_name": "MRC Haute-Yamaska"}
\ No newline at end of file
added data/enrich_cache/hautsrefuges.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hautsrefuges.com", "logo_url": "https://www.hautsrefuges.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/633d8932b48e6771549bf111/t/64b937a699d9bc43e74671fe/1689860015144/Hauts+refuges+Facebook.jpg?format=1500w", "description_meta": "Hauts Refuges est un domaine \u00e9cotouristique 4 saisons situ\u00e9 dans Charlevoix. Nos micro chalets peuvent accueillir couples, familles et amis pour une escapade en pleine nature sur un site enti\u00e8rement pi\u00e9tonnier. Sentiers de raquettes et pistes de ski de fond sont accessibles \u00e0 partir des habitation", "site_name": "Hauts Refuges/Micro chalets Charlevoix"}
\ No newline at end of file
added data/enrich_cache/hazakiknives.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hazakiknives.com", "logo_url": "https://hazakiknives.com/cdn/shop/files/newlogo_1_059009b2-d9e7-4f4f-86cd-237feb91eee9_32x32.png?v=1674837345", "cover_url": "http://hazakiknives.com/cdn/shop/files/hazaki-ecom-97_56692bc8-e5b1-4e03-a1ca-85a042af1a33.jpg?v=1733496351", "description_meta": "Hazaki Knives is a Canadian based company of premium quality chef tools. Based in Montreal, they offer top quality Japanese knives with handles that are handcrafted in Canada, handmade cutting boards, handmade knife storage and many more knife sharpening accessories. Step up your cooking skills today!", "site_name": "Hazaki Knives"}
\ No newline at end of file
added data/enrich_cache/hcq-chq.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hcq-chq.org", "logo_url": "https://hcq-chq.org/wp-content/uploads/2019/08/CHQ-HCQ.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/healingalasource.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "healingalasource.com", "logo_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQU1x_FzCSeLe11xtrcha68KO_-qOoPyGXv7-KmNBeHx0E_ddsp_A5sOaR2SvTw5IyLYEB-Rw-G_Ecmc9NpygNLNZ3ZK1n2hPjzpMxnnNFuEypaz1DTbQzrjXe4X9LE6OS5YI58YpeW3MNKbW2eVXn_-gvBcxulx0fQHXr7ExYCp86I0tG7SPCgRA0tO9Nsidl-OrBtRd6iNMMi_q0CQagO08Q", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQXvNuUkAB9wkqH5IrEnfy3vesLQSP3p6p_siDWIVvrugp5GuvOBgR5TRCHdB1bop2gqSamZPXiea_E2D5Mx7NJcqtAy0ijH_ZkoHgIaPdGbjY3YRGMmsGJ8M4NprXNmemCJ4vx5fQ3d6ixM-pgoQUUyYRaJqyJ6qGoxdyJyLnEVj2KSeLHce2MDT36pmeU=w16383", "description_meta": "Based in Lac La Biche, Alberta, Canada", "site_name": null}
\ No newline at end of file
added data/enrich_cache/heartofstainedglass.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "heartofstainedglass.com", "logo_url": "https://www.heartofstainedglass.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/62083e1c39124e56a201a37c/t/62a80fe6d65535714284374a/1741924236752/E75D2A09-8372-4AD1-A2AE-B7DDEA87A14D.JPG?format=1500w", "description_meta": "Modern stained glass with a story to tell. Montreal based since 2020.", "site_name": "Heart of (stained) glass"}
\ No newline at end of file
added data/enrich_cache/hebergementsdugrenier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hebergementsdugrenier.ca", "logo_url": "https://hebergementsdugrenier.ca/wp-content/uploads/2023/12/logo-clasic-le-grenier-2.0.svg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/hebergementsflorence.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hebergementsflorence.com", "logo_url": "https://hebergementsflorence.com/wp-content/uploads/2017/09/Favicon.png", "cover_url": "https://hebergementsflorence.com/wp-content/uploads/chanterelle-cuisine3.jpg", "description_meta": "Situ\u00e9 \u00e0 l&#039;Isle-aux-Coudres, H\u00e9bergements Florence offre trois choix d&#039;unit\u00e9 avec chambres confortables &amp; cuisine toute \u00e9quip\u00e9e. \u00c0 partir de 90$ par nuit!", "site_name": "H\u00e9bergements Florence"}
\ No newline at end of file
added data/enrich_cache/helenefleury.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "helenefleury.com", "logo_url": "https://static.wixstatic.com/media/c7842a_84ae7e5786e64309a047c6edbe95b4ab%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/c7842a_84ae7e5786e64309a047c6edbe95b4ab%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/hellobelov.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hellobelov.com", "logo_url": "https://hellobelov.com/cdn/shop/files/logo-belov-positif-rgb_ccb2a6c3-31cc-418f-8a12-7d6e08e608c7.png?crop=center&height=48&v=1631636660&width=48", "cover_url": "http://hellobelov.com/cdn/shop/files/WhatsApp_Image_2022-09-14_at_5.20.57_PM_1200x1200.jpg?v=1663191141", "description_meta": "Des aliments sains, nutritifs et gourmands, comme \u00e0 la maison, qui sauront plaire \u00e0 vos tout-petits. Belov, simplifiez l&#39;heure des repas!", "site_name": "Belov - Aliments sains et gourmands pour enfants"}
\ No newline at end of file
added data/enrich_cache/helmmicrobrasserie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "helmmicrobrasserie.ca", "logo_url": "https://www.helmmicrobrasserie.ca/favicon.ico?v=7kop60MBNt", "cover_url": "https://portal.restodata.ca/helm/gallery/images/01_helm-microbra_646-2023-09-12.jpg", "description_meta": "HELM microbrasserie est un restaurant Bistro situ\u00e9 au 273 Avenue Bernard O \u00e0 Mile-End, Montr\u00e9al. Voir le menu, \u00e9valuations et r\u00e9servez. Micro-brasserie chic et simple servant des...", "site_name": "HELM microbrasserie"}
\ No newline at end of file
added data/enrich_cache/helsytraiteur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "helsytraiteur.com", "logo_url": "https://cdn.prod.website-files.com/64f8d830d5e21d3daa13532b/65012f756e9c7bac73038424_Design%20sans%20titre%20(4).png", "cover_url": null, "description_meta": "Qu\u00e9bec, L\u00e9vis et les environs. Notre priorit\u00e9 est de vous offrir une cuisine d\u00e9licieuse et authentique, tout en vous offrant un service \u00e0 la client\u00e8le qui saura d\u00e9passer vos attentes!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/henrietvictoria.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "henrietvictoria.com", "logo_url": "https://henrietvictoria.com/cdn/shop/files/logo_petit.png?v=1701100072&width=96", "cover_url": "http://henrietvictoria.com/cdn/shop/files/Henri-et-Victoria-Logo-Black-on-Transparent_5dc0d50c-aeed-4ee6-9e57-5366195b3b20.png?v=1737983971&width=1024", "description_meta": "Come try our high-end beard products and smell the difference! Aftershave, perfume, beard oil, safety razors, and more are available in our online shop. Shop now! Quebec-based Henri et Victoria officially joined the wet shaving world in 2015, crafting handmade shaving and grooming products\u2014from soaps to balms to brush", "site_name": "Henri et Victoria"}
\ No newline at end of file
added data/enrich_cache/henrihenri.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "henrihenri.ca", "logo_url": "https://cdn.shoplightspeed.com/shops/632556/themes/17653/v/80141/assets/favicon.ico?20230203152522", "cover_url": "https://cdn.shoplightspeed.com/shops/632556/themes/17653/v/64405/assets/social-media-image.jpg?20230203152521", "description_meta": "Bienvenue chez Henri Henri, chapelier depuis 1932. Parcourez la plus grande collection de chapeaux et casquettes pour hommes et femmes au Canada !", "site_name": "Henri Henri"}
\ No newline at end of file
added data/enrich_cache/henrinutrition.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "henrinutrition.com", "logo_url": "https://henrinutrition.com/cdn/shop/files/image-removebg-preview_10.png?v=1750231740&width=32", "cover_url": "http://henrinutrition.com/cdn/shop/files/Image_couverture_video_produit_2.jpg?v=1748291375", "description_meta": "Collations de 5 \u00e0 7 ingr\u00e9dients, naturellement prot\u00e9ine, sans sucre ajout\u00e9 et libre des allerg\u00e8nes prioritaires.", "site_name": "Henri"}
\ No newline at end of file
added data/enrich_cache/herbachat.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herbachat.ca", "logo_url": "https://herbachat.ca/cdn/shop/files/HORAIRE_DE_LIVRAISON_MODIFIE_32x32.png?v=1678902989", "cover_url": "http://herbachat.ca/cdn/shop/files/HerbeAChat.jpg?v=1645816100", "description_meta": "Nous sommes producteurs et distributeurs d&#39;herbe \u00e0 chat et d&#39;accessoires pour le march\u00e9 des animaux domestique. \u00c9tablie \u00e0 Qu\u00e9bec depuis 2018.", "site_name": "Herbachat"}
\ No newline at end of file
added data/enrich_cache/herbamiel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herbamiel.ca", "logo_url": "https://herbamiel.ca/images/herbabeille.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/herbedeble.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herbedeble.ca", "logo_url": "https://www.herbedeble.ca/favicon.ico", "cover_url": "https://i2.wp.com/www.herbedeble.ca/wp-content/uploads/2018/03/Fotolia_42568362_Subscription_Monthly_M-1.jpg?fit=1690%2C1124&ssl=1", "description_meta": "Bienvenue aux Jardins de Marie-Claire &amp; Jacynthe Depuis 30 ans au service de la sant\u00e9 de ses clients, les Jardins de Marie-Claire &amp; Jacynthe se sp\u00e9cialise dans la production de jus d\u2019herbe de bl\u00e9! St-Eustache, Qu\u00e9bec Notre produit rencontre les plus hauts standards \u00c9cocert et Aliments-bios du Qu\u00e9bec.", "site_name": "Herbe de Bl&eacute;"}
\ No newline at end of file
added data/enrich_cache/herbedebleunivert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herbedebleunivert.com", "logo_url": "https://herbedebleunivert.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/herbesorford.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herbesorford.com", "logo_url": "https://herbesorford.com/wp-content/uploads/2025/05/cropped-ho-square-180x180.png", "cover_url": null, "description_meta": null, "site_name": "Herbes Orford - La sant\u00e9, c&#039;est pas sorcier"}
\ No newline at end of file
added data/enrich_cache/herbessalees.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herbessalees.com", "logo_url": "https://www.herbessalees.com/favicon.ico", "cover_url": null, "description_meta": "D\u00e9couvrez les herbes sal\u00e9es du Bas-du-Fleuve, une sp\u00e9cialit\u00e9 du terroir qu\u00e9b\u00e9cois pour cuisiner avec plus de saveur, simplement.", "site_name": "Les herbes sal&eacute;es du Bas-du-Fleuve"}
\ No newline at end of file
added data/enrich_cache/herboreal.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herboreal.ca", "logo_url": "https://herboreal.ca/cdn/shop/files/favicon_32x32.png?v=1614316626", "cover_url": "https://herboreal.ca/cdn/shop/files/OG-image_5b92008c-3f46-4afa-84a6-9aa8496dd3a9_1204x630.jpg?v=1612899860", "description_meta": "Herbor\u00e9al est une boutique en ligne de produits locaux faits \u00e0 partir de plantes bor\u00e9ales. Vous y retrouverez des plantes m\u00e9dicinales, des tisanes, des \u00e9pices foresti\u00e8res, des produits corporels naturels, encens, des produits pour le bain et plus encore!", "site_name": "Boutique Herbor\u00e9al"}
\ No newline at end of file
added data/enrich_cache/herboristerielafeedesbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herboristerielafeedesbois.com", "logo_url": "https://static.wixstatic.com/media/a3b24b_1b46d9d78e534aff8d1e5738b4a388ec%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a3b24b_1b46d9d78e534aff8d1e5738b4a388ec%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/herboristerielamaria.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "herboristerielamaria.com", "logo_url": "https://static.wixstatic.com/media/917d71_41936afcddaf47f1968cf53b11b025a4%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/917d71_41936afcddaf47f1968cf53b11b025a4%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/heritage77.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "heritage77.com", "logo_url": "https://heritage77.com/dist/img/favicons/apple-touch-icon-1024x1024.png", "cover_url": "https://heritage77.com/assets/common/_1200x630_crop_center-center_82_none/og-img.jpg?mtime=1592255135", "description_meta": "Du verger de Frelighsburg \u00e0 aujourd\u2019hui, l\u2019objectif n\u2019a pas chang\u00e9 : alimenter votre famille, comme la n\u00f4tre, avec des produits frais du verger.", "site_name": "Heritage77"}
\ No newline at end of file
added data/enrich_cache/heritageta.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "heritageta.com", "logo_url": "https://heritageta.com/images/apple-touch-icon.png", "cover_url": "https://heritageta.com/images/facebook_share.png", "description_meta": "L\u00e2\u0080\u0099\u00c3\u00a9quipe de notre cuisine centrale vous lib\u00c3\u00a8re en cuisinant vos propres recettes dans un environnement o\u00c3\u00b9 l\u00e2\u0080\u0099hygi\u00c3\u00a8ne et la salubrit\u00c3\u00a9 sont une priorit\u00c3\u00a9", "site_name": null}
\ No newline at end of file
added data/enrich_cache/hermine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hermine.ca", "logo_url": "https://hermine.ca/wp-content/uploads/2021/02/cropped-dessert-180x180.jpg", "cover_url": "https://hermine.ca/wp-content/uploads/2020/09/LOGOS-ICONOS-03.png", "description_meta": "Chaque famille a son histoire, d\u00e9couvrez la notre : l&#039;Hermine tradition familiale depuis 1963. Produits d&#039;\u00e9rable transform\u00e9s grande vari\u00e9t\u00e9. Pr\u00eat \u00e0 manger, desserts \u00e0 l&#039;\u00e9rable", "site_name": "Hermine"}
\ No newline at end of file
added data/enrich_cache/hersheyland.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hersheyland.ca", "logo_url": "https://www.hersheyland.ca/etc.clientlibs/hershey/clientlibs/clientlib-site-revised/resources/icon-192x192.png", "cover_url": "https://www.hersheyland.ca/content/dam/hersheyland_canada/en_ca/home/2025-everyday-homepage-hero.jpg", "description_meta": "Bake a chocolate dessert, made with and inspired by Hershey\u2019s Candy! Discover your favorite products like HERSHEY\u2019S CHIPITS and REESE\u2019S Peanut Butter Cups.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/hibisera.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hibisera.com", "logo_url": "https://static.wixstatic.com/media/7b902b_8fd1fddc7faf4136b3460492ae0c8c86%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7b902b_8fd1fddc7faf4136b3460492ae0c8c86%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/highcaremtl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "highcaremtl.com", "logo_url": "https://highcaremtl.com/cdn/shop/files/Highcare_Logo_32x32.png?v=1747007228", "cover_url": "https://cdn.shopify.com/s/files/1/0510/4943/1232/files/50E48C6B-4818-48B6-866C-1FA1A99851D0.png?v=1780612257", "description_meta": "Boutique en ligne de produits cosm\u00e9tiques fraichement fabriqu\u00e9s au Qu\u00e9bec avec des ingr\u00e9dients de qualit\u00e9 et de source \u00e9thique.", "site_name": "HIGHCARE COSM\u00c9TIQUES"}
\ No newline at end of file
added data/enrich_cache/highforest.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "highforest.ca", "logo_url": "https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=180,h=180,fit=crop,f=png/AE0aqKqr8MfK0R1n/screenshot-2025-01-10-at-1.58.02a-am-mnlqn7nMWEceElgD.png", "cover_url": null, "description_meta": "Discover HighForest aromatic wellness honey, made with unpasteurized Quebec honey and botanical terpenes for morning, afternoon and evening rituals at home.", "site_name": "HIGH FOREST ELEVATE"}
\ No newline at end of file
added data/enrich_cache/highonlove.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "highonlove.co", "logo_url": "https://highonlove.co/cdn/shop/files/favicon-highonlove.png?crop=center&height=32&v=1682005639&width=32", "cover_url": "http://highonlove.co/cdn/shop/files/highonlove-valentine-day-gift_32de1de1-b6b8-4414-a174-4806cb1de445.jpg?v=1742997815", "description_meta": "We\u2019re an award-winning, buzzed-about line of self-care and sensual products designed to pamper bodies of all shapes and sizes. From relaxing bath oils to luxurious massage candles and the cult fave Stimulating Sensual Oil, each HighOnLove product is both beautifully packaged and exquisitely functional.", "site_name": "High On Love"}
\ No newline at end of file
added data/enrich_cache/histoiredebulles.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "histoiredebulles.com", "logo_url": "https://static.wixstatic.com/media/fe17de_250a867f8ca14804a6e6583ace4b0428%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/fe17de_250a867f8ca14804a6e6583ace4b0428%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/hitechoriginal.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hitechoriginal.ca", "logo_url": "https://hitechoriginal.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Hi-Tech Original"}
\ No newline at end of file
added data/enrich_cache/homeocan.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "homeocan.ca", "logo_url": "https://homeocan.ca/cdn/shop/files/Creation_sans_titre_1.png?crop=center&height=194&v=1727096888&width=194", "cover_url": "http://homeocan.ca/cdn/shop/files/HOM_logo_rouge_e43f2d33-8201-427b-9204-eaf127cbcfea.png?v=1747856305", "description_meta": "Homeocan fabrique et distribue des produits naturels et hom\u00e9opathiques pour les professionnels et les consommateurs. Depuis 30 ans, nous proposons des solutions de sant\u00e9 naturelle fabriqu\u00e9es au Canada. D\u00e9couvrez nos marques et produits d&#39;hom\u00e9opathie sur notre boutique en ligne .", "site_name": "Homeocan"}
\ No newline at end of file
added data/enrich_cache/honeymiel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "honeymiel.ca", "logo_url": "https://honeymiel.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/hopelay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hopelay.com", "logo_url": "https://hopelay.com/img/icon.png", "cover_url": "https://hopelay.com/img/experience/hero1.jpg", "description_meta": "D\u00e9couvrez Hopelay, votre microbrasserie de quartier \u00e0 Saint-Lin-Laurentides. Des bi\u00e8res artisanales brass\u00e9es sur place, une cuisine locale r\u00e9confortante et une terrasse conviviale.", "site_name": "Hopelay"}
\ No newline at end of file
added data/enrich_cache/hopera.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hopera.ca", "logo_url": "https://static.wixstatic.com/media/1d2419_d615b76fd80544139d20557ea41b6feb%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1d2419_d615b76fd80544139d20557ea41b6feb%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/horacejewelry.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "horacejewelry.com", "logo_url": "https://horacejewelry.com/favicon.ico", "cover_url": null, "description_meta": "Bas\u00e9 \u00e0 Montr\u00e9al, Horace Jewelry propose des bijoux abordables au design recherch\u00e9. Collier, bracelet, boucle d&#39;oreilles et plus : trouve le bijou parfait!", "site_name": "HoraceJewelry"}
\ No newline at end of file
added data/enrich_cache/horizonsante.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "horizonsante.ca"}
\ No newline at end of file
added data/enrich_cache/hotel-saguenay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotel-saguenay.com", "logo_url": "https://www.hotel-saguenay.com/wp-content/uploads/2026/06/logo-fav-battures-300x300.png", "cover_url": "https://www.hotel-saguenay.com/wp-content/uploads/2026/06/logo-fav-battures.png", "description_meta": "Profitez d\u2019un s\u00e9jour \u00e0 l\u2019Auberge des Battures, un h\u00f4tel 4 \u00e9toiles avec vue panoramique sur le fjord du Saguenay. D\u00e9tendez-vous dans nos chambres d&#039;h\u00f4tel, savourez une cuisine gastronomique et explorez des activit\u00e9s inoubliablesde Chicoutimi !", "site_name": "H\u00f4tel Battures"}
\ No newline at end of file
added data/enrich_cache/hotelaupetitberger.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotelaupetitberger.com", "logo_url": "https://hotelaupetitberger.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "H\u00f4tel au Petit Berger"}
\ No newline at end of file
added data/enrich_cache/hotelbaiestpaul.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotelbaiestpaul.com", "logo_url": "https://hotelbaiestpaul.com/wp-content/uploads/cropped-favicon-bsp-180x180.png", "cover_url": "https://hotelbaiestpaul.com/wp-content/uploads/baie-st-paul-hotel-social.jpg", "description_meta": "H\u00f4tel Baie Saint-Paul, situ\u00e9 tout pr\u00e8s du fameux centre-ville, l&#039;h\u00f4tel vous offre 62 chambres spacieuses et confortables.", "site_name": "H\u00f4tel Baie-Saint-Paul"}
\ No newline at end of file
added data/enrich_cache/hotelbelleplage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotelbelleplage.com", "logo_url": "https://www.hotelbelleplage.com/favicon.ico", "cover_url": null, "description_meta": "H\u00f4tel Belle Plage, chambre avec vue sur la mer, balcon priv\u00e9, cuisine gastronomique et toute la g\u00e9n\u00e9rosit\u00e9 de la Gasp\u00e9sie. Les chiens sont accept\u00e9s sous conditions dans certaines chambres.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/hotelcapauxpierres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotelcapauxpierres.com", "logo_url": "https://hotelcapauxpierres.com/wp-content/uploads/2024/02/cropped-ico-fav-180x180.png", "cover_url": "https://hotelcapauxpierres.com/wp-content/uploads/2024/03/share-facebook.webp", "description_meta": "Hotel Cap-aux-Pierres - Situ\u00e9 sur l&#039;Isle-aux-Coudres dans Charlevoix, l&#039;h\u00f4tel Cap-aux-Pierres dispose de chambres avec vue sur le fleuve.", "site_name": "H\u00f4tel Cap-aux-Pierres"}
\ No newline at end of file
added data/enrich_cache/hotelducapitaine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotelducapitaine.com", "logo_url": "https://sp-ao.shortpixel.ai/client/to_webp,q_glossy,ret_img,w_180,h_180/https://hotelducapitaine.com/wp-content/uploads/2021/04/cropped-roue_bleu-180x180.png", "cover_url": "https://hotelducapitaine.com/wp-content/uploads/2021/04/Capitaine_logo_blanc.png", "description_meta": "L\u2019H\u00f4tel du Capitaine, \u00e0l&#039;Isle-aux-Coudres, est un incontournable \u00e0 quiconque veut go\u00fbter le Qu\u00e9bec dans ce qu\u2019il a de vrai et d\u2019authentique !", "site_name": "H\u00f4tel du Capitaine"}
\ No newline at end of file
added data/enrich_cache/hoteldujardin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hoteldujardin.com", "logo_url": "https://hoteldujardin.com/wp-content/uploads/2019/07/cropped-logo-hotel-jardin-180x180.jpg", "cover_url": "https://hoteldujardin.com/wp-content/uploads/2021/03/BC_couleur.png", "description_meta": "Bienvenue \u00e0 l&#039;H\u00f4tel du Jardin \u00e0 Saint-F\u00e9licien. Profitez de chambres confortables, restaurant, spa et espaces \u00e9v\u00e9nementiels.", "site_name": "Hotel du jardin"}
\ No newline at end of file
added data/enrich_cache/hoteletcie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hoteletcie.com", "logo_url": "https://hoteletcie.com/wp-content/uploads/2025/05/cropped-favicon-180x180.png", "cover_url": "https://hoteletcie.com/wp-content/uploads/2025/05/opengraph.png", "description_meta": null, "site_name": "H\u00f4tel &amp; Cie Sainte-Anne-des-monts - Confort et plaisirs gourmands"}
\ No newline at end of file
added data/enrich_cache/hotelfrancis.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotelfrancis.qc.ca", "logo_url": "https://hotelfrancis.qc.ca/wp-content/uploads/2026/01/favicon-lefrancis-192x192-1.png", "cover_url": "https://hotelfrancis.qc.ca/wp-content/uploads/2026/01/le-francis-image-partage.jpg", "description_meta": "S\u00e9journez \u00e0 l\u2019H\u00f4tel Le Francis en Gasp\u00e9sie : confort, accueil humain et vue sur la rivi\u00e8re Petite-Cascap\u00e9dia. R\u00e9servez d\u00e8s maintenant!", "site_name": "Le Francis"}
\ No newline at end of file
added data/enrich_cache/hotellerustique.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotellerustique.ca", "logo_url": "https://static.wixstatic.com/media/7c9bc5_d78275286a2b47d69a9731a01ed738bc%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7c9bc5_d78275286a2b47d69a9731a01ed738bc%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/hotelmontfort.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hotelmontfort.ca", "logo_url": "https://hotelmontfort.ca/favicon.ico", "cover_url": "http://hotelmontfort.ca/public_upload/images/header/thumbnails/entree-hotel-montfort-bleu-pale-2000x1335-1200x630-000000.jpg", "description_meta": "L\u2019H\u00f4tel Montfort Nicolet propose 83 chambres finement d\u00e9cor\u00e9es qui conviennent \u00e0 tous les besoins. Venez vivre une escapade des plus extraordinaires.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/howcharming.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "howcharming.ca", "logo_url": "https://howcharming.ca/cdn/shop/files/3_564ad393-b5b6-43ba-a7cd-0a7e94d94eea.png?crop=center&height=32&v=1721020865&width=32", "cover_url": "http://howcharming.ca/cdn/shop/files/Your_paragraph_text_3.png?v=1719267020", "description_meta": "HowCharming", "site_name": "HowCharming"}
\ No newline at end of file
added data/enrich_cache/hoya-atelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hoya-atelier.com", "logo_url": "https://www.hoya-atelier.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/6352e37d6ab1cf052eb0ec4a/t/66734ac6b93d201c36d3ea59/1718831817140/P1040786.jpg?format=1500w", "description_meta": null, "site_name": "Hoya.Atelier"}
\ No newline at end of file
added data/enrich_cache/hqst.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hqst.ca", "logo_url": "https://hqst.ca/wp-content/uploads/2023/12/travel-favicon.png", "cover_url": "https://hqst.ca/wp-content/uploads/2026/03/Logos-HQ_Logo-horizontal-blanc.png", "description_meta": "Create a stunning travel website with Avada &amp; WordPress. Showcase destinations, share travel experiences, &amp; attract clients with custom, engaging designs.", "site_name": "HQ Services Touristiques"}
\ No newline at end of file
added data/enrich_cache/hugedomains.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hugedomains.com", "logo_url": "https://www.hugedomains.com/favicon.ico", "cover_url": "https://static.hugedomains.com/images/hdv3-img/og_hugedomains.png", "description_meta": "HugeDomains is the world leader in premium domains names. Find the perfect domain today.", "site_name": "HugeDomains"}
\ No newline at end of file
added data/enrich_cache/hugoandclay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hugoandclay.com", "logo_url": "https://www.hugoandclay.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/653993933cae7f6c15f76ea4/t/674dc2a37aa342093c7fdc3e/1733149347353/Logo+2.jpg?format=1500w", "description_meta": null, "site_name": "Hugo&amp;Clay"}
\ No newline at end of file
added data/enrich_cache/hugodidier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hugodidier.com", "logo_url": "https://hugodidier.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/hugolapiculteur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hugolapiculteur.com", "logo_url": "https://www.hugolapiculteur.com/uploads/b/4e1ad420-3247-11ee-8f96-c3e39535826a/icon_180x180_ios_NzYwOD.png?width=180", "cover_url": "https://www.hugolapiculteur.com/uploads/b/4e1ad420-3247-11ee-8f96-c3e39535826a/rz7b3wf6.png", "description_meta": "Miel brut pur et produits des ruches d&#039;abeilles \u00e9lev\u00e9s avec soins", "site_name": "Hugo l&#039;Apiculteur"}
\ No newline at end of file
added data/enrich_cache/huit100vingt.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "huit100vingt.com", "logo_url": "https://static.wixstatic.com/media/1e1f23_14360e8b7c994d0a8b487982241189c7%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1e1f23_14360e8b7c994d0a8b487982241189c7%7Emv2.jpg", "cover_url": null, "description_meta": "Situ\u00e9 \u00e0 Sainte-Marcelline-de Kildare, nous cr\u00e9ons une exp\u00e9rience gourmande par la d\u00e9couverte de tous les produits qui poussent sur notre terre et ce, au gr\u00e9 des saisons. Le Huit 100 Vingt est aussi sp\u00e9cialis\u00e9 dans les produits d", "site_name": "Huit 100 Vingt"}
\ No newline at end of file
added data/enrich_cache/hydroculture.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hydroculture.ca", "logo_url": "https://hydroculture.ca/wp-content/uploads/2026/07/cropped-logo-fond-transparent-feuille-seulement-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/hydromellerietal.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hydromellerietal.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/673f8acdaaee2600d298075e/c961f2e5-7b28-4445-8193-7f767423743c/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/673f8acdaaee2600d298075e/t/67474503044d434ef8f77960/1772299537090/Logo-TAL_RGB_Petit+format_Blanc.png?format=1500w", "description_meta": "Hydromellerie Tal cr\u00e9e des hydromels p\u00e9tillants artisanaux \u00e0 base de miel local du Qu\u00e9bec et de fruits rescap\u00e9s. Sans gluten, rafra\u00eechissants et originaux, leurs produits allient savoir-faire apicole, \u00e9coresponsabilit\u00e9 et plaisir gustatif. D\u00e9couvrez des saveurs uniques, locales et durables.", "site_name": "Hydromel TAL"}
\ No newline at end of file
added data/enrich_cache/hydroquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hydroquebec.com", "logo_url": "https://hydroquebec.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/hydrotuiles.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "hydrotuiles.ca", "logo_url": "https://i0.wp.com/hydrotuiles.ca/wp-content/uploads/2025/12/cropped-LOGOHT2vazado.png?fit=180%2C180&#038;ssl=1", "cover_url": "https://i0.wp.com/hydrotuiles.ca/wp-content/uploads/2025/02/iris.jpg", "description_meta": "Design en b\u00e9tonATELIER DE PRODUCTION D&#039;\u00c9L\u00c9MENTS ARCHITECTURAUX AU QU\u00c9BEC NOS GAMMES DE PRODUITS Carreaux \u00e0 motifs Pour sol et mur Carreaux en relief Pour mur Breeze blocks Pour mur CARREAUX DE CIMENT Floral, g\u00e9om\u00e9trique, classique, contemporain : peu importe le style pr\u00e9f\u00e9r\u00e9 de motif, nous les produisons tous ! NOS MOTIFS DE CARREAUX NOS COULEURS\u2026", "site_name": "HYDROTUILES"}
\ No newline at end of file
added data/enrich_cache/i.etsystatic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "i.etsystatic.com", "logo_url": "https://i.etsystatic.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/icelainetricot.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "icelainetricot.com", "logo_url": "https://icelainetricot.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ici-la.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ici-la.co", "logo_url": "https://ici-la.co/cdn/shop/files/favicon-ici-la-medium_180x180_crop_center.png?v=1614330213", "cover_url": null, "description_meta": "Impression \u00e0 la demande de T-shirts r\u00e9gionaux et communautaires pour les amoureux, les nostalgiques et les fiers de leur coin de pays.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/icionfaitbougerleschoses.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "icionfaitbougerleschoses.com", "logo_url": "https://icionfaitbougerleschoses.com/wp-content/uploads/2019/02/cropped-favicon-180x180.png", "cover_url": "https://icionfaitbougerleschoses.com/wp-content/uploads/2019/06/default-og-img.png", "description_meta": "Au Centre-du-Qu\u00e9bec, on fait bouger les choses!", "site_name": "Centre-du-Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/icq.affiliationfocus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "icq.affiliationfocus.com", "logo_url": "https://icq.affiliationfocus.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/idcdermo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "idcdermo.com", "logo_url": "https://www.idcdermo.com/cdn/shop/files/apple-icon-180x180.png?v=1704992087&width=192", "cover_url": "http://www.idcdermo.com/cdn/shop/files/logo.svg?height=628&pad_color=fff&v=1704732774&width=1200", "description_meta": "IDC Dermo offers the most comprehensive range of anti-aging skincare products on the market. Shop products that are based on a patented formulation protocol.", "site_name": "IDC"}
\ No newline at end of file
added data/enrich_cache/idoinebio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "idoinebio.com", "logo_url": "https://www.idoinebio.com/cdn/shop/files/favicon.png?v=1613223174&width=180", "cover_url": null, "description_meta": "Idoine Bio : des produits cosm\u00e9tiques naturels qu\u00e9b\u00e9cois pour des soins du visage et de la peau efficaces, \u00e9thiques, biologiques et respectueux de la nature.", "site_name": "Idoine - Produits biocosm\u00e9tiques"}
\ No newline at end of file
added data/enrich_cache/idunntechnologies.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "idunntechnologies.com", "logo_url": "https://idunntechnologies.com/wp-content/uploads/2020/09/cropped-favicon-180x180.jpg", "cover_url": "https://idunntechnologies.com/wp-content/uploads/2020/07/shutterstock_214759507.jpg", "description_meta": "L\u2019entreprise Idunn Technologies se sp\u00e9cialise dans la d\u00e9couverte, le d\u00e9veloppement et la commercialisation de produits de sant\u00e9 naturels.", "site_name": "IDUNN Technologies"}
\ No newline at end of file
added data/enrich_cache/igachaumontbilodeau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "igachaumontbilodeau.ca", "logo_url": "http://igachaumontbilodeau.ca/favicon.ico", "cover_url": null, "description_meta": "Find the best information and most relevant links on all topics related to This domain may be for sale!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/igafamillelambert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "igafamillelambert.com", "logo_url": "https://igafamillelambert.com/wp-content/uploads/2023/08/favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ignis-inferni.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ignis-inferni.com", "logo_url": "https://ignis-inferni.com/wp-content/uploads/2018/01/cropped-Feu-de-forge-23-9-180x180.jpg", "cover_url": null, "description_meta": "Ignis Inferni offre une vari\u00e9t\u00e9 de produits et services pour r\u00e9pondre \u00e0 vos besoins.Produits disponibles:-Luminaire-Quincaillerie-Mobilier-Support \u00e0 b\u00fbches et outils de foyer-Garde-corps-Rampe d&#039;escalier-SculptureNous travaillons en collaboration avec nos clients pour leurs projets de r\u00e9novation ou d&#039;am\u00e9nagement en leur offrant des produits uniques et de grande qualit\u00e9. Nous offrons un s", "site_name": "Ignis Inferni - Ferronnerie d&#039;art"}
\ No newline at end of file
added data/enrich_cache/ilemysterieuse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ilemysterieuse.com", "logo_url": "https://www.ilemysterieuse.com/wp-content/uploads/2023/04/cropped-favicon-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/illusions-textures.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "illusions-textures.net", "logo_url": "https://illusions-textures.net/favicon.ico", "cover_url": null, "description_meta": "DESCRIPTION", "site_name": null}
\ No newline at end of file
added data/enrich_cache/imatech-moore.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "imatech-moore.com", "logo_url": "https://imatech-moore.com/owebo-votresite/sites/default/files/images/Favicon-Imatech.jpg", "cover_url": "https://imatech-moore.com/sites/default/files/images/imatech-vr-fond-accueil.jpg", "description_meta": "IMATECH-MOORE, votre expert en accessoires pour VR, remorques et v\u00e9hicules sp\u00e9cialis\u00e9s. Depuis 25 ans au service des professionnels et particuliers.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/immunotec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "immunotec.com", "logo_url": "https://www.immunotec.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/impactessentials.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "impactessentials.ca", "logo_url": "https://www.impactessentials.ca/cdn/shop/files/android-chrome-512x512_6bc20352-53a8-411f-a37d-d33b3bec742b.png?v=1765127197&width=180", "cover_url": "http://www.impactessentials.ca/cdn/shop/files/IMPACT_-_Black_Background_44308956-3321-4ba9-bac4-bcb9de49d130.png?v=1778765590&width=2048", "description_meta": "From signature beard oil to premium care essentials. Elevate your daily routine with natural grooming products crafted to complement your style.", "site_name": "Impact Essentials"}
\ No newline at end of file
added data/enrich_cache/imperialpopcorn.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "imperialpopcorn.com", "logo_url": "https://www.imperialpopcorn.com/wp-content/uploads/cropped-clown-favicon-180x180.png", "cover_url": "https://www.imperialpopcorn.com/wp-content/uploads/Imperial-popcorn-intro.jpg", "description_meta": "Depuis 20 ans, Imp\u00e9rial Popcorn offre aux qu\u00e9b\u00e9cois de savoureuses saveurs de ma\u00efs \u00e9clat\u00e9. Cin\u00e9ma, \u00e9v\u00e8nements, f\u00eates, toutes les occasions sont bonnes!", "site_name": "Imperial Popcorn"}
\ No newline at end of file
added data/enrich_cache/impressfoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "impressfoods.com", "logo_url": "https://www.impressfoods.com/app/themes/impressfoods/dist/images/favicon/favicon-196x196_c595b2b9.png", "cover_url": "https://www.impressfoods.com/app/uploads/2019/03/impress_fb_img.jpg", "description_meta": "Impress foods is a canadian story of dedication, a family working together to build a business. We\u2019re really proud to offer multiple product lines.", "site_name": "Impress Foods"}
\ No newline at end of file
added data/enrich_cache/indi-gene.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "indi-gene.ca", "logo_url": "https://indi-gene.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/indigosuperfruit.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "indigosuperfruit.com", "logo_url": "https://indigosuperfruit.com/favicon.ico", "cover_url": null, "description_meta": "sac camerises congelees indigo super fruit vendu en epicerie sante", "site_name": null}
\ No newline at end of file
added data/enrich_cache/inewa.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "inewa.ca", "logo_url": "https://inewa.ca/wp-content/uploads/2024/10/cropped-logo_icon-web-Inewa-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/infime.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "infime.ca", "logo_url": "https://infime.ca/favicon.ico", "cover_url": null, "description_meta": "Infime offre des v\u00eatements stylis\u00e9s de qualit\u00e9, et ce, autant pour les tailles standards que les plus fines. Avec ses collections enti\u00e8rement fabriqu\u00e9es au Qu\u00e9bec, Infime souhaite faire une diff\u00e9rence, autant environnementale que sociale.", "site_name": "Infime"}
\ No newline at end of file
added data/enrich_cache/innovabris.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "innovabris.com", "logo_url": "https://innovabris.com/wp-content/uploads/2017/07/favicon.png", "cover_url": "https://innovabris.com/wp-content/uploads/2022/09/Innovabris-img-1i.jpg", "description_meta": "Depuis 1994, Innovabris offre des abris d&#039;auto, de fabrication r\u00e9sistante, faciles \u00e0 assembler et compatibles avec les abris Tempo et Harnois.", "site_name": "Innovabris"}
\ No newline at end of file
added data/enrich_cache/inselberg.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "inselberg.ca", "logo_url": "https://inselberg.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/inspirationgourmande.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "inspirationgourmande.ca", "logo_url": "https://www.inspirationgourmande.ca/favicon.ico", "cover_url": "https://www.inspirationgourmande.ca/wp-content/uploads/2025/10/og-image-inspiration-gourmande-1.jpg", "description_meta": "Votre p\u00e2tisserie fran\u00e7aise, Inspiration Gourmande, fa\u00e7onne chaque jour des ingr\u00e9dients du Qu\u00e9bec, avec un savoir-faire fran\u00e7ais et haut de gamme.", "site_name": "Inspiration Gourmande"}
\ No newline at end of file
added data/enrich_cache/intermarchebourget.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "intermarchebourget.ca", "logo_url": "https://intermarchebourget.ca/wp-content/uploads/2020/03/cropped-logo_inter_enligne-scaled-1-1-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/intermarchestdenis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "intermarchestdenis.com", "logo_url": "https://static.wixstatic.com/media/6aed40_192c1ee471ca41e9b8eca4c18f835283%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/6aed40_192c1ee471ca41e9b8eca4c18f835283%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/intermiel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "intermiel.com", "logo_url": "https://intermiel.com/wp-content/themes/intermiel/images/favicon/android-icon-192x192.png", "cover_url": null, "description_meta": null, "site_name": "intermiel"}
\ No newline at end of file
added data/enrich_cache/intersand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "intersand.com", "logo_url": "https://intersand.com/wp-content/uploads/2025/03/icon.png", "cover_url": "https://intersand.com/wp-content/uploads/2025/03/amber-kipp-75715CVEJhI-unsplash-1-1.jpg", "description_meta": "Intersand con\u00e7oit des liti\u00e8res pour chats innovantes, performantes et \u00e9coresponsables. Fabricant qu\u00e9b\u00e9cois reconnu \u00e0 l\u2019international.", "site_name": "Intersand"}
\ No newline at end of file
added data/enrich_cache/intrus.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "intrus.ca", "logo_url": "https://framerusercontent.com/images/WWlY94CoysETXci3qHRfjJjPQ.svg", "cover_url": "https://framerusercontent.com/images/z3z2nBYvthrvSihGP5EWelkLNQ.jpg", "description_meta": "Cidrerie vivante au c\u00c5\u0093ur de la ville de Qu\u00c3\u00a9bec. Nos cidres sont \u00c3\u00a9labor\u00c3\u00a9s de fa\u00c3\u00a7on naturelle, avec le moins d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/invasionsucree.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "invasionsucree.ca", "logo_url": "https://invasionsucree.ca/images/favicon.png", "cover_url": "https://invasionsucree.ca/images/preview.jpg", "description_meta": "Des bonbons lyophilis\u00e9s croquants, locaux et savoureux. Rejoignez la r\u00e9sistance sucr\u00e9e !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/iphea.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "iphea.ca", "logo_url": "https://www.iphea.ca/cdn/shop/files/Favicon_Iphea_32x32.png?v=1702410051", "cover_url": "http://www.iphea.ca/cdn/shop/files/IPHEA_logo_RGB.png?v=1691684595", "description_meta": "Iph\u00e9a Myco-Cosm\u00e9tiques", "site_name": "Iph\u00e9a Myco-Cosm\u00e9tiques"}
\ No newline at end of file
added data/enrich_cache/irisarlo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "irisarlo.com", "logo_url": "https://irisarlo.com/cdn/shop/files/Favicon_IA.png?crop=center&height=32&v=1709913575&width=32", "cover_url": "http://irisarlo.com/cdn/shop/files/SocialSharing.jpg?v=1710172094", "description_meta": "Iris + Arlo: Your go-to for sustainable period products, empowering menstruators from menarche to menopause.", "site_name": "Iris + Arlo"}
\ No newline at end of file
added data/enrich_cache/isabellealepins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "isabellealepins.com", "logo_url": "https://isabellealepins.com/wp-content/uploads/2024/09/cropped-Asset-1-180x180.png", "cover_url": null, "description_meta": "D\u00e9couvrez les cr\u00e9ations uniques en verre souffl\u00e9 d\u2019Isabelle Alepins, artiste verrier qu\u00e9b\u00e9coise. Sculptures, bijoux et objets d\u00e9coratifs faits \u00e0 la main.", "site_name": "Isabelle Alepins"}
\ No newline at end of file
added data/enrich_cache/isabelleferland.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "isabelleferland.com", "logo_url": "https://isabelleferland.com/cdn/shop/files/Isabelle-Ferland-favicon.png?v=1614330168&width=180", "cover_url": "http://isabelleferland.com/cdn/shop/files/Isabelle-Ferland-Entete-v8_b0503b7a-9d01-4158-95e6-b8e1a286916e.jpg?v=1630518045&width=2048", "description_meta": "Bijoux exclusifs fait main \u00e0 Qu\u00e9bec par Isabelle Ferland. Barrettes, accessoires pour cheveux, colliers et boucles d&#39;oreilles haut de gamme en bois pr\u00e9cieux.", "site_name": "Isabelle Ferland - Bijoux en bois"}
\ No newline at end of file
added data/enrich_cache/isabellehuot.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "isabellehuot.com", "logo_url": "https://www.isabellehuot.com/cdn/shop/files/IHUOT_-_dr_isabelle-RVB_32x32.png?v=1692638805", "cover_url": "http://www.isabellehuot.com/cdn/shop/files/IHUOT_-_dr_isabelle-RVB.png?v=1692638805", "description_meta": "Pr\u00eat-\u00e0-manger sant\u00e9, bo\u00eetes-repas livr\u00e9es \u00e0 domicile, collations \u00e9quilibr\u00e9es, produits d\u00e9jeuner, programmes de perte de poids et bien plus! Isabelle Huot Docteure en nutrition a de\u0301veloppe\u0301 des produits et solutions sant\u00e9 qui r\u00e9pondent aux besoins de toute la famille! LIVRAISON QU\u00c9BEC / ONTARIO", "site_name": "Isabelle Huot"}
\ No newline at end of file
added data/enrich_cache/isabelleinc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "isabelleinc.ca", "logo_url": "https://isabelleinc.ca/wp-content/themes/reactif_s/assets/images/apple-touch-icon.png", "cover_url": "https://isabelleinc.ca/wp-content/uploads/2018/08/isabelle-facebook.jpg", "description_meta": "L\u2019expert en pommes de terre | Des patates de qualit\u00e9 sup\u00e9rieure | Une grande distribution Canada, USA | Salubrit\u00e9 et tra\u00e7abilit\u00e9 garanties.", "site_name": "C. Isabelle &amp; Fils Inc"}
\ No newline at end of file
added data/enrich_cache/isabellelehouxmontreal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "isabellelehouxmontreal.com", "logo_url": "https://d2j6dbq0eux0bg.cloudfront.net/images/16954189/logos/profile/5698859691.jpg", "cover_url": null, "description_meta": "Bienvenue dans notre boutique en ligne de bijoux de fantaisie faits mains. Nos bijoux sont cr\u00e9\u00e9s dans notre atelier en Mauricie, Qu\u00e9bec. Nous sommes 2 designers, Isabelle lehoux et C\u00e9line St-Pierre et nous avons choisi de vous offrir des bijoux originaux et abordables pour tous vos \u00e9v\u00e9nements et sorties. Notre collection de bijoux a 22 ans cette ann\u00e9e.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/isledegarde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "isledegarde.com", "logo_url": "https://www.isledegarde.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5f369757607a6534d7a175f3/t/685eacb9a17d4c1cff4ea857/1751035065664/ISLE+DE+GARDE+vague.jpg?format=1500w", "description_meta": null, "site_name": "Isle de Garde"}
\ No newline at end of file
added data/enrich_cache/iveshill.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "iveshill.ca", "logo_url": "https://iveshill.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jackalhop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jackalhop.com", "logo_url": "https://jackalhop.com/cdn/shop/files/microbrasserie-jackalhop-icone_32x32.png?v=1629490124", "cover_url": "https://cdn.shopify.com/s/files/1/0589/6057/6710/files/microbrasserie-jackalhop-image-medias-sociaux.jpg?v=1632584517", "description_meta": "Avant tout un lieu de rencontre entre amis, la Microbrasserie Jackalhop se veut \u00eatre une exp\u00e9rience gustative et amicale qui sort des sentiers battus.", "site_name": "Microbrasserie Jackalhop"}
\ No newline at end of file
added data/enrich_cache/jambonniere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jambonniere.com", "logo_url": "https://jambonniere.com/wp-content/uploads/cropped-Asset-2@2x-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jardindejulie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardindejulie.com", "logo_url": "https://jardindejulie.com/cdn/shop/files/Pixel_onglet_ouvert_google_etc._32x32.png?v=1681318596", "cover_url": "http://jardindejulie.com/cdn/shop/files/logo-site-web3_Plan_de_travail_1_grande.png?v=1616418274", "description_meta": "Semences adapt\u00e9es au climat du Qu\u00e9bec. Savon vegan et cosm\u00e9tiques naturels.", "site_name": "Le Jardin de Julie"}
\ No newline at end of file
added data/enrich_cache/jardindesbuttes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardindesbuttes.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/63e44bcf327dc24802a680b6/8cb3bd47-328f-4d06-8fcb-c2e6c3c9008c/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/63e44bcf327dc24802a680b6/t/682c881c7bfec360a666ebc6/1747748892690/Logo_Jardins-des-Buttes_Titre_Titre.png?format=1500w", "description_meta": "Le Jardin des Buttes pr\u00e9pare sa prochaine saison pour 2025. Restez inform\u00e9 sur les nouveaut\u00e9s et nos activit\u00e9s \u00e0 Tingwick (Qu\u00e9bec).", "site_name": "JARDIN DES BUTTES"}
\ No newline at end of file
added data/enrich_cache/jardindumont.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardindumont.ca", "logo_url": "https://jardindumont.ca/wp-content/uploads/2018/08/cropped-iconedusite-180x180.png", "cover_url": null, "description_meta": "CIRCULAIRES Nos succursales Heures d&#039;ouvertures Infolettre Voir la circulaire Alexandre Monette Directeur g\u00e9n\u00e9ral T\u00e9l: 450 655-3821 poste 20006 Fran\u00e7ois Lambert Coordonnateur \u2013 approvisionnement et mise en march\u00e9 fruits et l\u00e9gumes T\u00e9l: 450 655-3821 poste 20003 francois.lambert@epicia.ca Gilles Jr. B\u00e9dard Directeur mise-en-march\u00e9 et G\u00e9rant de cat\u00e9gories T\u00e9l: 450 655-3821 poste 20008 gilles.bed", "site_name": "Jardin du Mont -"}
\ No newline at end of file
added data/enrich_cache/jardindupotager.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardindupotager.com", "logo_url": "https://www.jardindupotager.com/favicon.png?v=3.3", "cover_url": "https://one.monsamm.com/gallery/-lg.webp", "description_meta": "SITE OFFICIEL | G\u00eete, Auberge, Ferme bovine et mara\u00eech\u00e8re, lieu touristique, maison ancestrale, vue exceptionnelle sur le Fjord \u00e0 Sainte-Rose, Qu\u00e9bec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/jardiniersduchef.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardiniersduchef.com", "logo_url": "https://static.wixstatic.com/media/5223c9_fa22e1dea7e04cd281d86bb54bd9fdc3%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5223c9_fa22e1dea7e04cd281d86bb54bd9fdc3%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jardins-saint-antoine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardins-saint-antoine.com", "logo_url": "https://jardins-saint-antoine.com/wp-content/uploads/2020/09/cropped-JSA-favicon-180x180.png", "cover_url": null, "description_meta": "Six varieties of artisanal pasta sauces, made with locally sourced ingredients and crafted right here in Quebec by our family.", "site_name": "Jardins Saint-Antoine"}
\ No newline at end of file
added data/enrich_cache/jardinschantdevie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinschantdevie.com", "logo_url": "https://jardinschantdevie.com/owebo-votresite/sites/default/files/images/LOGO_pas_de_fond.png", "cover_url": "https://jardinschantdevie.com/sites/default/files/images/LOGO_pas_de_fond.png", "description_meta": "Acceuil", "site_name": null}
\ No newline at end of file
added data/enrich_cache/jardinscullion.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinscullion.com", "logo_url": "https://www.jardinscullion.com/cdn/shop/files/Jardin_Scullion_-_logo_3po_transparent_1c.png?crop=center&height=194&v=1750552777&width=194", "cover_url": "http://www.jardinscullion.com/cdn/shop/files/DSCF9968_930c3d70-a32c-4bdc-b78a-c540998c21a2.jpg?v=1750356760", "description_meta": "D\u00e9couvrez Jardin Scullion, le plus grand jardin de conif\u00e8res au monde et l\u2019un des 150 plus beaux jardins. Un lieu unique pour tourisme, \u00e9v\u00e9nements et d\u00e9tente.", "site_name": "Jardin Scullion"}
\ No newline at end of file
added data/enrich_cache/jardinsdegivre.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinsdegivre.ca", "logo_url": "https://www.jardinsdegivre.ca/favicon.ico", "cover_url": null, "description_meta": "Ferme mara\u00eech\u00e8re diversifi\u00e9e\nCentre-du-Qu\u00e9bec\nL\u00e9gumes biologiques", "site_name": "Jardins de givre"}
\ No newline at end of file
added data/enrich_cache/jardinsdemetis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinsdemetis.com", "logo_url": "https://jardinsdemetis.com/wp-content/uploads/2021/04/cropped-Jardins-Metis_New-logo-min_1-180x180.png", "cover_url": "https://jardinsdemetis.com/wp-content/uploads/2020/06/JardinsMetis_LouiseTanguay-plaisir-nature_-min.jpg", "description_meta": "Peu de jardins ont \u00e9t\u00e9 cr\u00e9\u00e9s dans des conditions atmosph\u00e9riques aussi difficiles. Situ\u00e9s \u00e0 300 km au nord-est de la ville de Qu\u00e9bec, les Jardins de M\u00e9tis cr\u00e9\u00e9s par Elsie Reford sont parmi\u00a0 les plus nordiques en Am\u00e9rique du Nord.", "site_name": "Jardins de Metis"}
\ No newline at end of file
added data/enrich_cache/jardinslabrouette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinslabrouette.com", "logo_url": "https://static.wixstatic.com/media/ad68e8_b41ead129ce04459bc918c9e74d7ce7e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/ad68e8_b41ead129ce04459bc918c9e74d7ce7e%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jardinsmistouk.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinsmistouk.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jardinsnaturlutte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinsnaturlutte.com", "logo_url": "https://static.wixstatic.com/media/2cfd58_5dadb3124bee40f2bdb39fdc5b83876b%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/2cfd58_5dadb3124bee40f2bdb39fdc5b83876b%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jardinsunbrindefolie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinsunbrindefolie.ca", "logo_url": "https://www.jardinsunbrindefolie.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jardinsvmo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinsvmo.com", "logo_url": "https://jardinsvmo.com/wp-content/uploads/2015/05/vmo-favicon.png", "cover_url": "https://www.jardinsvmo.com/wp-content/uploads/2020/07/vmo-fb.jpg", "description_meta": "Culture locale de canneberges 100% naturelle situ\u00e9e au Centre-du-Qu\u00e9bec. Nos produits sont disponibles chez plusieurs d\u00e9taillants.", "site_name": "Les Jardins VMO"}
\ No newline at end of file
added data/enrich_cache/jardinszoneorange.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jardinszoneorange.com", "logo_url": "https://www.jardinszoneorange.com/wp-content/uploads/2019/05/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "Ouverts \u00e0 l\u2019autocueillette en ao\u00fbt, les Jardins Zone Orange comptent plus d\u2019une vingtaine de vari\u00e9t\u00e9s d\u2019argousiers diff\u00e9rentes.", "site_name": "Jardins Zone Orange"}
\ No newline at end of file
added data/enrich_cache/jaroby.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jaroby.com", "logo_url": "https://www.jaroby.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jasmino.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jasmino.ca", "logo_url": "https://www.jasmino.ca/wp-content/uploads/2022/01/cropped-favicon-180x180.jpg", "cover_url": "https://www.jasmino.ca/wp-content/uploads/2022/01/imageshare_jasmino-1.png", "description_meta": "Chez Jasmino, notre mission est d&#039;apporter du bonheur \u00e0 chaque table et \u00e0 chaque repas avec nos produits. Go\u00fbtez \u00e0 notre vraie nature !", "site_name": "Jasmino"}
\ No newline at end of file
added data/enrich_cache/jawgler.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jawgler.com", "logo_url": "https://jawgler.com/cdn/shop/files/Favicon_Jawgler_d04914b2-9d83-4a5d-a84a-7edd1df730b8.svg?v=1741118965&width=32", "cover_url": "https://cdn.shopify.com/s/files/1/0565/6982/3409/files/Logo_seul_MS.svg?v=1745588406", "description_meta": "Les g\u00e2teries Jawgler r\u00e9veillent l\u2019instinct joueur de votre chien et lui offrent une exp\u00e9rience de mastication stimulante.", "site_name": "Jawgler"}
\ No newline at end of file
added data/enrich_cache/jaymar.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jaymar.co", "logo_url": "https://www.jaymar.co/wp-content/uploads/2019/10/cropped-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jaytoutenbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jaytoutenbois.com", "logo_url": "https://jaytoutenbois.com/favicon.ico", "cover_url": null, "description_meta": "Jay Tout En Bois", "site_name": "Jay Tout En Bois"}
\ No newline at end of file
added data/enrich_cache/jcperreault.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jcperreault.com", "logo_url": "https://www.jcperreault.com/favicon.ico", "cover_url": "https://www.jcperreault.com/fr/media_13467801c3b57e17cbf7263d6220ac6a4775754fb.jpg?width=1200&#x26;format=pjpg&#x26;optimize=medium", "description_meta": "Chez JC Perreault, r\u00e9v\u00e9lez votre int\u00e9rieur avec des meubles et \u00e9lectrom\u00e9nagers uniques, personnalisables et inspir\u00e9s par ce qui vous habite.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/jeancoutu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jeancoutu.com", "logo_url": "https://www.jeancoutu.com/magasiner/images/shared/small/favicon/apple-touch-icon-152x152.png", "cover_url": "https://www.jeancoutu.com/userfiles/image/facebook/share/logo-pjc.jpg", "description_meta": "D\u00e9couvrez les services, conseils et produits des pharmacies Jean Coutu ! Magasinez en ligne : livraison \u00e0 domicile ou ramassage en succursale.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/jeanmichelsimard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jeanmichelsimard.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/7c711f87-abc7-494c-aaa5-c3a9d21b7ffd/Main%20Jean-Michel%20Simard.JPG", "description_meta": null, "site_name": "Jean-Michel Simard | Sculpteur"}
\ No newline at end of file
added data/enrich_cache/jeannotte.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jeannotte.ca", "logo_url": "https://www.jeannotte.ca/wp-content/uploads/2020/06/favicon-32x32-1.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jeanparent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jeanparent.com", "logo_url": "https://www.jeanparent.com/favicon.ico", "cover_url": null, "description_meta": "Cabane \u00e0 sucre, \u00c9rabli\u00e8re Jean Parent, situ\u00e9 r\u00e9gion Lanaudi\u00e8re, Qu\u00e9bec,cabane \u00e0 sucre traditionnelle et folklorique", "site_name": null}
\ No newline at end of file
added data/enrich_cache/jeffleboulanger.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jeffleboulanger.com", "logo_url": "https://static.wixstatic.com/media/22dd5e_0cb0d04aeb2f4067993b1351eca31938%7Emv2.jpeg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/22dd5e_0cb0d04aeb2f4067993b1351eca31938%7Emv2.jpeg", "cover_url": "https://static.wixstatic.com/media/22dd5e_0cb0d04aeb2f4067993b1351eca31938%7Emv2.jpeg/v1/fit/w_2500,h_1330,al_c/22dd5e_0cb0d04aeb2f4067993b1351eca31938%7Emv2.jpeg", "description_meta": "Boulangerie Artisanale L\u00e9vis\nJeff le boulanger\nLe plus grand choix de pain au canada", "site_name": "Jeff le boulanger Copie"}
\ No newline at end of file
added data/enrich_cache/jemove.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jemove.ca", "logo_url": "https://jemove.ca/wp-content/uploads/2022/07/jm-favicon.png", "cover_url": "https://jemove.ca/wp-content/uploads/2023/08/JeMove-Logo-1.png", "description_meta": "PROFIL CONNEXION VOUS D\u00c9M\u00c9NAGEZ ? ON VOUS AIDE \u00c0 TOUT ORGANISER ! En quelques \u00e9tapes seulement, nous vous aidons \u00e0 planifier votre d\u00e9m\u00e9nagement de A \u00e0 Z, en vous offrant tous les services que vous pourriez n\u00e9cessiter dans le processus. JE \u00ab\u00a0MOVE\u00a0\u00bb EN BEAUT\u00c9 ! On vous simplie la vie, et c\u2019est gratuit ! Services [&hellip;]", "site_name": "Je Move"}
\ No newline at end of file
added data/enrich_cache/jennihealthy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jennihealthy.com", "logo_url": "https://static.wixstatic.com/media/06822f_b86ae6663f4f4d01b10d51f234013d96%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/06822f_b86ae6663f4f4d01b10d51f234013d96%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jessicapastries.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jessicapastries.com", "logo_url": "https://jessicapastries.com/wp-content/uploads/2026/04/cropped-Wisk2026-2-180x180.png", "cover_url": "https://jessicapastries.com/wp-content/uploads/2026/04/note.png", "description_meta": null, "site_name": "Jessica"}
\ No newline at end of file
added data/enrich_cache/jessicapchang.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jessicapchang.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5f5ad4aca9eba14299aeafad/1599963951654-C99MN10T3SOOF5G0SBIS/favicon.ico?format=100w", "cover_url": null, "description_meta": null, "site_name": "Jessica POIRIER-CHANG"}
\ No newline at end of file
added data/enrich_cache/jeuxface4.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jeuxface4.com", "logo_url": "https://jeuxface4.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/jgfruitsetlegumes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jgfruitsetlegumes.com", "logo_url": "https://www.jgfruitsetlegumes.com/wp-content/uploads/2026/04/cropped-JG_logo_icon-180x180.png", "cover_url": null, "description_meta": "JG Rive-Sud - Fruits et L\u00e9gumes est une entreprise qui fait la distribution de fruits et l\u00e9gumes \u00e0 Montr\u00e9al et les environs depuis 1984.", "site_name": "JG Fruits et L\u00e9gumes"}
\ No newline at end of file
added data/enrich_cache/jlfreeman.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jlfreeman.ca", "logo_url": "https://www.jlfreeman.ca/favicon.ico", "cover_url": null, "description_meta": "Produits et services de premier choix: produits de soins de sant\u00e9, services professionnels, produits exclusifs aux professionnels de la sant\u00e9 et distribution pharmaceutique pour les fournisseurs de soins de sant\u00e9 et les pharmacies.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/joailleriestonge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "joailleriestonge.com", "logo_url": "https://joailleriestonge.com/cdn/shop/files/favicon2_32x32_1ba862c0-5962-432e-a626-0924d1e1c436.png?crop=center&height=194&v=1726253355&width=194", "cover_url": "http://joailleriestonge.com/cdn/shop/files/doigt-porter-bague-fiancailles-1_06d06a62-f22a-4fe8-af57-a3c6aecff0e6.jpg?v=1647911387", "description_meta": "La r\u00e9put\u00e9e Joaillerie St-Onge \u00e0 Montr\u00e9al est la bijouterie de choix pour l\u2019achat d\u2019un bijou garanti \u00e0 vie et fabriqu\u00e9 au Qu\u00e9bec dans notre atelier de Montr\u00e9al. Notre bijouterie vous propose une grande s\u00e9lection de bagues de fian\u00e7ailles, d\u2019alliances pour elle, d\u2019alliances pour lui et de bijoux de tous les jours.", "site_name": "Joaillerie St-Onge"}
\ No newline at end of file
added data/enrich_cache/johnnytalie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "johnnytalie.com", "logo_url": "https://johnnytalie.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/joliesminoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "joliesminoix.ca", "logo_url": "https://www.joliesminoix.ca/wp-content/uploads/2021/08/favico.png", "cover_url": "https://www.joliesminoix.ca/wp-content/uploads/2022/01/noix-cultivee-au-quebec.jpg", "description_meta": "Jolies Mi-Noix cultive des noix du Qu\u00e9bec de noyers cendr\u00e9s et de noyers noirs et offre des produits d\u2019exception \u00e0 d\u00e9guster nature, assaisonn\u00e9s ou cuisin\u00e9s.", "site_name": "Jolies Minoix"}
\ No newline at end of file
added data/enrich_cache/jolygene.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jolygene.com", "logo_url": "https://images.panierdachat.app/273/SaGw7NKh_600dd1dc5f9db.JPG?w=32&amp;h=32&amp;fit=max", "cover_url": "https://images.panierdachat.app/273/HroRzmVT_img-4170.jpg?w=1200&h=630&fit=fill", "description_meta": "Vente et transformation de produits d", "site_name": "Ferme Jolyg\u00e8ne"}
\ No newline at end of file
added data/enrich_cache/jonathangarnier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jonathangarnier.com", "logo_url": "https://www.jonathangarnier.com/cdn/shop/files/JonathanGarnier_Favicon_180x_68013595-3922-4175-ab35-2852922f1954.png?v=1726172502&width=180", "cover_url": "http://www.jonathangarnier.com/cdn/shop/files/jonathangarnier.com_-_Image_de_partage_sur_les_medias_sociaux.png?v=1730258214&width=2048", "description_meta": "Official website of Chef Jonathan Garnier. Discover his biography, companies, TV shows and store.", "site_name": "Jonathan Garnier"}
\ No newline at end of file
added data/enrich_cache/josabeille.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "josabeille.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/c93d0281-8f1f-4a4b-a405-9f3d7c584827/received_221736157677703%5B1%5D.jpeg", "description_meta": "D\u00e9couvrez le miel brut de Josabeille, des produits de la ruche issus d&amp;#39;une apiculture responsable, pour une qualit\u00e9 sup\u00e9rieure et un go\u00fbt authentique.", "site_name": "Produits de la ruche *Miel brut"}
\ No newline at end of file
added data/enrich_cache/josephineco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "josephineco.ca", "logo_url": "https://www.josephineco.ca/cdn/shop/files/Josephine-Favicon_32x32.png?v=1658193192", "cover_url": "http://www.josephineco.ca/cdn/shop/files/josephineco-creatif-11_7cfe97c2-cbb5-476c-af3d-fec835a83fa5.jpg?v=1737030420", "description_meta": "Jos\u00e9phine Co fabrique au Qu\u00e9bec chandelles coco-soya, diffuseurs \u00e0 roseaux, baumes \u00e0 l\u00e8vres et bruines d\u2019ambiance artisanales pour des instants de bien-\u00eatre.", "site_name": "Jos\u00e9phine Co\u00ae"}
\ No newline at end of file
added data/enrich_cache/jotform.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jotform.com", "logo_url": "https://cdn.jotfor.ms/assets/img/favicons/apple-touch-icon.png", "cover_url": "https://cdn.jotfor.ms/assets/img/landing/opengraph.png", "description_meta": "Create forms and surveys easily with Jotform", "site_name": null}
\ No newline at end of file
added data/enrich_cache/jouercestgrandir.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jouercestgrandir.ca", "logo_url": "https://jouercestgrandir.ca/cdn/shop/files/D99C73C9-FC38-4413-9DE6-224DC8330C04_632ca49f-3ad1-46ac-b2c6-f9bb3e557c1f.png?crop=center&height=48&v=1731514515&width=48", "cover_url": "http://jouercestgrandir.ca/cdn/shop/files/Facebook_1200x1200.png?v=1636832274", "description_meta": "Retrouvez sur notre boutique en ligne des jeux \u00e9ducatifs de qualit\u00e9 pour tous les go\u00fbts allant de 0 \u00e0 18 ans. LIVRAISON GRATUITE \u00e0 partir de 99$ sauf les r\u00e9gions \u00e9loign\u00e9es.", "site_name": "Jouer c&#39;est grandir"}
\ No newline at end of file
added data/enrich_cache/journalmetro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "journalmetro.com", "logo_url": "https://journalmetro.com/wp-content/uploads/2021/09/cropped-cropped-metro_android-chrome-512x512-1-180x180.png", "cover_url": "https://journalmetro.com/wp-content/uploads/2021/09/share.jpg", "description_meta": "Toute l&#039;actualit\u00e9 du Journal M\u00e9tro: Nouvelles r\u00e9gionales et locales, connect\u00e9es sur Montr\u00e9al, sa culture et son art de vivre.", "site_name": "Journal M\u00e9tro"}
\ No newline at end of file
added data/enrich_cache/jplmaraicher.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jplmaraicher.com", "logo_url": "https://jplmaraicher.com/media/templates/site/pizzeria/images/icons/icon180x180.png", "cover_url": null, "description_meta": "Production, emballage et distribution de rutabaga, carotte et betterave. Plus grand producteur de rutabagas au Qu\u00e9bec. Certifi\u00e9 CanadaGAP.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/judithdubord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "judithdubord.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/juleidesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "juleidesign.com", "logo_url": "https://juleidesign.com/cdn/shop/files/Favicon_Julei_32x32.png?v=1663095290", "cover_url": "https://juleidesign.com/cdn/shop/files/Favicon_Julei_1204x630.png?v=1663095290", "description_meta": "JULEI cr\u00e9e du workleisure pour la femme contemporaine, des ensembles \u00e0 partir de mati\u00e8res naturelles \u00e9co-responsables et fabriqu\u00e9s au Qu\u00e9bec", "site_name": "juleidesign"}
\ No newline at end of file
added data/enrich_cache/juniperfarm.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "juniperfarm.ca", "logo_url": "https://juniperfarm.ca/cdn/shop/files/Black_White_Circle_Bee_Icon_Food_Logo_-_2_32x32.png?v=1745008808", "cover_url": "https://cdn.shopify.com/s/files/1/0043/3720/5377/files/transparent_white_logo_e8dc7022-6aa7-4367-af4d-aade59cb4816.png?v=1745432554", "description_meta": "Certified Organic Vegetable Farm. Orders for pick up and home delivery to Ottawa, Chelsea, Wakefield and Aylmer, Gatineau", "site_name": "Juniper Farm Store"}
\ No newline at end of file
added data/enrich_cache/juresucre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "juresucre.com", "logo_url": "https://juresucre.com/favicon.ico", "cover_url": "https://juresucre.com/wp-content/uploads/2022/06/Jure-Sucre-Logo-400.png", "description_meta": null, "site_name": "Jur\u00e9 Sucr\u00e9"}
\ No newline at end of file
added data/enrich_cache/justeduvrai.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "justeduvrai.com", "logo_url": "https://justeduvrai.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Juste du vrai Bistro sant\u00e9"}
\ No newline at end of file
added data/enrich_cache/justinecollard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "justinecollard.ca", "logo_url": "https://justinecollard.ca/favicon.ico", "cover_url": null, "description_meta": "Haptonomie, yoga pr\u00e9natal, chant pr\u00e9natal, doula dans les Laurentides et \u00e0 Montr\u00e9al. Justine Collard accompagne les femmes \u00e0 mettre au monde depuis 2009. \u2192 Prendre rendez-vous", "site_name": "Justine Collard"}
\ No newline at end of file
added data/enrich_cache/jyboileau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "jyboileau.ca", "logo_url": "https://www.jyboileau.ca/wp-content/uploads/2018/10/cropped-favicon-pomme-boileau-180x180.png", "cover_url": null, "description_meta": null, "site_name": "Jean-Yves Boileau &amp; fils"}
\ No newline at end of file
added data/enrich_cache/k5clothing.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "k5clothing.com", "logo_url": "https://k5clothing.com/wp-content/uploads/2021/12/cropped-K5favicon-180x180.png", "cover_url": "https://k5clothing.com/wp-content/uploads/2025/01/serviette-en-microfibre-ete-chaud6.jpg", "description_meta": "Une entreprise qu\u00e9b\u00e9coise sp\u00e9cialis\u00e9e dans les produits en microfibre, offrant des produits de haute qualit\u00e9 \u00e0 des prix imbattables. Nous proposons des articles pour toute la famille", "site_name": "k5 Clothing &amp; Accessories"}
\ No newline at end of file
added data/enrich_cache/kanel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kanel.com", "logo_url": "https://www.kanel.com/cdn/shop/files/Kanel_CircleLogo_THICK_36mm-01_32x32.png?v=1694975376", "cover_url": "http://www.kanel.com/cdn/shop/files/K_01_2790_edit_99af23a8-1b3c-4b0f-a96b-186df1bf4adb.jpg?v=1631386110", "description_meta": "We carefully blend the finest all-natural herbs and spices to bring you unique and excitingly complex flavour profiles. All you have to do is shake.", "site_name": "\u00c9pices Kanel Spices"}
\ No newline at end of file
added data/enrich_cache/kangooetcie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kangooetcie.com", "logo_url": "https://kangooetcie.com/cdn/shop/files/Logo_GRAS_Kangoo_-_lettrage_vert.png?crop=center&height=32&v=1738785407&width=32", "cover_url": "http://kangooetcie.com/cdn/shop/files/Kangoo-58_1.jpg?v=1703904167", "description_meta": "D\u00e9couvrez les premi\u00e8res pochettes alimentaires r\u00e9utilisables \u00e0 bec canadiennes. Parfaites pour l\u2019introduction \u00e0 l\u2019alimentation des enfants, pour les amateurs de plein air. Bref, pour toute la famille!", "site_name": "Kangoo et cie"}
\ No newline at end of file
added data/enrich_cache/kanopefragrances.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kanopefragrances.com", "logo_url": "https://kanopefragrances.com/cdn/shop/files/favicon_32x32.png?v=1613647032", "cover_url": "http://kanopefragrances.com/cdn/shop/files/Kanope_Fragrances_c69c45de-f32c-449c-9fc4-4ab9b4794471.png?v=1748374119", "description_meta": "Natural, vegan and gender neutral fragrances, designed and handmade in Montreal. Kanop\u00e9 represents a bridge between two worlds, the high quality traditional perfumery combined with the need to consume more responsibly to protect our health and the environment.", "site_name": "Kanop\u00e9 Fragrances"}
\ No newline at end of file
added data/enrich_cache/kaochocolat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kaochocolat.com", "logo_url": "https://kaochocolat.com/favicon.ico", "cover_url": null, "description_meta": "KAO CHOCOLAT c\u2019est une palette de saveurs issue de la for\u00eat bor\u00e9ale, du terroir qu\u00e9b\u00e9cois et de produits d\u2019ailleurs, \u00e0 travers l\u2019univers du chocolat.", "site_name": "Chocolaterie artisanale | KAO Chocolat"}
\ No newline at end of file
added data/enrich_cache/kapelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kapelier.com", "logo_url": "https://kapelier.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/karabijouxetstyle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "karabijouxetstyle.com", "logo_url": "https://karabijouxetstyle.com/favicon.ico", "cover_url": "http://karabijouxetstyle.com/cdn/shop/files/504436149_18461786152079638_2970163382979020430_n.jpg?v=1751554704", "description_meta": "D\u00e9couvrez nos bijoux artisanaux qu\u00e9b\u00e9cois, faits main avec passion. Magasinez en ligne et offrez-vous une touche d&#39;\u00e9l\u00e9gance locale avec Kara Bijoux.", "site_name": "Kara Bijoux et Style"}
\ No newline at end of file
added data/enrich_cache/kariberitaj.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kariberitaj.com", "logo_url": "https://kariberitaj.com/wp-content/uploads/2023/01/LOGO-KH-Flavicon-HEX-300x300.png", "cover_url": null, "description_meta": "La cuisine carib\u00e9enne que vous offre Kariberitaj est unique et irr\u00e9sistible. Vous appr\u00e9cierez et en redemanderez.", "site_name": "Kariberitaj"}
\ No newline at end of file
added data/enrich_cache/karinejoncas.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "karinejoncas.ca", "logo_url": "https://karinejoncas.ca/wp-content/uploads/2021/04/favicon.png", "cover_url": "https://karinejoncas.ca/wp-content/uploads/2026/05/Banner_RV_Soin-yeux-PJU_3840x1200_FR_v1-scaled.png", "description_meta": "Les vrais leaders des soins anti-\u00e2ge et multifonctions. Des produits haute performance de type professionnel \u00e0 domicile pour le mode de vie actif.", "site_name": "Karine Joncas | Marque qu\u00e9b\u00e9coise Soins Visage #1 en pharmacie"}
\ No newline at end of file
added data/enrich_cache/karkass.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "karkass.ca", "logo_url": "https://www.karkass.ca/uploads/b/b0c69040-f2e4-11ef-b91b-a92f59e6f7c2/icon_180x180_ios_NzQ0NT.png?width=180", "cover_url": null, "description_meta": "Une boutique de v\u00eatements pour femme con\u00e7us et fabriqu\u00e9s au Qu\u00e9bec. Collections en petites s\u00e9ries et style intemporel.", "site_name": "Karkass"}
\ No newline at end of file
added data/enrich_cache/kasemedesign.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kasemedesign.ca", "logo_url": "https://www.kasemedesign.ca/cdn/shop/files/favicontest2.png?crop=center&height=32&v=1697140776&width=32", "cover_url": "http://www.kasemedesign.ca/cdn/shop/files/kasemeog_d7476247-aaaa-4ed8-bee0-64a06d60eaa5.png?v=1708098403", "description_meta": "Find your style or create your own. Shop for top quality, stylish Phone cases made in Canada to protect your cellphone at all times. Made for iPhone, Samsung, LG and Google Pixel products!", "site_name": "KaseMe"}
\ No newline at end of file
added data/enrich_cache/katabatik.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "katabatik.ca", "logo_url": "https://katabatik.ca/static/images/favicon.ico?h=116d763bfed7de635cf8fc91a9e777b7", "cover_url": null, "description_meta": "Nos activit\u00e9s les plus populaires Saison 2026 Nos activit\u00e9s reprendront le 16 mai 2026 \u2014 r\u00e9servez d\u00e8s maintenant ! Offre promotionnelle en cours --\u00bb Nos\u2026", "site_name": null}
\ No newline at end of file
added data/enrich_cache/kawela.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kawela.ca", "logo_url": "https://kawela.ca/cdn/shop/files/ICONE_SITE_da649c7c-be23-47d9-b8ec-a2023085eecb.png?crop=center&height=32&v=1759427307&width=32", "cover_url": "https://kawela.ca/cdn/shop/files/IMG_1046_763f6935-0029-4127-bf75-558d8d3c36d6.jpg?v=1732563667", "description_meta": "Explore Kawel\u00e4&#39;s diverse collections. Discover high-quality beach towels, stylish swimwear, and essential accessories, all designed to enhance your summer adventures.", "site_name": "Kawel\u00e4"}
\ No newline at end of file
added data/enrich_cache/kefiplant.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kefiplant.com", "logo_url": "https://kefiplant.com/favicon.ico", "cover_url": "https://kefiplant.com/wp/wp-content/uploads/2024/06/icone-rond-brun-fleur-verte.png", "description_meta": "Elevate your food and beverage offering with our fermented botanicals and meet the demand of health-conscious consumers with tasty, functional solutions.", "site_name": "Kefiplant"}
\ No newline at end of file
added data/enrich_cache/kenworth.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kenworth.com", "logo_url": "https://kenworth.com/Assets/css/images/favicons/android-icon-192x192.png", "cover_url": "https://kenworth.com/media/ydjhwt1q/2025-meta-image.jpg", "description_meta": "Kenworth Trucks", "site_name": "Kenworth Trucks"}
\ No newline at end of file
added data/enrich_cache/kievepauze.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kievepauze.com", "logo_url": "https://static.wixstatic.com/media/9b0e8b_41e321086092465b973e35055fe39696%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/9b0e8b_41e321086092465b973e35055fe39696%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/kiima.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kiima.co", "logo_url": "https://kiima.co/cdn/shop/files/kfavicon.png?crop=center&height=32&v=1682633937&width=32", "cover_url": "http://kiima.co/cdn/shop/files/kiima-natural-refillable-skincare-applicators_1920x1080.png?v=1769701836", "description_meta": "100% natural, vegan, refillable skincare by Canadian brand KIIMA\u2122. Zero-waste body care with no aluminum, petroleum, or harsh chemicals. The future of skincare starts here.", "site_name": "KIIMA"}
\ No newline at end of file
added data/enrich_cache/kimetjoe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kimetjoe.com", "logo_url": "https://www.kimetjoe.com/cdn/shop/files/KIM_JOE_1506dc45-1038-43e3-905c-1934a1c8329c.png?crop=center&height=32&v=1739934369&width=32", "cover_url": "http://www.kimetjoe.com/cdn/shop/files/Sans_titre_1200_x_628_px_1200x628.png?v=1694450482", "description_meta": "Kim et Joe is a Quebec company providing grow-with-me, gender-neutral clothing for babies and kids aged 0 to 4 years. We also offer baby accessories, such as teething toys, stuffed animals, blankets and pacifier clips.", "site_name": "Kim et Joe"}
\ No newline at end of file
added data/enrich_cache/kimikabeautypro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kimikabeautypro.com", "logo_url": "https://www.kimikabeautypro.com/cdn/shop/files/logo_1.png?crop=center&height=32&v=1710926527&width=32", "cover_url": "http://www.kimikabeautypro.com/cdn/shop/files/Logo.png?height=628&pad_color=fff&v=1785353363&width=1200", "description_meta": "Experience salon-quality waxing at home with Kimika. Our #1 professional-grade waxing kits deliver smooth, long-lasting results for all skin types.", "site_name": "Kimika beauty pro"}
\ No newline at end of file
added data/enrich_cache/kimlamfoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kimlamfoods.com", "logo_url": "https://kimlamfoods.com/wp-content/uploads/2026/03/cropped-Capture-decran-2026-03-16-a-17.41.55-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/kimosoap.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kimosoap.com", "logo_url": "https://kimosoap.com/cdn/shop/files/KIMO_V3-06_32x32.jpg?v=1614293444", "cover_url": "https://cdn.shopify.com/s/files/1/0271/5739/7576/files/kimo_logo_2020-01.png?height=628&pad_color=ffffff&v=1614304366&width=1200", "description_meta": "Kimo s\u2019engage \u00e0 apporter le plaisir du spa \u00e0 chaque bain. Kimo is committed to bring that spa bliss to every bath.", "site_name": "Kimo Soaps"}
\ No newline at end of file
added data/enrich_cache/kingsey.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kingsey.com", "logo_url": "https://www.kingsey.com/-/media/ecosystem/divisions/canada-dairy/sites/kingsey/kingsey-images/android-icon-192x192.png?h=192&w=192&rev=cd0d85180426469d872697727f7ad89c&hash=A8FF3AFAF7727F6A5355CC5B5D38515F", "cover_url": null, "description_meta": null, "site_name": "www.kingsey.com"}
\ No newline at end of file
added data/enrich_cache/kitchen73.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kitchen73.ca", "logo_url": "https://i0.wp.com/kitchen73.ca/wp-content/uploads/2019/12/cropped-K73-LOGO-2.png?fit=180%2C180&#038;ssl=1", "cover_url": null, "description_meta": "Fait Maison", "site_name": "Kitchen 73"}
\ No newline at end of file
added data/enrich_cache/km42.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "km42.ca", "logo_url": "https://km42.ca/cdn/shop/files/FAVICON4.png?crop=center&height=32&v=1764798325&width=32", "cover_url": "http://km42.ca/cdn/shop/files/Screen_Shot_2023-01-25_at_10.59.07.png?v=1674662370&width=1024", "description_meta": "Nos chalets vous attendent \u00e0 Val-David. Tr\u00e8s bien situ\u00e9s le long du parc lin\u00e9aire du Petit train du nord pour vos activit\u00e9s de cyclisme, escalade, ski de fond, ou simplement prendre l\u2019air des Laurentides. A proximit\u00e9 du Parc r\u00e9gional Dufresne, escalade, bloc, randonn\u00e9e p\u00e9destre, raquette, ski de fond, glissade.", "site_name": "KM-42"}
\ No newline at end of file
added data/enrich_cache/ko-media.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ko-media.ca", "logo_url": "https://www.ko-media.ca/cdn/shop/files/favicon_1_32x32.png?v=1635866761", "cover_url": "https://cdn.shopify.com/s/files/1/0597/6417/9140/files/KO_MEDIA.png?v=1749153912", "description_meta": "KO M\u00e9dia offre une gamme diversifi\u00e9e de magazines et de livres qui mettent de l&#39;avant l\u2019art de vivre, la gastronomie, les tendances et les sujets de soci\u00e9t\u00e9 avec un contenu pertinent et novateur.", "site_name": "KO M\u00e9dia"}
\ No newline at end of file
added data/enrich_cache/kohi.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kohi.ca", "logo_url": "https://kohi.ca/cdn/shop/files/favicon_51a2fa7b-96ba-494b-bd9a-d20abcc0b745_16x16.png?v=1682384912", "cover_url": "https://kohi.ca/cdn/shop/files/banner_b9cf08a0-db9b-4862-acfc-362e8e0dc0bf_1260x630.jpg?v=1768492615", "description_meta": "Torr\u00e9faction de caf\u00e9 de sp\u00e9cialit\u00e9 dans les Laurentides. Commerce \u00e9thique et relations durables avec les producteurs de caf\u00e9. Pr\u00e9vost, Qc", "site_name": "KOHI Micro-torr\u00e9facteur"}
\ No newline at end of file
added data/enrich_cache/koolchiche.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "koolchiche.com", "logo_url": "https://cdn.prod.website-files.com/img/webclip.png", "cover_url": "https://cdn.prod.website-files.com/6746eedc0210c066a979fe57/67af423d86984bd41bd1521f_Paquets.png", "description_meta": "D\u00e9gustez nos falafels L&#x27;Herbac\u00e9 (pr\u00eats en 8 min) et nos hummus Le Carott\u00e9 &amp; La Bette (1 min micro-ondes). Duo 100% qu\u00e9b\u00e9cois, vegan et anti-gaspi. Le fast-food sant\u00e9 fait avec des l\u00e9gumes revaloris\u00e9s. #AlimentsduQu\u00e9bec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/korrigane.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "korrigane.ca", "logo_url": "https://static.wixstatic.com/media/7b9eb0_dad8be2dc95b43239660b4671b6dbcb9%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7b9eb0_dad8be2dc95b43239660b4671b6dbcb9%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/kpourkatrine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kpourkatrine.com", "logo_url": "https://www.kpourkatrine.com/app/themes/kpourkatrine/dist/images/favicon/favicon-196x196-a23f2c7c.png", "cover_url": "https://www.kpourkatrine.com/app/uploads/2018/07/kpourkaterine_fb_img.jpg", "description_meta": "D\u00c3\u00a9couvrez une grande vari\u00c3\u00a9t\u00c3\u00a9 de recettes gourmandes sans gluten et sans produits laitiers, sans que \u00c3\u00a7a paraisse!", "site_name": "K pour Katrine"}
\ No newline at end of file
added data/enrich_cache/kremkanel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kremkanel.com", "logo_url": "https://kremkanel.com/wp-content/uploads/2025/05/cropped-FAVICON_BRIOCHE_04-180x180.png", "cover_url": "https://kremkanel.com/wp-content/uploads/2025/05/ezgif.com-resize.gif", "description_meta": null, "site_name": "Comptoir Krem &amp; Kanel"}
\ No newline at end of file
added data/enrich_cache/krononutrition.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "krononutrition.com", "logo_url": "https://krononutrition.com/cdn/shop/files/Krono_Favicon.png?crop=center&height=32&v=1737762779&width=32", "cover_url": "http://krononutrition.com/cdn/shop/files/Krono_Nutrition.png?v=1758741608", "description_meta": "Discover Krono Nutrition, your go-to brand for natural sports nutrition in Quebec. Explore our range of energy gels, protein bars, and electrolyte drinks designed to fuel your performance with vegan, gluten-free, and peanut-free ingredients.", "site_name": "Krono Nutrition"}
\ No newline at end of file
added data/enrich_cache/kronova.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kronova.ca", "logo_url": "https://www.kronova.ca/wp-content/uploads/2025/12/cropped-fleche-scaled-1-180x180.png", "cover_url": "https://www.kronova.ca/wp-content/uploads/2020/12/f945d4a9-9b41-44ad-b913-7209060a32e7.webp", "description_meta": "Automatiser, ensemble. Technologies Kronova inc. accompagne les dirigeants des PME dans l&rsquo;automatisation des processus comptables et op\u00e9rationnels.\u00a0 Le nom KRONOVA combine KRONO pour le temps et VA pour la valeur ajout\u00e9e. Notre philosophie est simple: mettre en oeuvre rapidement des projets qui g\u00e9n\u00e8rent un impact concret et durable dans votre entreprise. D\u00e9couvrir Konta D\u00e9couvrir nos [&helli", "site_name": "Technologies Kronova inc"}
\ No newline at end of file
added data/enrich_cache/krugerproducts.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "krugerproducts.ca", "logo_url": "https://www.krugerproducts.ca/themes/custom/masterbrand/images/apple-touch-icon.png", "cover_url": "https://www.krugerproducts.ca/themes/custom/corporate/images/og_image_en.png", "description_meta": "Making Everyday Life More Comfortable", "site_name": null}
\ No newline at end of file
added data/enrich_cache/kurier36.pl.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kurier36.pl", "logo_url": "https://kurier36.pl/apple-touch-icon.png", "cover_url": "https://kurier36.pl/kurier36.png", "description_meta": "Sprawd\u017a NV Casino Polska 2026 i poznaj ofert\u0119 kasyna online z licencj\u0105 Cura\u00e7ao. Odbierz bonus powitalny do 10 000 PLN + 225 FS i graj w sloty, live casino oraz gry sto\u0142owe.", "site_name": "NV Casino"}
\ No newline at end of file
added data/enrich_cache/kwecocktails.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "kwecocktails.com", "logo_url": "https://kwecocktails.com/assets/images/favicon-96x96.png", "cover_url": "https://kwecocktails.com/media/pages/home/705a046041-1716230082/kwecocktails-share.png", "description_meta": "Sirops et mocktails bor\u00e9al artisanaux qu\u00e9b\u00e9cois de KWE. Go\u00fbts nordiques uniques qui dansent dans ton verre. Commande ta for\u00eat en cocktails !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/la-bete.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "la-bete.com", "logo_url": "https://www.la-bete.com/favicon-196x196.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/la-ferme-au-vieux-silo-82.webself.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "la-ferme-au-vieux-silo-82.webself.net", "logo_url": "https://la-ferme-au-vieux-silo-82.webself.net/favicon.ico", "cover_url": null, "description_meta": "Petite ferme locale, Saint-Damien-de-Buckland", "site_name": null}
\ No newline at end of file
added data/enrich_cache/la-place.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "la-place.ca", "logo_url": "https://cdn.la-place.ca/wp-content/uploads/2025/08/cropped-favicon-bleu-actuel-la-place-180x180.png", "cover_url": "https://www.la-place.ca/wp-content/uploads/2025/06/matelas-quebecois-qualite-la-place.webp", "description_meta": "D\u00e9couvrez nos magasins et notre large s\u00e9lection de matelas exclusifs garantis jusqu&#039;\u00e0 25 ans, de lits \u00e9lectriques, de literie et de lits escamotables qu\u00e9b\u00e9cois", "site_name": "LA PLACE du Matelas, lit escamotable et lit ajustable"}
\ No newline at end of file
added data/enrich_cache/labarberie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labarberie.com", "logo_url": "https://cdn.labarberie.com/wp-content/uploads/2020/06/cropped-barberie-favicon-1.png?strip=all&#038;resize=180%2C180", "cover_url": "https://cdn.labarberie.com/wp-content/uploads/2020/07/barberie-terrasse.jpg?strip=all", "description_meta": "La Barberie, premi\u00e8re microbrasserie coop\u00e9rative de travail au Qu\u00e9bec \u00e9tablie dans le quartier St-Roch depuis 1997.", "site_name": "La Barberie"}
\ No newline at end of file
added data/enrich_cache/labastille.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labastille.qc.ca", "logo_url": "http://www.labastille.qc.ca/skin/site/image/webclip.png?_m=01a4345e98756ad52fd19c7bdca77f33", "cover_url": "http://www.labastille.qc.ca/media/system/sites/logos/1496864257_charcuterie_la_bastille.jpg", "description_meta": "Charcuterie La Bastille, c\u2019est une vari\u00e9t\u00e9 impressionnante de charcuteries haut de gamme faites maison, c\u2019est un immense comptoir de fromages raffin\u00e9s artisanaux, c\u2019est une savoureuse vari\u00e9t\u00e9 de plats cuisin\u00e9s, le tout servi dans une ambiance amicale et chaleureuse. C\u2019est la petite \u00e9picerie fine dont vous ne pouvez vous passer.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/labatt.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labatt.com", "logo_url": "https://www.labatt.com/favicon.ico", "cover_url": "https://labatt-storate.s3.ca-central-1.amazonaws.com/og.png", "description_meta": "Labatt has an unwavering commitment to using only the finest ingredients and time-proven methods to brew what we believe are among the best beers and beyond.", "site_name": "Labatt"}
\ No newline at end of file
added data/enrich_cache/labauge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labauge.com", "logo_url": "https://labauge.com/wp-content/uploads/2023/04/favicon3.png", "cover_url": null, "description_meta": "Visitez un vignoble unique dans les Cantons-de-l\u2019Est : vins nature, viticulture r\u00e9g\u00e9n\u00e9ratrice, d\u00e9gustations, \u00e9v\u00e9nements champ\u00eatres en Estrie, Qu\u00e9bec", "site_name": "Vignoble de la Bauge | La Route des Vins des Cantons-de-l&#039;est"}
\ No newline at end of file
added data/enrich_cache/labellebinette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labellebinette.com", "logo_url": "https://static.wixstatic.com/media/7ba07e_dcca503304a048baabb3f311d3138588%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7ba07e_dcca503304a048baabb3f311d3138588%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/labergeriedunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labergeriedunord.com", "logo_url": "https://labergeriedunord.com/favicon.ico", "cover_url": null, "description_meta": "Inspir\u00e9s par la nature! L&#039;original savon \u00e0 base de lait de brebis, fait \u00e0 la main, par la berg\u00e8re.", "site_name": "La Bergerie du Nord"}
\ No newline at end of file
added data/enrich_cache/labete.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labete.ca", "logo_url": "https://labete.ca/wp-content/uploads/2018/01/cropped-LaBete_MD_noir-1-180x180.png", "cover_url": null, "description_meta": "Le meilleur bar-steakhouse de Qu\u00e9bec. En restaurant ou \u00e0 la maison, profitez de nos viandes AAA, nos sauces et autres plats savoureux.", "site_name": "La B\u00eate steakhouse"}
\ No newline at end of file
added data/enrich_cache/labiscuitery.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labiscuitery.com", "logo_url": "https://labiscuitery.com/cdn/shop/files/La_Biscuitery_Favicon_image_ac437cff-068c-4e39-ba7c-d36e06b1860f_32x32.png?v=1679671280", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/labobineuse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labobineuse.com", "logo_url": "https://labobineuse.com/cdn/shop/files/logo-sigle-peche-32x32.png?crop=center&height=32&v=1613172926&width=32", "cover_url": null, "description_meta": "Ouvert depuis plus de 50 ans, La Bobineuse vend de la laine en ligne partout au Canada et a pignon sur rue sur l&#39;avenue Mont-Royal, \u00e0 Montr\u00e9al. Cours de tricot.", "site_name": "La Bobineuse"}
\ No newline at end of file
added data/enrich_cache/laboiteabonbons.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laboiteabonbons.ca", "logo_url": "https://laboiteabonbons.ca/cdn/shop/files/1Artboard_1-100_6b5c36ac-9d8a-45cc-864f-2ef7f26509b3_32x32.jpg?v=1676397371", "cover_url": "http://laboiteabonbons.ca/cdn/shopifycloud/storefront/assets/no-image-2048-a2addb12_1200x1200.gif", "description_meta": "La bo\u00eete \u00e0 bonbons vous livre tous les mois une nouvelle s\u00e9lection de bonbons sans gluten, sans gras, frais et de qualit\u00e9s. Pr\u00e9par\u00e9 \u00e0 Montr\u00e9al, livr\u00e9 partout au Canada.", "site_name": "La bo\u00eete \u00e0 bonbons"}
\ No newline at end of file
added data/enrich_cache/labonneattitude.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labonneattitude.com", "logo_url": "https://ca.attitudeliving.com/favicon.ico", "cover_url": null, "description_meta": "Clean, EWG Verified home and personal care made safer for your home and better for the planet. Discover our essentials high performance.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/labontedelapomme.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labontedelapomme.ca", "logo_url": "https://labontedelapomme.ca/cdn/shop/files/tache_32x32.png?v=1629899983", "cover_url": "https://cdn.shopify.com/s/files/1/0529/8847/7594/files/Labonte_logo_simple_COULEUR_6306baf6-7952-40a1-ad60-970363bed320.png?v=1628430480", "description_meta": "Labont\u00e9 de la pomme, domaine agrotouristique \u00e9picurien. Cidrerie et verger d\u2019autocueillette de pommes, fruits et l\u00e9gumes. Cabane \u00e0 sucre &amp; pommes, une boutique de produits du terroir et des activit\u00e9s. Le domaine surplombe la bucolique vall\u00e9e d&#39;Oka et fait dos au parc national d\u2019Oka dans les Basses-Laurentides.", "site_name": "labontedelapomme"}
\ No newline at end of file
added data/enrich_cache/labontedivigne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labontedivigne.com", "logo_url": "https://labontedivigne.com/favicon.ico", "cover_url": null, "description_meta": "La Bont\u00c3\u00a9 DiVigne - Vignoble nordique d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/laboucaneriedeltonio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laboucaneriedeltonio.com", "logo_url": "https://www.laboucaneriedeltonio.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5e8b332f1a5b6e73b261c511/t/5e8b6c0f20703d6b2354dd51/1586195479332/received_720492768303575.jpeg?format=1500w", "description_meta": "La Boucanerie Del Tonio est un restaurant sympahtique sur le bord du fleuve. L\u2019entreprise poss\u00e8de son propre fumoir afin de fumer elle-m\u00eame ses viandes et ses poissons et \u00e9vite d\u2019acheter des produits d\u00e9j\u00e0 transform\u00e9s. Leur menu est diff\u00e9rent, distinctif et comprend des produits locaux !", "site_name": "La Boucanerie Del Tonio"}
\ No newline at end of file
added data/enrich_cache/laboucaneriedhenri.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laboucaneriedhenri.com", "logo_url": "https://laboucaneriedhenri.com/cdn/shop/files/BH_SaumonOrange.png?crop=center&height=32&v=1710692173&width=32", "cover_url": "http://laboucaneriedhenri.com/cdn/shop/files/Creation_sans_titre_1.png?v=1741054260", "description_meta": "La Boucanerie d\u2019Henri, c\u2019est le succ\u00e8s d\u2019une histoire de famille datant de trois g\u00e9n\u00e9rations.", "site_name": "La Boucanerie d&#39;Henri"}
\ No newline at end of file
added data/enrich_cache/labouchebee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labouchebee.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/689ba1_1fd2ac79c5314f42b01a5b284d1cd309.jpg/v1/fit/w_2500,h_1330,al_c/689ba1_1fd2ac79c5314f42b01a5b284d1cd309.jpg", "description_meta": "Bouche B\u00e9e, Restauration, salle de r\u00e9ception, service de traiteur", "site_name": "labouchebee"}
\ No newline at end of file
added data/enrich_cache/laboucheedouble.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laboucheedouble.com", "logo_url": "https://static.wixstatic.com/media/dc828f_7148e21a89924282a0665953819c8043%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/dc828f_7148e21a89924282a0665953819c8043%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/laboulangeriedemarie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laboulangeriedemarie.com", "logo_url": "https://laboulangeriedemarie.com/wp-content/uploads/2019/12/cropped-favicon-la-boulangerie-de-marie-2019-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/labourgeoise.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labourgeoise.com", "logo_url": "https://labourgeoise.com/wp-content/uploads/2023/07/ALB_icon_RVB-red-300x300.png", "cover_url": "https://labourgeoise.com/wp-content/uploads/2024/12/IMG_1590-scaled.jpeg", "description_meta": "D\u00e9licieux &amp; fi\u00e8rement qu\u00e9b\u00e9cois D\u00c9COUVRIR NOS PRODUITS Nos produits en vedette Une expertise garantissant une qualit\u00e9 incomparable, sans compromis sur le go\u00fbt. Aliments La Bourgeoise est une p\u00e9pite du paysage culinaire qu\u00e9b\u00e9cois depuis 1992, qui r\u00e9gale les palais les plus exigeants. Chez nous, la satisfaction du client prime, port\u00e9e par une recherche constante d&rsquo;innovation et [&hellip;]", "site_name": "Aliments La Bourgeoise"}
\ No newline at end of file
added data/enrich_cache/laboutiquedusommet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laboutiquedusommet.com", "logo_url": "https://static.wixstatic.com/media/8ec84b_ce83dc22d1354e08a4aa2dd12dae0aea%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/8ec84b_ce83dc22d1354e08a4aa2dd12dae0aea%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/8ec84b_ce83dc22d1354e08a4aa2dd12dae0aea%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/8ec84b_ce83dc22d1354e08a4aa2dd12dae0aea%7Emv2.jpg", "description_meta": "La boutique du Sommet offre des huiles essentielles pures et biologiques du Qu\u00e9bec ainsi qu", "site_name": "La Boutique Du Somme"}
\ No newline at end of file
added data/enrich_cache/labradorproduction.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labradorproduction.ca", "logo_url": "https://labradorproduction.ca/wp-content/uploads/2022/11/favicon.png", "cover_url": null, "description_meta": "Producteur d\u2019huiles essentielles bor\u00e9ales biologiques et durables, certifi\u00e9es Ecocert et d\u00e9tenteur de la garantie d\u2019approvisionnement gouvernementale canadienne.", "site_name": "Labrador Production"}
\ No newline at end of file
added data/enrich_cache/labranche.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labranche.ca", "logo_url": "https://labranche.ca/wp-content/uploads/2026/01/cropped-favicon-180x180.png", "cover_url": "https://labranche.ca/wp-content/uploads/2026/02/card_Labranche.jpg", "description_meta": "D\u00e9couvrez le Domaine Labranche : produits d\u2019\u00e9rable, cidres, vins et exp\u00e9riences gourmandes en pleine nature. Tradition, saveurs et savoir-faire d\u2019ici.", "site_name": "Domaine Labranche"}
\ No newline at end of file
added data/enrich_cache/labrasseriesan-o.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labrasseriesan-o.ca", "logo_url": "https://labrasseriesan-o.ca/cdn/shop/files/thumbnail_SanO_Logo_Burgundy_32x32.png?v=1721102595", "cover_url": "http://labrasseriesan-o.ca/cdn/shop/files/SanO_Logo.png?v=1671933413", "description_meta": "San-\u00d4 is Canada&#39;s premier source for artisan koji rice and small-batch Japanese-style sake, crafted in Montr\u00e9al. Shop premium koji, explore recipes, and bring authentic Japanese fermentation to your kitchen.", "site_name": "LA BRASSERIE SAN-\u00d4 SAK\u00c9 inc."}
\ No newline at end of file
added data/enrich_cache/labreynard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labreynard.com", "logo_url": "http://www.labreynard.com/favicon.ico", "cover_url": null, "description_meta": "Laboratoires Reynard est une entreprise canadienne de produits \u00e9pilatoires depuis plus de 50 ans qui fournit tous types de cires \u00e9pilatoires de qualit\u00e9 professionnelle.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/labricole.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labricole.co", "logo_url": "https://labricole.co/favicon.ico", "cover_url": "http://labricole.co/srcmedia/assets/LABRICOLE_LOGO_NOIR.svg", "description_meta": "Petite ferme \u00c3\u00a0 \u00c3\u00a9chelle humaine qui livre des paniers de l\u00c3\u00a9gumes \u00c3\u00a0 Saguenay et produit de la viande de canard", "site_name": null}
\ No newline at end of file
added data/enrich_cache/labrisedutemps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labrisedutemps.com", "logo_url": "https://www.labrisedutemps.com/wp-content/uploads/2021/05/cropped-La-brise-du-temps-logo-55-180x180.png", "cover_url": "https://www.labrisedutemps.com/wp-content/uploads/2021/05/Location-maison-La-brise-du-temps-7.jpeg", "description_meta": "Maison \u00e0 louer \u00e0 Saint-Joseph-de-la-Rive dans Charlevoix. Espace pour loger jusqu\u2019\u00e0 8 personnes dans un d\u00e9cor chaleureux et pittoresque.", "site_name": "La Brise du temps"}
\ No newline at end of file
added data/enrich_cache/labrouettemaraichere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labrouettemaraichere.com", "logo_url": "https://www.labrouettemaraichere.com/cdn/shop/files/La_Brouette_Maraichere_32x32.png?v=1742839525", "cover_url": "https://cdn.shopify.com/s/files/1/0363/0003/0089/files/Calendula_cc615c23-eb22-49ac-b200-e4ecf6392fee.jpg?v=1617878602", "description_meta": "P\u00e9pini\u00e8re biologique de plants potagers, fines herbes et fleurs comestibles | m\u00e9dicinales en pot pour votre jardin. Retrouvez les plus belles collections sur la boutique en ligne.", "site_name": "La Brouette Mara\u00eech\u00e8re"}
\ No newline at end of file
added data/enrich_cache/labstantoine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "labstantoine.com", "logo_url": "https://www.labstantoine.com/wp-content/uploads/2020/11/favicon.ico", "cover_url": "https://www.labstantoine.com/wp-content/uploads/2020/08/BienFaitIci.png", "description_meta": "Laboratoires Saint-Antoine fabrique plus de 100 produits de nettoyage, de d\u00e9graissage, de lubrification, d&#039;antirouille et de r\u00e9sine pour diff\u00e9rents secteurs d&#039;activit\u00e9.", "site_name": "Laboratoire St-Antoine"}
\ No newline at end of file
added data/enrich_cache/lac-sainte-marie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lac-sainte-marie.com", "logo_url": "https://lac-sainte-marie.com/favicon.ico", "cover_url": null, "description_meta": "La Municipalit\u00e9 de Lac-Sainte-Marie est r\u00e9put\u00e9e pour son centre de ski, son terrain de golf professionnel et ses magnifiques paysages.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lacabaneaboubou.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacabaneaboubou.ca", "logo_url": "https://lacabaneaboubou.ca/wp-content/uploads/2019/12/cropped-favicon2-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lacabaneaglaces.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacabaneaglaces.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5703ed7c07eaa0daea44515c/e8d9eab2-986d-4534-9c64-90a55dee335a/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5703ed7c07eaa0daea44515c/t/57105773cf80a10d47b14087/1464955329972/Logo_Cabane_web.png?format=1500w", "description_meta": "La Cabane \u00e0 Glaces est une cr\u00e8merie sp\u00e9cialis\u00e9e en sundaes avec vue sur le fjord \u00e0 L\u2019Anse-Saint-Jean. C\u2019est un attrait touristique incontournable de la r\u00e9gion du Bas-Saguenay depuis 2016.", "site_name": "La Cabane \u00e0 glaces &#124; D\u00e9lices glac\u00e9s - L"}
\ No newline at end of file
added data/enrich_cache/lacabaneatuque.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacabaneatuque.com", "logo_url": "https://lacabaneatuque.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lacabaneaubontemps.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacabaneaubontemps.ca", "logo_url": "https://lacabaneaubontemps.ca/favicon.ico", "cover_url": null, "description_meta": "La cabane \u00e0 sucre a \u00e9t\u00e9 b\u00e2tie par Victor Loubier en 1970. En 2003, mon p\u00e8re Cl\u00e9ment B\u00e9dard r\u00e9alise un de ses r\u00eaves et acquiert ce qui deviendra son nouveau coin de paradis.", "site_name": "la cabane au bon temps"}
\ No newline at end of file
added data/enrich_cache/lacabanesucree.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacabanesucree.ca", "logo_url": "https://lacabanesucree.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lacacheamaxime.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacacheamaxime.com", "logo_url": "https://lacacheamaxime.com/assets/images/favicon.png", "cover_url": "https://lacacheamaxime.com/uploads/uploads/_1200x630_crop_center-center_none/IMG_5954.jpg", "description_meta": "La cache \u00e0 Maxime de Scott, en Beauce, est un complexe offrant h\u00f4tel, chalets, spa, restaurant, pub et salles de r\u00e9union. S\u00e9journez en tout confort dans notre \u00e9tablissement h\u00f4telier!", "site_name": "Fran\u00e7ais"}
\ No newline at end of file
added data/enrich_cache/lacapsuletemporelle.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacapsuletemporelle.ca", "logo_url": "https://lacapsuletemporelle.ca/cdn/shop/files/Favicon_Capsule-Temporelle_32x32.png?v=1635866651", "cover_url": "https://cdn.shopify.com/s/files/1/0597/3934/0958/files/Logo_2_Capsule-Temporelle_Noir_776020f2-eb9e-4c62-a3b6-415cdb4b08b7.png?height=628&pad_color=fffef7&v=1636467264&width=1200", "description_meta": "D\u00e9couvrez l&#39;essence des cidres naturels \u00e0 La Capsule Temporelle, une cidrerie \u00e9co-responsable situ\u00e9e \u00e0 Franklin, Mont\u00e9r\u00e9gie. Explorez des saveurs uniques du terroir qu\u00e9b\u00e9cois et plongez dans une exp\u00e9rience cidricole m\u00e9morable. Trouvez ici des produits Qu\u00e9b\u00e9cois et locaux de qualiit\u00e9s.", "site_name": "La Capsule Temporelle"}
\ No newline at end of file
added data/enrich_cache/lacaptive.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacaptive.ca", "logo_url": "https://www.lacaptive.ca/wp-content/uploads/cropped-MLC_2018_new-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lacbrome.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacbrome.ca", "logo_url": "https://lacbrome.ca/themes/lac-brome/assets/medias/images/favicon.png", "cover_url": "https://lacbrome.ca/themes/lac-brome/assets/medias/images/share.jpg", "description_meta": "Bienvenue&#x20;sur&#x20;le&#x20;site&#x20;officiel&#x20;de&#x20;la&#x20;Ville&#x20;de&#x20;Lac-Brome.&#x20;D&#x00E9;couvrez-y&#x20;toute&#x20;l&#x27;information&#x20;municipale&#x20;que&#x20;vous&#x20;cherchez.", "site_name": "Lac-Brome"}
\ No newline at end of file
added data/enrich_cache/laccroche.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laccroche.com", "logo_url": "https://www.laccroche.com/favicon.ico", "cover_url": "https://d397xw3titc834.cloudfront.net/images/original/3/7c/37c70efe216639a17aa9c013b897f0bd.jpg", "description_meta": "La Pourvoirie du Lac Croche vous offre une exp\u00e9rience de p\u00eache et de chasse inoubliable dans la nature entre amis ou en famille. Notre pourvoirie constitue une destination de choix pour passer des vacances tout en pratiquant vos loisirs favoris : la p\u00eache et la chasse.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lachopeamiel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lachopeamiel.com", "logo_url": "https://lachopeamiel.com/cdn/shop/files/LaChope_SignatureComplete_72dpiCLEAR_628px_32x32.png?v=1737991429", "cover_url": "http://lachopeamiel.com/cdn/shop/files/LaChope_SignatureComplete_72dpiCLEAR_628px_1200x1200.png?v=1737991429", "description_meta": "La Chope \u00e0 Miel est un micro-miellerie artisanale qu\u00e9b\u00e9coise dont la mission est de faire connaitre la complexit\u00e9 du go\u00fbt du miel gr\u00e2ce une gamme de produits distinctifs riche en saveurs. Le tout en offrant une vari\u00e9t\u00e9 de miels, qu\u2019ils soient bruts ou cr\u00e9meux, toujours naturels et authentiques.", "site_name": "La Chope \u00e0 Miel"}
\ No newline at end of file
added data/enrich_cache/lachopeangus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lachopeangus.com", "logo_url": "https://lachopeangus.com/wp-content/uploads/2025/10/cropped-fav-180x180.png", "cover_url": "https://lachopeangus.com/wp-content/uploads/2025/10/screenshot.png", "description_meta": "Brasserie artisanale et resto-pub chaleureux dans les Shops Angus de Rosemont \u00e0 Montr\u00e9al. 140-2601 rue William-Tremblay. Coop\u00e9rative de solidarit\u00e9 fond\u00e9e en 2019.", "site_name": "La Chope Angus"}
\ No newline at end of file
added data/enrich_cache/lachouape.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lachouape.com", "logo_url": "https://lachouape.com/wp-content/themes/la_web_shop/favicon.png", "cover_url": "https://lachouape.com/wp-content/themes/la_web_shop/images/facebook_image.png", "description_meta": "Guid\u00e9s par notre passion pour la bi\u00e8re et inspir\u00e9s par notre tradition paysanne familiale, nous brassons des bi\u00e8res savoureuses, originales et des plus naturelles.", "site_name": "La Chouape"}
\ No newline at end of file
added data/enrich_cache/lacievilandre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacievilandre.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/62261dc15b7968587531becb/55035c02-bb28-4549-a7c6-9a5d5d99f127/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/62261dc15b7968587531becb/t/67fbd52ff3c55128b80b6303/1744557359866/Juste+lunettes+noir.png?format=1500w", "description_meta": null, "site_name": "La Cie Vilandr\u00e9"}
\ No newline at end of file
added data/enrich_cache/lacitrouilleenchantee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacitrouilleenchantee.ca", "logo_url": "https://lacitrouilleenchantee.ca/favicon.ico?1783360515", "cover_url": null, "description_meta": "Labyrinthes dans le ma\u00c3\u00afs avec auto-cueillette de courges et de citrouilles \u00c3\u00a0 Sainte-Clotilde-de-Horton, Nous sommes situ\u00c3\u00a9s entre Drummondville et Victoriaville, \u00c3\u00a0 45 minutes de Sherbrooke et de Trois-Rivi\u00c3\u00a8res.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lacmoreau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacmoreau.ca", "logo_url": "https://lacmoreau.ca/wp-content/uploads/2026/04/cropped-cropped-Pourvoirie-du-Lac-Moreau_Logo_Noir-180x180.png", "cover_url": "https://lacmoreau.ca/wp-content/plugins/huntar-core/addons/widgets/images/naturo-shape.png", "description_meta": "Auberge, chalets et glamping au c\u0153ur de Charlevoix. P\u00eache, chasse, plein air et gastronomie bor\u00e9ale sur 32 lacs. R\u00e9servez votre s\u00e9jour nature.", "site_name": "Pourvoirie"}
\ No newline at end of file
added data/enrich_cache/laconfiserie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laconfiserie.ca", "logo_url": "https://www.laconfiserie.ca/favicon.ico", "cover_url": null, "description_meta": "Boutique virtuelle de La Confiserie Wakefield. | On-line shop for the Wakefield Confectionery. Chocolats, bonbons, produits de l&#39;\u00e9rable, fudge et conserves. | Chocolate, candy, maple, fudge and preserve products.", "site_name": "La Confiserie Wakefield"}
\ No newline at end of file
added data/enrich_cache/laconfiture.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laconfiture.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/2d1be77e-9093-4faf-93c5-7d4213234e2a/logo.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/2d1be77e-9093-4faf-93c5-7d4213234e2a/logo.jpg", "description_meta": "Boutique des cr\u00e9atrices de nathy.d : incontournable \u00e0 Granby. Confitures, paniers cadeaux sur mesure, chocolat, produits fins et locaux, produits naturels.", "site_name": "Les Confituri\u00e8res"}
\ No newline at end of file
added data/enrich_cache/lacroiseedeschemins.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacroiseedeschemins.ca", "logo_url": "https://www.lacroiseedeschemins.ca/wp-content/uploads/2026/07/cropped-LCDC_Site-Logo-1-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lactolac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lactolac.ca", "logo_url": "https://lactolac.ca/lactolac.ca/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": "LactoLac"}
\ No newline at end of file
added data/enrich_cache/lacuveelocal-ecopub.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lacuveelocal-ecopub.ca", "logo_url": "https://static.wixstatic.com/media/7c1f15_76bc1a8a9cc7414ab953f6a7f1c85b39%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7c1f15_76bc1a8a9cc7414ab953f6a7f1c85b39%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/7c1f15_76bc1a8a9cc7414ab953f6a7f1c85b39%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/7c1f15_76bc1a8a9cc7414ab953f6a7f1c85b39%7Emv2.jpg", "description_meta": null, "site_name": "La Cuv\u00e9e locale"}
\ No newline at end of file
added data/enrich_cache/ladansedessavons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ladansedessavons.com", "logo_url": "https://static.wixstatic.com/media/062942_797b97d41c2c41439887678806a2d735%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/062942_797b97d41c2c41439887678806a2d735%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/062942_c2af5a34d92545988e59e100916d3fdf%7Emv2.png/v1/fit/w_2500,h_1330,al_c/062942_c2af5a34d92545988e59e100916d3fdf%7Emv2.png", "description_meta": "La Danse des Savons propose des produits de qualit\u00e9, la cr\u00e9ation de savon artisanal personnalis\u00e9 et cadeaux corporatifs. Quality handcrafted soap, made in Quebec. Find the perfect gift or a custom made product.", "site_name": "La Danse Des Savons"}
\ No newline at end of file
added data/enrich_cache/ladefriche.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ladefriche.ca", "logo_url": "http://ladefriche.ca/favicon.ico", "cover_url": null, "description_meta": "Petite ferme bio ind\u00c3\u00a9pendante de Gasp\u00c3\u00a9sie", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafabriquedebagel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafabriquedebagel.com", "logo_url": "https://static.wixstatic.com/media/0bc285_ec80d7ee158d4d6a856144670d392c5f%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/0bc285_ec80d7ee158d4d6a856144670d392c5f%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafabriquedelisle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafabriquedelisle.com", "logo_url": "https://lafabriquedelisle.com/wp-content/uploads/Lafabriquedelisle_logo.jpg", "cover_url": "https://lafabriquedelisle.com/wp-content/uploads/photo4jpg.jpg", "description_meta": "Votre resto \u00e0 l&#039;Isle-aux-Coudres! D\u00e9jeuner, caf\u00e9, diner sant\u00e9 \u00e0 apporter ou manger sur place, terrasse, produits du terroir et cr\u00e9ations d\u2019artisans locaux.", "site_name": "La Fabrique de l&#039;Isle"}
\ No newline at end of file
added data/enrich_cache/lafabriquegourmande.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafabriquegourmande.com", "logo_url": "https://lafabriquegourmande.com/cdn/shop/files/AUZE_AVATAR.png?crop=center&height=32&v=1773259318&width=32", "cover_url": null, "description_meta": "La Fabrique Gourmande", "site_name": "La Fabrique Gourmande"}
\ No newline at end of file
added data/enrich_cache/lafamilledulait.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafamilledulait.com", "logo_url": "https://www.lafamilledulait.com/_nuxt/icons/icon_512x512.6581b1.png", "cover_url": "https://www.datocms-assets.com/73912/1661793826-fdl_og-image.png?w=1200", "description_meta": "D\u00e9couvrez les \u00e9tapes de production du lait et des produits laitiers ainsi que leurs bienfaits sur le corps, la culture et l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafascine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafascine.com", "logo_url": "https://static.wixstatic.com/media/4e64f8_ffd41b7aafb74393b0fc81abc74f80e5.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/4e64f8_ffd41b7aafb74393b0fc81abc74f80e5.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafeebranchee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafeebranchee.com", "logo_url": "https://lafeebranchee.com/wp-content/uploads/2019/05/cropped-logo-La-Fee-branchee-2-180x180.png", "cover_url": null, "description_meta": "Cr\u00e9ation de coussins haut de gamme", "site_name": "La f\u00e9e branch\u00e9e"}
\ No newline at end of file
added data/enrich_cache/lafermeafrederique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermeafrederique.com", "logo_url": "https://www.lafermeafrederique.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/63c06b28edb4353745aa99bb/t/63e12bbe33d6fc5515c04cda/1675701182391/la-ferme-a-frederique-social-sharer.jpg?format=1500w", "description_meta": null, "site_name": "La Ferme \u00e0 Fr\u00e9d\u00e9rique"}
\ No newline at end of file
added data/enrich_cache/lafermeaufonddu2.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermeaufonddu2.ca", "logo_url": "https://static.wixstatic.com/media/61279b_6880aae9721843cfa95d46c3aab16d12%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/61279b_6880aae9721843cfa95d46c3aab16d12%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafermebasque.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermebasque.ca", "logo_url": "https://lafermebasque.ca/wp-content/uploads/2025/04/cropped-iconeCanard-180x180.png", "cover_url": null, "description_meta": "Une ferme d\u2019\u00e9levage de canard de Barbarie et de Mulard. Une entreprise familiale sp\u00e9cialis\u00e9e dans l\u2019\u00e9levage de canards gav\u00e9s et la production de produits artisanaux \u00e0 base de canard et autres produits fins.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafermedelartisan.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermedelartisan.ca", "logo_url": "https://lafermedelartisan.ca/wp-content/uploads/2024/12/cropped-logo-email-e1734725718774-180x180.png", "cover_url": "https://lafermedelartisan.ca/wp-content/uploads/2024/12/logo-header.png", "description_meta": "Ferme de l\u2019Artisan, ferme mara\u00eech\u00e8re Laurentides, offre des l\u00e9gumes locaux Laurentides frais et savoureux. D\u00e9couvrez notre panier de l\u00e9gumes \u00e9t\u00e9 Laurentides d\u00e8s maintenant!", "site_name": "La ferme de l&#039;artisan"}
\ No newline at end of file
added data/enrich_cache/lafermedenhaut.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermedenhaut.com", "logo_url": "https://www.lafermedenhaut.com/uploads/b/c08845b0-6fa7-11eb-b91d-cd2dc911d1b4/icon_180x180_ios_MzUxNz.png?width=180", "cover_url": "https://www.lafermedenhaut.com/uploads/b/c08845b0-6fa7-11eb-b91d-cd2dc911d1b4/tournesol.jpeg", "description_meta": "Ferme situ\u00e9e l&#039;Anse-st-Jean, fruits, l\u00e9gumes, animaux au p\u00e2turage, kiosque libre service !", "site_name": "La Ferme d&#039;en haut de l&#039;Anse-St-Jean"}
\ No newline at end of file
added data/enrich_cache/lafermedespossibles.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermedespossibles.ca", "logo_url": "https://lafermedespossibles.ca/favicon.ico", "cover_url": null, "description_meta": "La Ferme des Possibles est une ferme mara\u00eech\u00e8re situ\u00e9e \u00e0 St-Val\u00e8re. Nous y produisons des l\u00e9gumes biologiques diversifi\u00e9s en champ et en serre.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafermeduloup.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermeduloup.com", "logo_url": "https://lafermeduloup.com/cdn/shop/files/Layer_1.svg?crop=center&height=32&v=1744382569&width=32", "cover_url": "http://lafermeduloup.com/cdn/shop/files/TrioSmall.jpg?v=1716862357", "description_meta": "We produce exceptional maple syrups and acers, natural maple wines, unique products of the Quebec terroir and its gastronomy.", "site_name": "La ferme du loup"}
\ No newline at end of file
added data/enrich_cache/lafermemartinette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermemartinette.com", "logo_url": "https://www.lafermemartinette.com/favicon.ico", "cover_url": "https://www.lafermemartinette.com/wp-content/uploads/2020/03/feuilles-4x50ml-Martinette-copy-e1584471498613.jpg", "description_meta": "Achetez le sirop d&#039;\u00e9rable pur sup\u00e9rieur et produits d&#039;\u00e9rable du Qu\u00e9bec, Canada | Emballages-cadeaux |Recettes d&#039;\u00e9rable |Vegan |Livraison INTL", "site_name": "La Ferme Martinette"}
\ No newline at end of file
added data/enrich_cache/lafermepotagere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermepotagere.com", "logo_url": "https://lafermepotagere.com/wp-content/uploads/2023/05/cropped-ferme-potagere-favicon-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafermerenaissance.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermerenaissance.ca", "logo_url": "https://lafermerenaissance.ca/favicon.ico", "cover_url": "http://lafermerenaissance.ca/cdn/shop/files/Logo_8e6a7777-48c8-4ccd-b319-aa7d63a94dad.jpg?v=1687274056", "description_meta": "\u00c9leveur de cerfs rouges et transformateur alimentaire artisanal", "site_name": "La Ferme renaissance"}
\ No newline at end of file
added data/enrich_cache/lafermetrotteuse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermetrotteuse.com", "logo_url": "https://static.wixstatic.com/media/03b451_e7052fefe7c646b5a8ee50b7d35ea289%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/03b451_e7052fefe7c646b5a8ee50b7d35ea289%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafermettedupape.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermettedupape.com", "logo_url": "https://www.lafermettedupape.com/uploads/b/466f4270-3076-11ec-917d-83b417740721/icon_180x180_ios_Nzk2OT.png?width=180", "cover_url": "https://www.lafermettedupape.com/uploads/b/466f4270-3076-11ec-917d-83b417740721/Original%20on%20Transparent.png", "description_meta": null, "site_name": "La Fermette du Pape"}
\ No newline at end of file
added data/enrich_cache/lafermevegetale.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafermevegetale.ca", "logo_url": "https://static.wixstatic.com/media/6d8be1_d76a70da3f994ad9b3fc362b9af6e555%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/6d8be1_d76a70da3f994ad9b3fc362b9af6e555%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafilleduroy.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafilleduroy.ca", "logo_url": "https://static.wixstatic.com/media/869526_365a1fb68dae48c8b0c81492a6ac752b%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/869526_365a1fb68dae48c8b0c81492a6ac752b%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/laforgedumalt.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laforgedumalt.com", "logo_url": "https://www.laforgedumalt.com/wp-content/uploads/2021/08/cropped-favicon-180x180.png", "cover_url": "https://www.laforgedumalt.com/wp-content/uploads/2021/07/GammeProduit_1299x866f.png", "description_meta": "La Microbrasserie La Forge du Malt situ\u00e9e \u00e0 Trois-Rivi\u00e8res. Des brasseurs passionn\u00e9s qui mise sur la qualit\u00e9 et l\u2019originalit\u00e9 de ces bi\u00e8res.", "site_name": "La Forge du Malt"}
\ No newline at end of file
added data/enrich_cache/lafourmibionique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafourmibionique.com", "logo_url": "https://lafourmibionique.com/favicon.ico", "cover_url": null, "description_meta": "D\u00e9couvrez notre campagne D\u00e9couvrez notre campagne Nos gammes de produits sains pour le d\u00e9jeuner et les petits creux Grand Granola [&hellip;]", "site_name": "La Fourmi"}
\ No newline at end of file
added data/enrich_cache/lafourneedoree.fr.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafourneedoree.fr", "logo_url": "https://www.lafourneedoree.fr/wp-content/uploads/2025/10/cropped-android-chrome-512x512-1-1-180x180.png", "cover_url": "https://www.lafourneedoree.fr/wp-content/uploads/2026/07/visuel-accueil-fr-2.png", "description_meta": "Brioches, viennoiseries et pains gourmands \u00e9labor\u00e9s avec savoir\u2011faire familial depuis 1997. Qualit\u00e9, authenticit\u00e9 et recettes inspirantes pour des moments gourmands au quotidien.", "site_name": "La Fourn\u00e9e Dor\u00e9e - La saveur retrouv\u00e9e"}
\ No newline at end of file
added data/enrich_cache/lafraisonnee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafraisonnee.com", "logo_url": "http://www.lafraisonnee.com/wp-content/uploads/2015/06/favicon.png", "cover_url": "https://www.lafraisonnee.com/wp-content/uploads/2015/06/BanniereFraisonneeFruits.jpg", "description_meta": null, "site_name": "La fraisonn\u00e9e"}
\ No newline at end of file
added data/enrich_cache/lafruiteraie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafruiteraie.com", "logo_url": "https://lafruiteraie.com/wp-content/uploads/2017/03/Logo-V3-Fruiteraie-des-Gadbois-Small-200x200.jpg?x42491", "cover_url": "https://lafruiteraie.com/wp-content/uploads/2015/05/bleuetiere-verger-gadbois-rougemont-autocueillette-vieille-grange.png", "description_meta": "Bleueti\u00e8re et verger situ\u00e9 \u00e0 Rougemont en Mont\u00e9r\u00e9gie. Autocueillette de gros bleuets sucr\u00e9s et de belles pommes juteuses. Savoureux ail du Qu\u00e9bec disponible \u00e0 l&#039;ann\u00e9e, Site calme et panoramique. Venez profiter de notre belle nature en famille ou entre amis !", "site_name": "Bleueti\u00e8re et verger, La Fruiteraie des Gadbois Rougemont Autocueillette de bleu"}
\ No newline at end of file
added data/enrich_cache/lafruitieredescantons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafruitieredescantons.com", "logo_url": "https://i0.wp.com/www.lafruitieredescantons.com/wp-content/uploads/2023/05/cropped-cropped-version_simplifiee_logo_la_fruitiere_des_cantons.png?fit=180%2C180&#038;ssl=1", "cover_url": "https://www.lafruitieredescantons.com/wp-content/uploads/2023/05/cropped-logo_la_fruitiere_des_cantons.png", "description_meta": "Offrez-vous une exp\u00e9rience savoureuse en cueillant des fruits biologiques du Qu\u00e9bec. Nos m\u00e9thodes de culture durables sont en harmonie avec nos valeurs. Nous vous offrons des fruits qui rayonnent de fra\u00eecheur et de saveur.&quot;", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lafumeriedelest.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lafumeriedelest.com", "logo_url": "https://www.lafumeriedelest.com/cdn/shop/files/La_Fumerie_de_l_est.png?crop=center&height=32&v=1766165395&width=32", "cover_url": null, "description_meta": "La Fumerie de l&#39;Est", "site_name": "La Fumerie de l&#39;Est"}
\ No newline at end of file
added data/enrich_cache/lagabiere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagabiere.com", "logo_url": "https://lagabiere.com/cdn/shop/files/imagejaune.png?crop=center&height=32&v=1744038020&width=32", "cover_url": "http://lagabiere.com/cdn/shop/files/lagabiere-logo-perroquet-round-depuis-mince_f9632faf-4144-4855-b6c8-fe750b2489fd.png?crop=center&height=1200&v=1702492262&width=1200", "description_meta": "Pour boire de la bi\u00e8re avec ou sans alcool, toutes les occasions sont bonnes! Bi\u00e8res de microbrasserie go\u00fbteuses, marchandise et plus encore. Venez nous visiter!", "site_name": "Lagabi\u00e8re Brasserie Artisanale"}
\ No newline at end of file
added data/enrich_cache/lagalouine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagalouine.com", "logo_url": "https://lagalouine.com/wp-content/uploads/2024/05/cropped-icone-url-baleine-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lagarnison.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagarnison.ca", "logo_url": "https://lagarnison.ca/wp-content/themes/garnison/images/app-touch-icon.png", "cover_url": null, "description_meta": "Des bi\u00e8res de qualit\u00e9, simples et authentiques.", "site_name": "La Garnison"}
\ No newline at end of file
added data/enrich_cache/laglacerit.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laglacerit.ca", "logo_url": "https://laglacerit.ca/favicon.svg", "cover_url": "https://laglacerit.ca/images/og-banner.png", "description_meta": "La Glace-Rit, c\u2019est plus de 20 ans d\u2019expertise en plaisirs glac\u00e9s et en g\u00e2teries de toutes sortes. Nous sommes fiers de pouvoir compter sur des ingr\u00e9dients de haute qualit\u00e9 et des produits mara\u00eechers frais et locaux.", "site_name": "La Glace-Rit"}
\ No newline at end of file
added data/enrich_cache/lagoonseafood.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagoonseafood.com", "logo_url": "https://lagoonseafood.com/wp-content/uploads/2024/03/lagoon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lagoudrelle.order-online.ai.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagoudrelle.order-online.ai", "logo_url": "https://lagoudrelle.order-online.ai/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lagouttedor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagouttedor.com", "logo_url": "https://www.lagouttedor.com/cdn/shop/files/logo_vertical_noir_9be2decb-3ea8-4294-855d-2a866036deae_32x32.png?v=1678826030", "cover_url": "http://www.lagouttedor.com/cdn/shop/files/La_Goutte_d_Or_-_logo.jpg?v=1675728345", "description_meta": "La Goutte d&#39;Or Canada", "site_name": "La Goutte d&#39;Or Canada"}
\ No newline at end of file
added data/enrich_cache/lagrandegourmandise.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagrandegourmandise.org", "logo_url": "https://lagrandegourmandise.org/favicon.ico", "cover_url": null, "description_meta": "Retrouvez la liste de nos indispensables partenaires sans qui le festival ne pourrait exister", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lagrangepardue.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagrangepardue.com", "logo_url": "https://lagrangepardue.com/wp-content/uploads/2019/05/cropped-favicon-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lagrenade.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lagrenade.ca", "logo_url": "https://isteam.wsimg.com/ip/e0c30ec5-ad0e-4481-92a3-6b99195dc8d9/Logo-LAG-FondBlanc.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/e0c30ec5-ad0e-4481-92a3-6b99195dc8d9/B2511C32-0FB6-40B5-B2DF-45620908CDF1.jpeg", "description_meta": "Stylos et plumes exclusif fait de fusion de bois d\u2019\u00e9rable et de r\u00e9sine . Chaque mod\u00e8le est fait \u00e0 la main donc tous unique. Fabriquer au Qu\u00e9bec.", "site_name": "Lagrenade Creations"}
\ No newline at end of file
added data/enrich_cache/lahaltedescrinques.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lahaltedescrinques.com", "logo_url": "https://www.lahaltedescrinques.com/uploads/b/ac11b230-addc-11f0-88e2-cdda1ffa3943/icon_180x180_ios_OTA1MD.png?width=180", "cover_url": null, "description_meta": null, "site_name": "La Halte Des Crinqu\u00e9s"}
\ No newline at end of file
added data/enrich_cache/laitcharbonneau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laitcharbonneau.ca", "logo_url": "https://laitcharbonneau.ca/wp-content/themes/lait-charbonneau/src/images/favicons/apple-touch-icon.png", "cover_url": "https://laitcharbonneau.ca/wp-content/themes/lait-charbonneau/src/images/favicons/opengraph.png", "description_meta": "De la ferme \u00e0 la table", "site_name": null}
\ No newline at end of file
added data/enrich_cache/laitdanesse.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laitdanesse.ca", "logo_url": "https://laitdanesse.ca/wp-content/uploads/2021/02/cropped-favicon-les-douceurs-de-mulane-180x180.png", "cover_url": "https://laitdanesse.ca/wp-content/uploads/2026/07/coeurblanc.png", "description_meta": "Les Douceurs de Mul\u00e2ne sp\u00e9cialis\u00e9s dans la fabrication de produits artisanaux au lait d\u2019\u00e2nesse \u00e0 Albanel au Saguenay- Lac-Saint-Jean.", "site_name": "Les douceurs de Mul\u00e2ne"}
\ No newline at end of file
added data/enrich_cache/laiteriedecoaticook.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laiteriedecoaticook.com", "logo_url": "https://laiteriedecoaticook.com/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": "D&eacute;couvrez la Laiterie de Coaticook, fi&egrave;re fabricante qu&eacute;b&eacute;coise de cr&egrave;me glac&eacute;e et de fromages sans substances laiti&egrave;res modifi&eacute;es. Savourez le pur plaisir!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/laiteriedelabaie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laiteriedelabaie.com", "logo_url": "https://laiteriedelabaie.com/src/images/apple-touch-icon.png", "cover_url": null, "description_meta": "Votre laiterie \u00c3\u00a0 La Baie. Des produits de qualit\u00c3\u00a9s et savoureux au Saguenay-Lac-Saint-Jean.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/laiterielaroche.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laiterielaroche.ca", "logo_url": "https://laiterielaroche.ca/sites/default/themes/laiterielaroche_v1/manager-logo.png", "cover_url": "https://laiterielaroche.ca/sites/default/themes/laiterielaroche_v1/og-image.png", "description_meta": "Laiterie Laroche offre du lait artisanal et d&#039;autres produits laitiers et de la ferme, le tout en respectant les animaux et l&#039;environnement. D\u00e9couvrez-la!", "site_name": "https://laiterielaroche.ca/fr/laiterie-laroche"}
\ No newline at end of file
added data/enrich_cache/laiterieoutaouais.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laiterieoutaouais.ca", "logo_url": "https://laiterieoutaouais.ca/wp-content/uploads/2022/09/Laiterie_Favicon_01.png", "cover_url": "https://laiterieoutaouais.ca/wp-content/uploads/2022/10/facebook.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/laitgrandpre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laitgrandpre.com", "logo_url": "https://www.laitgrandpre.com/wp-content/uploads/cropped-favicon-gp-180x180.png", "cover_url": "https://www.laitgrandpre.com/wp-content/uploads/lait-grand-pre-social.jpg", "description_meta": "Le lait Grand Pr\u00e9 a toutes les qualit\u00e9s d\u2019un lait\u2026 parce que c\u2019est du lait! M\u00eame vache, m\u00eame lait, m\u00eame bon go\u00fbt.", "site_name": "Le lait Grand Pr\u00e9"}
\ No newline at end of file
added data/enrich_cache/laitnutrinor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laitnutrinor.com", "logo_url": "https://laitnutrinor.com/app/uploads/2021/02/cropped-android-chrome-256x256-1-180x180.png", "cover_url": "https://laitnutrinor.com/app/uploads/2022/11/og-preview.jpg", "description_meta": "Choisir un produit laitier Nutrinor, c\u2019est choisir une coop\u00e9rative \u00e0 \u00e9chelle humaine qui valorise le respect des autres et de la terre. Tout ce qui entre dans la composition de nos produits laitiers est issu de notre terroir unique et prot\u00e9g\u00e9 g\u00e9ographiquement de par sa situation au nord du 48e parall\u00e8le.", "site_name": "Produits Laitiers Nutrinor"}
\ No newline at end of file
added data/enrich_cache/laknowltonco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laknowltonco.com", "logo_url": "https://laknowltonco.com/wp-content/uploads/2021/04/favicon.ico", "cover_url": null, "description_meta": "Bi\u00e8res artisanales produites au c\u0153ur de Knowlton, au Qu\u00e9bec. Notre microbrasserie vous offre des bi\u00e8res accessibles et qui plaisent \u00e0 tous.", "site_name": "La Knowlton Co."}
\ No newline at end of file
added data/enrich_cache/lalande.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lalande.ca", "logo_url": "https://www.lalande.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5ed69c0d0ab8c57a6adbd0a8/t/5ef2508bfae42178dcf175e6/1592938684326/logo-lalande-web.png?format=1500w", "description_meta": "Salle de r\u00e9ception pour mariages, \u00e9v\u00e9nements corporatifs et familiaux. Cabane \u00e0 sucre.", "site_name": "R\u00e9ceptions Lalande"}
\ No newline at end of file
added data/enrich_cache/lalegumerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lalegumerie.com", "logo_url": "https://static.wixstatic.com/media/363812_4c646bb8906747fba2033b79bde0fc65%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/363812_4c646bb8906747fba2033b79bde0fc65%7Emv2.png", "cover_url": null, "description_meta": "Nos l\u00e9gumes frais coup\u00e9s de qualit\u00e9 sup\u00e9rieure sont destin\u00e9s au march\u00e9 HRI (H\u00f4tellerie \u2022 Restauration \u2022 Institutions). Ils sont pr\u00e9par\u00e9s chaque jour, selon vos besoins, pour plus de fra\u00eecheur!", "site_name": "lalegumerie"}
\ No newline at end of file
added data/enrich_cache/lalibellulerestoconvivial.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lalibellulerestoconvivial.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "La Libellule resto c"}
\ No newline at end of file
added data/enrich_cache/lalichee.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lalichee.co", "logo_url": "https://lalichee.co/cdn/shop/files/Artboard_10_2x_8bf31193-0dc4-48aa-98a8-12f35024ec37_32x32.png?v=1696271758", "cover_url": "http://lalichee.co/cdn/shop/files/Siteweb_1200x1200.png?v=1697556933", "description_meta": "La Lich\u00e9e, ce n&#39;est pas que des produits gourmands. On savoure chaque instant avec d\u00e9lice et sans retenue. Ici, c&#39;est une invitation \u00e0 vivre pleinement et sans regret.", "site_name": "La Lich\u00e9e"}
\ No newline at end of file
added data/enrich_cache/lallemand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lallemand.com", "logo_url": "https://lallemand.com/favicon.ico", "cover_url": "https://admin-staging.lallemand.com/wp-content/uploads/2023/05/logo-lallemand-400x400-1.png", "description_meta": "Lallemand is a global leader in the development, production and marketing of yeast, bacteria and specialty ingredients. Discover us!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/laluciole.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laluciole.ca", "logo_url": "https://laluciole.ca/owebo-votresite/sites/default/files/images/Gte_La_Luciole_-_laluciole.ca_-_L-2_0.jpg", "cover_url": "https://laluciole.ca/sites/default/files/images/Gte_La_Luciole_-_laluciole.ca_-_JD-12.jpg", "description_meta": "Un s\u00e9jour magique au G\u00eete la Luciole \u00e0 quelques pas de la plage, au c\u0153ur de Charlevoix. Repos, tranquillit\u00e9, randonn\u00e9e et autres activit\u00e9s \u00e0 proximit\u00e9 .", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lalumine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lalumine.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "lalumine"}
\ No newline at end of file
added data/enrich_cache/lamagiedelapomme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamagiedelapomme.com", "logo_url": "https://www.lamagiedelapomme.com/wp-content/uploads/2021/02/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "La magie de la pomme | Venez visiter notre verger \u00e0 Saint-Eustache ! C\u2019est l\u2019activit\u00e9 parfaite \u00e0 faire en famille", "site_name": "La magie de la pomme"}
\ No newline at end of file
added data/enrich_cache/lamaisonbisson.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisonbisson.com", "logo_url": "https://lamaisonbisson.com/favicon.ico", "cover_url": null, "description_meta": "Boucherie sp\u00c3\u00a9cialis\u00c3\u00a9e et \u00c3\u00a9picerie fine situ\u00c3\u00a9e en Outaouais, la Maison Bisson est un leader dans le domaine agro-alimentaire et biologique.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamaisonbz.blogspot.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisonbz.blogspot.com", "logo_url": "https://lamaisonbz.blogspot.com/favicon.ico", "cover_url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK70OZcmM2K53LgM_suqKANXfClyfgouG_t9fF_gtBkgozZe5zF74xu_WktnwsHq100pgXcQaxe1f183Q3XHN0GqpBMe3e-XlQdd6_5sAmXM80yERJBsjfgSBHNrz6wOgXh0yEwNzXVUqBqSGiYZljI1UPwDImbDMiXo3z91zVprTzKaLGpJuJ_t8zBoUe/w1200-h630-p-k-no-nu/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.png", "description_meta": "traiteur restaurant buffet banquet mariage lunch canap\u00e9s Chaudi\u00e8re-Appalaches Lotbini\u00e8re St-Narcisse-de-Beaurivage souper local d\u00eener qu\u00e9bec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamaisoncrowin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisoncrowin.com", "logo_url": "https://static.wixstatic.com/media/964d0a_4da965b1198e42a78c22858bc4df39ec%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/964d0a_4da965b1198e42a78c22858bc4df39ec%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamaisondebibi.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisondebibi.com", "logo_url": "https://www.lamaisondebibi.com/image/catalog/fa.jpg", "cover_url": null, "description_meta": "Attrait touristique ouvert \u00e0 l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamaisondematante.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisondematante.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/getty/1382279047", "description_meta": null, "site_name": "La Maison de ma Tante"}
\ No newline at end of file
added data/enrich_cache/lamaisondubleuet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisondubleuet.com", "logo_url": "https://lamaisondubleuet.com/cdn/shop/files/Favicon-152x152px_a0b254f3-7d3f-4b10-8914-08330fde84f2_152x.png?v=1765382727", "cover_url": "http://lamaisondubleuet.com/cdn/shop/files/Image-ParatgeReseauSociaux-Shopify.jpg?v=1756299464", "description_meta": "Discover our selection of wild blueberry products from Lac-Saint-Jean: jams, chocolates, teas, and more. Proudly made in Saint-F\u00e9licien.", "site_name": "La Maison du Bleuet"}
\ No newline at end of file
added data/enrich_cache/lamaisonmathilde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisonmathilde.com", "logo_url": "https://lamaisonmathilde.com/wp-content/uploads/2020/07/cropped-Mathilde-1-180x180.png", "cover_url": null, "description_meta": "Impr\u00e9gn\u00e9e de saveurs gasp\u00e9siennes, La Maison Mathilde vous accueille dans un cadre \u00e9l\u00e9gant et chaleureux afin de partager un moment de bonheur et de r\u00e9confort.", "site_name": "La Maison Mathilde"}
\ No newline at end of file
added data/enrich_cache/lamaisonrochefort.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisonrochefort.com", "logo_url": "https://lamaisonrochefort.com/ressources/images/favicon/light/android-icon-192x192.png", "cover_url": "https://lamaisonrochefort.com/uploads/og-image.png", "description_meta": "G\u00eete la Maison Rochefort. Chez nous, on vous accueille pour votre s\u00e9jour dans un confort reposant. Vivez le patrimoine qu\u00e9b\u00e9cois.", "site_name": "G\u00eete la Maison Rochefort"}
\ No newline at end of file
added data/enrich_cache/lamaisonrupicole.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamaisonrupicole.ca", "logo_url": "https://www.lamaisonrupicole.ca/favicon.ico", "cover_url": "https://www.lamaisonrupicole.ca/https&#x3A;&#x2F;&#x2F;primary.jwwb.nl&#x2F;public&#x2F;x&#x2F;n&#x2F;a&#x2F;temp-mtkippkkwbmjhbsscohu&#x2F;2yio32&#x2F;70739075_526265471280032_7965218705304977408_o-2.jpg", "description_meta": "\u00c9rabli\u00e8re rupicole, producteurs d&#039;acer, boisson alcoolis\u00e9es d&#039;\u00e9rable Nival et Nixal", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamanchure.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamanchure.com", "logo_url": "https://lamanchure.com/favicon.ico", "cover_url": null, "description_meta": "Couteaux de Cuisine et Accessoires de Coupe fabriqu\u00e9s artisanalement au Qu\u00e9bec - Possibilit\u00e9 de commandes sur mesure - Produits originaux de qualit\u00e9 professionnelle", "site_name": "Boutique LaManchure"}
\ No newline at end of file
added data/enrich_cache/lamanse.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamanse.ca", "logo_url": "https://static.wixstatic.com/media/cb4aea_b745a5015bcb4948acefaed5ca5c87bc%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/cb4aea_b745a5015bcb4948acefaed5ca5c87bc%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/cb4aea_c58b25f394624894a7be895822bc61e5~mv2.jpg/v1/fill/w_2500,h_1736,al_c/cb4aea_c58b25f394624894a7be895822bc61e5~mv2.jpg", "description_meta": "Petit vignoble en pleine expansion situe\u0301 dans les Cantons de l\u2019Est sur un site enchanteur. La Manse", "site_name": "Vignoble La Manse"}
\ No newline at end of file
added data/enrich_cache/lamareaudiable.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamareaudiable.ca", "logo_url": "https://lamareaudiable.ca/wp-content/uploads/2016/01/logo.png", "cover_url": "https://s0.wp.com/i/blank.jpg", "description_meta": "Laissez-vous tenter", "site_name": "La Mare au Diable"}
\ No newline at end of file
added data/enrich_cache/lamarinarestobar.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamarinarestobar.com", "logo_url": "https://static.wixstatic.com/media/aa9564_6659fd2d146945aab815f02bd0e168df%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/aa9564_6659fd2d146945aab815f02bd0e168df%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/aa9564_ae599fe9451c4e5abdfbbe8e37134395~mv2.jpg/v1/fill/w_2500,h_1666,al_c/aa9564_ae599fe9451c4e5abdfbbe8e37134395~mv2.jpg", "description_meta": "\u200bLa Marina Resto-Bar, la terrasse sur le fleuve \u00e0 Saint-Jean-Port-Joli. Cocktails raffin\u00e9s, vins et cuisine fra\u00eeche qui go\u00fbte l\u2019\u00e9t\u00e9 dans une ambiance estivale o\u00f9 l\u2019on savoure les vraies vacances.\n\nTerrasse vitr\u00e9e coll\u00e9e au fleuve, vue sur les voiliers de la marina, couchers de soleil et service courtois. Ouvert 7 jours sur 7, de midi \u00e0 21 h, pour l\u2019ap\u00e9ro, le d\u00eener ou le souper.", "site_name": "La Marina Resto-Bar"}
\ No newline at end of file
added data/enrich_cache/lameric.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lameric.ca", "logo_url": "https://www.lameric.ca/favicon.ico", "cover_url": "https://www.lameric.ca/uploads/1/2/5/6/125632431/editor/bol-fruit-002.jpg?1602865824", "description_meta": "LamEric Design est une compagnie 100 % qu\u00e9b\u00e9coise sp\u00e9cialis\u00e9e dans la fabrication de produits en b\u00e9ton.", "site_name": "LamEric Design"}
\ No newline at end of file
added data/enrich_cache/lamexicoise.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamexicoise.ca", "logo_url": "https://lamexicoise.ca/favicon.ico", "cover_url": null, "description_meta": "La culture Mexicaine jusqu&#039;au Qu\u00e9bec", "site_name": "La Mexicoise"}
\ No newline at end of file
added data/enrich_cache/lamiebretonne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamiebretonne.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5490ca48e4b0549c00f13473/1444097902172-SK96N3R3TN3XPBZDBY18/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5490ca48e4b0549c00f13473/t/562066ece4b0a369c493faea/1444964081617/LOGO-BOULANGERIE-ARTISANALE-COWANSVILLE_B.png?format=1500w", "description_meta": "Boulangerie p\u00e2tisserie artisanale de Cowansville, Qu\u00e9bec - Pains au levain naturel ou pas!", "site_name": "Boulangerie et p\u00e2tisserie artisanale La Mie Bretonne - Pains au levain ou pas!"}
\ No newline at end of file
added data/enrich_cache/lamielleriedesophie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamielleriedesophie.com", "logo_url": "https://www.lamielleriedesophie.com/wp-content/uploads/2020/04/cropped-Logo-la-Miellerie-de-Sophie-e1586893517188-2-180x180.png", "cover_url": null, "description_meta": "La Miellerie de Sophie, c&#039;est du miel pur \u00e0 100% offert en Beauce. Apprenez-en plus sur l&#039;entreprise et d\u00e9couvrez nos diff\u00e9rents produits.", "site_name": "La Miellerie de Sophie"}
\ No newline at end of file
added data/enrich_cache/lamilanaise.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamilanaise.com", "logo_url": "https://lamilanaise.com/wp-content/uploads/2024/03/cropped-LOGO_Lamilanaise-1-180x180.png", "cover_url": "https://lamilanaise.com/wp-content/uploads/2024/03/ogimg.jpg", "description_meta": "La Milanaise est une entreprise qu\u00e9b\u00e9coise qui agit \u00e0 titre de transformateur c\u00e9r\u00e9alier biologique depuis maintenant plus de 40 ans.", "site_name": "La Milanaise"}
\ No newline at end of file
added data/enrich_cache/laminoteriedesanciens.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laminoteriedesanciens.com", "logo_url": "http://www.laminoteriedesanciens.com/favicon.jpg", "cover_url": "http://www.laminoteriedesanciens.com/images/logo_fb.jpg", "description_meta": "Haute-Gasp\u00e9sie, produits biologiques, sans gluten, producteurs locaux, grains, grain, farine, farines, huile, huiles, gruau, meule sur pierre, Ecocert Canada, certifi\u00e9 biologique, prix \u00e9quitable, HACCP (GFSI), Pure Gasp\u00e9sie, en vrac, moulues sur pierre, press\u00e9es \u00e0 froid, Gasp\u00e9sie, ACMC, Association canadienne de la maladie c\u0153liaque, Gasp\u00e9sie Gourmande, Kasher, Kosher international", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamirabliere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamirabliere.com", "logo_url": "https://lamirabliere.com/cdn/shop/t/2/assets/favicon.png?v=174682337252108104311570634555", "cover_url": "https://cdn.shopify.com/s/files/1/0266/8527/6244/files/Logo_Mirabliere_187X50_22ce8fda-9c4a-44a3-9665-8a83f428268d.jpg?height=628&pad_color=fff&v=1613685409&width=1200", "description_meta": "La Mirabli\u00e8re est une entreprise familiale qui confectionne des produits d&#39;\u00e9rable depuis cinq g\u00e9n\u00e9rations. Procurez-vous du sirop et des produits d&#39;\u00e9rable biologique d&#39;exception, incluant beurre, tire, gel\u00e9e, caramel et plus encore, puis profitez-en pour faire une randonn\u00e9e paisible sur le site de l&#39;\u00e9rabli\u00e8re.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamorin.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamorin.ca", "logo_url": "https://static.wixstatic.com/media/d75fcf_beb96303eb9641aba6c6af246ecc2291%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d75fcf_beb96303eb9641aba6c6af246ecc2291%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamosaiquefleurie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamosaiquefleurie.ca", "logo_url": "https://lamosaiquefleurie.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lamoutonniere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lamoutonniere.com", "logo_url": "https://lamoutonniere.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lanaudiere.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lanaudiere.ca", "logo_url": "https://lanaudiere.ca/apple-touch-icon.png?v=3", "cover_url": "https://lanaudiere.ca/media/1384/destinations_urbaines_terrebonne_1080x720-04.jpg", "description_meta": "Portail officiel du tourisme de Lanaudi&#232;re. &#201;t&#233; comme hiver, Lanaudi&#232;re offre une multitude d&#39;activit&#233;s en plein air qui comblera toute la famille.", "site_name": "Tourisme Lanaudi&#232;re"}
\ No newline at end of file
added data/enrich_cache/lanoixderable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lanoixderable.com", "logo_url": "https://www.lanoixderable.com/favicon.ico", "cover_url": null, "description_meta": "D\u00e9couvrez nos pacanes \u00e0 l\u2019\u00e9rable fabriqu\u00e9es au Qu\u00e9bec. Gourmandes, raffin\u00e9es et parfaites \u00e0 offrir ou \u00e0 savourer.", "site_name": "La Noix d&#039;\u00c9rable"}
\ No newline at end of file
added data/enrich_cache/lanticerable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lanticerable.com", "logo_url": "https://lanticerable.com/wp-content/uploads/2026/04/cropped-Group-31-180x180.png", "cover_url": "https://lanticerable.com/wp-content/uploads/2026/04/home-hero-1-scaled.jpg", "description_meta": "A 100% Canadian company with deep roots in Quebec, Lantic Maple is the world\u2019s largest supplier of maple syrup.", "site_name": "Lantic Maple"}
\ No newline at end of file
added data/enrich_cache/lantiquairedesaintirenee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lantiquairedesaintirenee.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/e6b072_805bfc2e8c8e42a6a7af51defdb6a4c7~mv2.jpg/v1/fill/w_2500,h_1666,al_c/e6b072_805bfc2e8c8e42a6a7af51defdb6a4c7~mv2.jpg", "description_meta": "Achat et vente d", "site_name": "L\u2019antiquaire de Saint-Ir\u00e9n\u00e9e"}
\ No newline at end of file
added data/enrich_cache/lanvert.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lanvert.ca", "logo_url": "https://static.wixstatic.com/media/e2b7ff_f0bd3b71e0a441e38b483c1a64f0a50e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/e2b7ff_f0bd3b71e0a441e38b483c1a64f0a50e%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/laparebijoux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laparebijoux.ca", "logo_url": "https://www.laparebijoux.ca/favicon.ico", "cover_url": "https://www.laparebijoux.ca/https&#x3A;&#x2F;&#x2F;primary.jwwb.nl&#x2F;public&#x2F;z&#x2F;o&#x2F;i&#x2F;temp-hofepwjilbwtdmwrsqxw&#x2F;mon-ami-l-arbre-high-apfn7c.jpg&#x3F;enable-io&#x3D;true&amp;enable&#x3D;upscale&amp;fit&#x3D;bounds&amp;width&#x3D;1200", "description_meta": "D\u00e9couvrez Lapar\u00e9 bijoux : cr\u00e9ations fantaisistes en verre fusionn\u00e9, faites \u00e0 la main au Qu\u00e9bec. Bijoux, \u0153uvres d&#039;art et pi\u00e8ces uniques color\u00e9es et joyeuses.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lapaysannerie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapaysannerie.ca", "logo_url": "https://lapaysannerie.ca/wp-content/uploads/2020/09/cropped-icone-plein-180x180.png", "cover_url": "https://lapaysannerie.ca/wp-content/uploads/2020/09/ferme-paysannerie.jpg", "description_meta": "Produits de qualit\u00e9 et environnement sain. \u00c0 la Paysannerie, aucun agent chimique n&#039;est utilis\u00e9 et les volets de production respectent leur cycle naturel.", "site_name": "La Paysannerie"}
\ No newline at end of file
added data/enrich_cache/lapecheresse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapecheresse.com", "logo_url": "https://lapecheresse.com/wp-content/uploads/2021/07/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "La microbrasserie La P\u00e9cheresse est renomm\u00e9e mondialement et toutes nos bi\u00e8res sont brass\u00e9es chez nous \u00e0 La Tuque, en Mauricie.", "site_name": "Microbrasserie La P\u00e9cheresse"}
\ No newline at end of file
added data/enrich_cache/lapiazzetta.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapiazzetta.ca", "logo_url": "https://lapiazzetta.ca/wp-content/themes/imedia/assets/img/favicon/apple-touch-icon-152x152.png", "cover_url": "https://lapiazzetta.ca/wp-content/uploads/2022/05/piazzetta-homepage-2.jpg", "description_meta": "Avec plus de 19 restaurants, La Piazzetta est le restaurant italien &amp; m\u00e9diterran\u00e9en par excellence au Qu\u00e9bec. Commandez en ligne !", "site_name": "Piazzetta"}
\ No newline at end of file
added data/enrich_cache/lapimenterie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapimenterie.com", "logo_url": "https://lapimenterie.com/cdn/shop/files/CarousselLa_Pimenterie_-_Logo_-_Noir_-_Fr_Eng.png?crop=center&height=32&v=1752857907&width=32", "cover_url": "http://lapimenterie.com/cdn/shop/files/CarousselLa_Pimenterie_-_Logo_-_Noir_-_Fr_Eng.png?v=1752857907", "description_meta": "At La Pimenterie, each of our hot sauces tells a story of a place, a culture, and also of Julien, our creator, and a team united by the same passion: to craft, in every sauce, the perfect balance between flavor and heat.", "site_name": "La Pimenterie"}
\ No newline at end of file
added data/enrich_cache/lapincee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapincee.ca", "logo_url": "https://www.lapincee.ca/cdn/shop/files/Favicon_32x32.jpg?v=1614737745", "cover_url": "https://cdn.shopify.com/s/files/1/0277/4066/8003/files/Lapincee_billboard_e18e42a6-a872-45c1-a611-b7d23cb9aca5.jpg?v=1631117609", "description_meta": "La pinc\u00e9e offer a collection of fresh and original spices blends developed instinctively with the expertise of Catherine de Gongre (chef) and Fran\u00e7ois Maisonneuve (designer and photographer). A creative collection whose raw materials of first quality are always honored in each jars.", "site_name": "La pinc\u00e9e"}
\ No newline at end of file
added data/enrich_cache/lapintarade.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapintarade.com", "logo_url": "https://www.lapintarade.com/wp-content/uploads/2023/04/cropped-la-pintarade-logo-noir1-180x180.png", "cover_url": null, "description_meta": "Just another WordPress site", "site_name": "La Pintarade"}
\ No newline at end of file
added data/enrich_cache/lapinte.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapinte.ca", "logo_url": "https://lapinte.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "La Pinte"}
\ No newline at end of file
added data/enrich_cache/lapizzashop.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapizzashop.ca", "logo_url": "https://lapizzashop.ca/cdn/shop/files/Initales_PS_en_vert_vibrant.png?crop=center&height=32&v=1774353792&width=32", "cover_url": "http://lapizzashop.ca/cdn/shop/files/ChatGPT_Image_24_mars_2026_07_22_38.png?v=1774994735", "description_meta": "TOUT pour la pizza au Qu\u00e9bec: fours \u00e0 pizza de feu, \u00e9quipements, accessoires, ingr\u00e9dients d\u2019importation, conseils, recettes et alouette!", "site_name": "Lapizzashop.ca"}
\ No newline at end of file
added data/enrich_cache/laplage.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laplage.ca", "logo_url": "https://static.tildacdn.one/tild3661-3339-4631-b363-656365633634/LOGO-LA-PLAGE-MOTEL_.png", "cover_url": "https://thb.tildacdn.one/tild6565-6663-4630-b464-363461633137/-/resize/504x/Site.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lapommalbonne.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapommalbonne.ca", "logo_url": "https://www.lapommalbonne.ca/favicon-512x512.png", "cover_url": null, "description_meta": "Le Verger La Pommalbonne \u00e0 Compton est un domaine familial ouvert \u00e0 tous les amateurs d\u2019agrotourisme. Visite gratuite de fermette, autocueillete et plus encore\u00a0!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lapommeetlabete.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapommeetlabete.ca", "logo_url": "https://lapommeetlabete.ca/assets/icon/android-chrome-512x512.png", "cover_url": "https://lapommeetlabete.ca/media/site/e43523e22f-1768925631/og-pomme-1200x630-crop.png", "description_meta": "La pomme et la b&ecirc;te est un verger et cidrerie ludique &agrave; quelques minutes des ponts. Payez votre auto-cueillette au poids, chiens bienvenus.", "site_name": "La pomme et la b&ecirc;te"}
\ No newline at end of file
added data/enrich_cache/laportedacote.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laportedacote.org", "logo_url": "https://static.wixstatic.com/media/eb1e3a_8d4476c815f3433b9ef13790b3c2e04d%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/eb1e3a_8d4476c815f3433b9ef13790b3c2e04d%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lapprentie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lapprentie.ca", "logo_url": "https://i0.wp.com/www.lapprentie.ca/wp-content/uploads/2022/03/Logo_Ferme-Lapprentie.jpg?fit=180%2C180&#038;ssl=1", "cover_url": "https://www.lapprentie.ca/wp-content/uploads/2026/01/banquet-40e-1024x683.jpg", "description_meta": "Table Champ\u00eatre 2026 Une soir\u00e9e inoubliable \u00e0 la ferme &#8211; Venez partager un repas champ\u00eatre au c\u0153ur de la Ferme L&rsquo;Apprentie \u2014 produits locaux, animaux,&hellip;", "site_name": "Ferme L&#039;Apprentie"}
\ No newline at end of file
added data/enrich_cache/laptiteviree.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laptiteviree.com", "logo_url": "https://laptiteviree.com/wp-content/uploads/2024/03/cropped-Logo-1-e1710171437959-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/laquiins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laquiins.com", "logo_url": "https://laquiins.com/cdn/shop/files/LaQuiins_Logo__1800_x_1800_px_-4_Medium-removebg-preview.png?crop=center&height=32&v=1728575337&width=32", "cover_url": "http://laquiins.com/cdn/shop/files/LaQuiins_Logo_1800_x_1800_px_-6.png?v=1758419838", "description_meta": "Shop non-toxic candles and natural skincare handmade in Quebec by LaQuiins. Discover clean home fragrances, soy wax candles, room sprays, whipped body butters, lip balms, and artisan self-care. Wellness gifts made for women who value beauty, softness, and self-love. Ethical, elegant, and made to delight every sense.", "site_name": "LaQuiins"}
\ No newline at end of file
added data/enrich_cache/larecoltedelarouge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "larecoltedelarouge.com", "logo_url": "http://www.larecoltedelarouge.com/favicon.ico", "cover_url": "http://www.larecoltedelarouge.com/uploads/7/7/8/6/77861932/logo-facebook-bio.jpg", "description_meta": "La R\u00e9colte de la Rouge est une ferme familiale de petits fruits et de l\u00e9gumes biologiques, situ\u00e9e \u00e0 10 minutes de Mont-Tremblant et \u00e0 1h30 de Montr\u00e9al, dans le cadre enchanteur de la vall\u00e9e de...", "site_name": "La r&eacute;colte de la rouge"}
\ No newline at end of file
added data/enrich_cache/laremontee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laremontee.com", "logo_url": "https://laremontee.com/favicon.ico", "cover_url": "http://www.laremontee.com/img/image-fb.jpg", "description_meta": "Que ce soit en amoureux, en famille, entre amis ou pour affaires, La Remont\u00e9e offre une vaste gamme de chambres et d&#039;appartements avec vues sur le fleuve qui sauront accommoder tous les types de client\u00e8les.", "site_name": "La Remont\u00e9e, Appartements & H\u00f4tel"}
\ No newline at end of file
added data/enrich_cache/laromedeschamps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laromedeschamps.com", "logo_url": "https://static.wixstatic.com/media/d8cace_c904db85994647c0b53e5b20b3567363%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d8cace_c904db85994647c0b53e5b20b3567363%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/d8cace_d7b90ee73650402f97f02e8e48c25136%7Emv2_d_2134_1566_s_2.png/v1/fit/w_2500,h_1330,al_c/d8cace_d7b90ee73650402f97f02e8e48c25136%7Emv2_d_2134_1566_s_2.png", "description_meta": "Huile de tournesol biologique &amp; farines biologiques. \nL", "site_name": "Ar\u00f4me des champs"}
\ No newline at end of file
added data/enrich_cache/larose.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "larose.ca", "logo_url": "https://larose.ca/wp-content/uploads/2021/10/cropped-larose-favicon-2-180x180.png", "cover_url": "https://larose.ca/wp-content/uploads/elementor/thumbs/contact_icon-intro-1-poa44lr9w9t1m9a986bxeg0sjrijykjifvejm5v0fi.png", "description_meta": "Nous suivons depuis 70 ans les gestionnaires dans l&#039;implantation de produits nettoyage industriel. Choisissez Larose et Fils, nettoyez mieux!", "site_name": "Larose &amp; Fils"}
\ No newline at end of file
added data/enrich_cache/lartiss.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lartiss.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lasaucemtl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lasaucemtl.com", "logo_url": "https://sweet-potato.shop/img/ico-m77.webp", "cover_url": "https://sweet-potato.shop/img/king-slot-gacor.webp", "description_meta": "MANSION77 merupakan situs slot gacor Thailand terbaru dengan daftar via link Arizonaleechtherapy, RTP tinggi, server stabil, game lengkap, serta peluang gampang cuan hari ini.", "site_name": "Mansion77"}
\ No newline at end of file
added data/enrich_cache/lasecousse.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lasecousse.ca", "logo_url": "https://lasecousse.ca/favicon.ico", "cover_url": "https://lasecousse.ca/wp-content/uploads/2023/06/social-sharing-image.png", "description_meta": "D\u00e9couvrez La Secousse, une auberge \u00e9co-responsable \u00e0 La Malbaie, offrant une ambiance chaleureuse et des vues imprenables sur le fleuve. T&#039;es \u00e0 bonne place!", "site_name": "La Secousse - Auberge, Resto-Pub, \u00c9v\u00e9nements - La Malbaie"}
\ No newline at end of file
added data/enrich_cache/laseigneuriedesaulnaies.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laseigneuriedesaulnaies.qc.ca", "logo_url": "https://www.laseigneuriedesaulnaies.qc.ca/wp-content/uploads/2021/02/cropped-favicon-seigneurie-180x180.png", "cover_url": "https://www.laseigneuriedesaulnaies.qc.ca/wp-content/uploads/2025/05/Moulin-automne_paysage-scaled.jpg", "description_meta": "Explorez la Seigneurie des Aulnaies, attrait touristique incontournable en Chaudi\u00e8re-Appalaches. Plongez au coeur du patrimoine qu\u00e9becois !", "site_name": "La seigneurie des Aulnaies"}
\ No newline at end of file
added data/enrich_cache/lashop.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lashop.co", "logo_url": "http://lashop.co/favicon.png", "cover_url": null, "description_meta": "Venez d\u00e9guster un de nos fameux grilled cheese accompagn\u00e9 d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lashopalegumes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lashopalegumes.ca", "logo_url": "https://lashopalegumes.ca/cdn/shop/files/Copie_de_L_Shopalegumes_4C_9c9970cd-1e41-4e89-87d2-d44d6e926c18.jpg?crop=center&height=48&v=1617827746&width=48", "cover_url": "http://lashopalegumes.ca/cdn/shop/files/tunnel_3_crop_c4ce92a5-0614-4623-836f-48a7197589ad.jpg?v=1652794375", "description_meta": "Panier de l\u00e9gumes frais et bio distribu\u00e9 \u00e0 St-Esprit, Rawdon, Mascouche, Pointe-aux-trembles et Ahuntsic. Formule mini-march\u00e9 ultra flexible pour votre plaisir!", "site_name": "La Shop \u00e0 L\u00e9gumes"}
\ No newline at end of file
added data/enrich_cache/lasittelle.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lasittelle.ca", "logo_url": "https://lasittelle.ca/wp-content/uploads/2025/11/cropped-icone_sittelle-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lasouche.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lasouche.ca", "logo_url": "https://eoty82r4pd9.exactdn.com/wp-content/uploads/2025/01/cropped-souche-fav.png?strip=all&#038;quality=92&#038;webp=92&#038;sharp=1&#038;resize=180%2C180", "cover_url": "https://lasouche.ca/wp-content/uploads/2025/01/IMG_9378.jpg", "description_meta": "D\u00e9couvrez La Souche\u202f: une microbrasserie inventive ancr\u00e9e \u00e0 Limoilou et \u00e0 Stoneham. Bi\u00e8res artisanales et cuisine locale \u00e0 l\u2019honneur", "site_name": "La Souche Microbrasserie"}
\ No newline at end of file
added data/enrich_cache/lasourceenchantee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lasourceenchantee.com", "logo_url": "https://lasourceenchantee.com/favicon.ico", "cover_url": "http://www.lasourceenchantee.com/img/fb.jpg", "description_meta": "Situez \u00e0 seulement quelques minutes du centre ville de Baie-St-Paul, la Source Enchant\u00e9e offre une vue imprenable sur le fleuve St-Laurent. Id\u00e9al pour les skieurs, le chalet est situ\u00e9e \u00e0 deux pas du Massif de Charlevoix.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lassembleuse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lassembleuse.com", "logo_url": "https://lassembleuse.com/cdn/shop/files/icone-lassembleuse-noir.png?crop=center&height=32&v=1628200698&width=32", "cover_url": "https://lassembleuse.com/cdn/shop/files/Photo-58_1200x800.jpg?v=1744662212", "description_meta": "Produits pour pr\u00e9server, raconter et transmettre votre histoire : journaux autobiographiques, balados sur mesure, bo\u00eetes personnalis\u00e9es et outils de g\u00e9n\u00e9alogie. Offrez-vous le pouvoir de vous souvenir, \u00e0 votre fa\u00e7on.", "site_name": "l&#39;Assembleuse"}
\ No newline at end of file
added data/enrich_cache/lassonde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lassonde.com", "logo_url": "https://www.lassonde.com/favicon/apple-touch-icon.png", "cover_url": "https://www.lassonde.com/content/uploads/2024/01/lassonde_shared_fb.jpg", "description_meta": "Lassonde d\u00e9veloppe, fabrique et commercialise des boissons et aliments de marque priv\u00e9e et de marque nationale \u00e0 travers l\u2019Am\u00e9rique du Nord.", "site_name": "Lassonde"}
\ No newline at end of file
added data/enrich_cache/lastationbolvita.company.site.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lastationbolvita.company.site", "logo_url": "https://lastationbolvita.company.site/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lastationeastman.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lastationeastman.ca", "logo_url": "https://lastationeastman.ca/wp-content/uploads/2024/05/LA_Logo_FOND.NOIR_-300x300.png", "cover_url": null, "description_meta": "Build an impressive website with the best-rated top-seller WordPress theme", "site_name": "La Station"}
\ No newline at end of file
added data/enrich_cache/lasuissenormande.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lasuissenormande.com", "logo_url": "https://lasuissenormande.com/favicon.ico", "cover_url": "https://lasuissenormande.com/wp-content/uploads/2021/12/banner1-1024x396.jpg", "description_meta": "La Suisse Normande", "site_name": "La Suisse Normande"}
\ No newline at end of file
added data/enrich_cache/lasultana.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lasultana.net", "logo_url": "https://orera.ca/cdn/shop/files/ICONE_orera_couleur_RGB.png?crop=center&height=32&v=1784505032&width=32", "cover_url": "http://orera.ca/cdn/shop/files/orera_light_byline_5913c0ed-a1e1-424f-b1d1-f8ce782e9e98.png?v=1784069075", "description_meta": "Natural eco-luxury face and body care products made in Quebec: natural soaps, shampoo bars, and gentle, eco-responsible, and cruelty-free body care products.", "site_name": "OR\u00c9RA"}
\ No newline at end of file
added data/enrich_cache/latelierb.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "latelierb.ca", "logo_url": "https://static.wixstatic.com/media/27e3a9_4148006f3b9b4bf7babd81ef3510a0e8%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/27e3a9_4148006f3b9b4bf7babd81ef3510a0e8%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/latelierdelili.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "latelierdelili.com", "logo_url": "https://img1.wsimg.com/isteam/ip/5ca59def-ec3f-485f-8aa5-b103fd0896b7/L&#x27;atelier-de-Lili-b3be1f2.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/5ca59def-ec3f-485f-8aa5-b103fd0896b7/blob-08e6080.png", "description_meta": "L\u2019atelier savons fait main de Lili : savonnerie artisanale au Qu\u00e9bec. Savons et soins naturels faits \u00e0 la main pour une peau douce et un moment sensoriel unique.", "site_name": "L&#39;atelier de Lili"}
\ No newline at end of file
added data/enrich_cache/latelierem.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "latelierem.com", "logo_url": "https://img1.wsimg.com/isteam/ip/d35bb917-071e-4d8c-bb2b-6c9e3a651c16/blob-6e3381d.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/d35bb917-071e-4d8c-bb2b-6c9e3a651c16/HOLIDAY%20GIFT%20GUIDE%202025-80.jpg", "description_meta": "Poterie utilitaire faite au Qu\u00e9bec et v\u00eatements en lin fabriqu\u00e9s avec soin. Situ\u00e9 \u00e0 Lac-Brome, en Estrie.", "site_name": "L&#39;Atelier Em"}
\ No newline at end of file
added data/enrich_cache/laterre.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laterre.ca", "logo_url": "https://www.laterre.ca/wp-content/uploads/2022/09/cropped-favicon-1-180x180.png", "cover_url": "https://www.laterre.ca/wp-content/uploads/2026/08/Cliquez-ici-pour-voir-plus-de-videos.png", "description_meta": "Toutes les nouvelles agricoles locales, provinciales, nationales, mondiales ainsi que les nouveaut\u00e9s technologiques du domaine de l\u2019agriculture.", "site_name": "La Terre de chez nous"}
\ No newline at end of file
added data/enrich_cache/laterredu9.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laterredu9.com", "logo_url": "https://laterredu9.com/favicon.ico", "cover_url": "https://laterredu9.com/wp-content/uploads/2022/09/Pure\u0301e-Ail-Noir-Condiment-La-terre-du-9-scaled.jpg", "description_meta": "La terre du 9 red\u00e9finie la cuisine de souche en offrant une large gamme \u00e0 l&#039;ail noir et des condiments aux saveurs brutes de la terre.", "site_name": "La terre du 9"}
\ No newline at end of file
added data/enrich_cache/laterreferme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laterreferme.com", "logo_url": "https://www.laterreferme.com/favicon.ico", "cover_url": null, "description_meta": "entreprise agricole familiale, Sainte-Julienne, Lanaudi\u00e8re, Rawdon, St-Jacques, St-Liguori, St-Alexis,R\u00e9seau des fermiers de famille, accueil", "site_name": null}
\ No newline at end of file
added data/enrich_cache/latheierealenvers.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "latheierealenvers.com", "logo_url": "https://latheierealenvers.com/favicon.ico", "cover_url": "https://cdn.shopify.com/s/files/1/0079/7166/8031/files/Logo_website_latheierealenvers_Chicoutimi_the.png?height=628&pad_color=fff&v=1614778451&width=1200", "description_meta": "Situ\u00e9 au coeur de la rue racine \u00e0 Chicoutimi, La Th\u00e9i\u00e8re \u00e0 l&#39;envers offre la plus grande s\u00e9lection de th\u00e9s et tisanes en vrac du Saguenay/Lac-St-Jean.", "site_name": "La Theiere \u00e0 l&#39;Envers"}
\ No newline at end of file
added data/enrich_cache/latinacuisine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "latinacuisine.com", "logo_url": "https://images.panierdachat.app/1028/JO3dLTv7_5f7b3ca8cc1a0.png?w=32&amp;h=32&amp;fit=max", "cover_url": "https://images.panierdachat.app/1028/f3F1nYJD_latina-local-naturel-zero-dechet-a57d741a-db31-434b-816c-156be0cadcee.png?w=1200&h=630&fit=fill", "description_meta": "[Courte description de votre boutique]", "site_name": "Latina Cuisine"}
\ No newline at end of file
added data/enrich_cache/laumecera.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "laumecera.com", "logo_url": "https://static.wixstatic.com/media/9b87c3_24592f0f348a4018aee5b7e9ea52fd2e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/9b87c3_24592f0f348a4018aee5b7e9ea52fd2e%7Emv2.png", "cover_url": null, "description_meta": "Laume c\u00e9ramique propose des objets fonctionnels fait main \u00e0 Montr\u00e9al", "site_name": "Laume C\u00e9ramique"}
\ No newline at end of file
added data/enrich_cache/launeatelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "launeatelier.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/66c118a1df020b7356fcb606/cf446837-30e7-413c-867c-30afbc672ecf/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/66c118a1df020b7356fcb606/t/66fdf50e2b03947ab811a568/1727919374309/LAUNE_Logo_Favicon_300x300.jpeg?format=1500w", "description_meta": "Bijoux \u00e9l\u00e9gants, d\u00e9licats et intemporels. Avec leurs formes fluides et organiques inspir\u00e9es par la nature, l\u2019art et le mouvement, ils donnent une impression de douceur et de souplesse qui c\u00e9l\u00e8bre la f\u00e9minit\u00e9. Chaque pi\u00e8ce est imagin\u00e9e et r\u00e9alis\u00e9e \u00e0 la main en \u00e9dition limit\u00e9e \u00e0 Montr\u00e9al.", "site_name": "L"}
\ No newline at end of file
added data/enrich_cache/lauthentik.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lauthentik.ca", "logo_url": "https://lauthentik.ca/img/favicon.ico?1736898995", "cover_url": null, "description_meta": "L", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lavalleebleue.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lavalleebleue.net", "logo_url": "https://static.wixstatic.com/media/2650b4_0a2a93908c884e689346142bcedceed6.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/2650b4_0a2a93908c884e689346142bcedceed6.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lavalleedumoulin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lavalleedumoulin.com", "logo_url": "https://www.lavalleedumoulin.com/cdn/shop/files/Moulin-de-la-vallee.png?v=1652296955&width=180", "cover_url": "http://www.lavalleedumoulin.com/cdn/shop/files/RAW_9667.jpg?v=1654956561&width=2048", "description_meta": "Plusieurs vari\u00e9t\u00e9s de figues fra\u00eeches biologiques, produits de la figue, miels, gel\u00e9es d&#39;\u00e9rable aux saveurs uniques et agrotourisme. Accompagnez vos plateaux de fromages et de charcuteries avec nos d\u00e9licieux produits. Visitez notre boutique en ligne!", "site_name": "La Vall\u00e9e du Moulin"}
\ No newline at end of file
added data/enrich_cache/lavieenrose.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lavieenrose.com", "logo_url": "https://www.lavieenrose.com/globalassets/LVER/favicon/icon-228.png ", "cover_url": "https://www.lavieenrose.com/globalassets/lver-cms/entire-site/lver-share-img2.jpg", "description_meta": "D\u00e9couvrez lingerie, bikinis, soutiens-gorge, pyjamas et plus chez la Vie en Rose. Pour le quotidien ou les occasions sp\u00e9ciales. Livraison gratuite disponible!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lavieilleusine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lavieilleusine.com", "logo_url": "https://static.wixstatic.com/media/941b46_a67cca3bc10e40d1a0d2473c15c6ead7%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/941b46_a67cca3bc10e40d1a0d2473c15c6ead7%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lavigiedesmarees.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lavigiedesmarees.com", "logo_url": "https://www.lavigiedesmarees.com/wp-content/uploads/2021/01/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lavo.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lavo.ca", "logo_url": "https://www.lavo.ca/wp-content/themes/atomik/images/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "LAVO, implant\u00e9e au Qu\u00e9bec depuis pr\u00e8s d\u2019un si\u00e8cle et fier de l\u2019\u00eatre!", "site_name": "Lavo"}
\ No newline at end of file
added data/enrich_cache/lavoiemaltee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lavoiemaltee.com", "logo_url": "https://www.lavoiemaltee.com/wp-content/uploads/2022/11/cropped-favicon-32x32-1-180x180.png", "cover_url": "https://www.lavoiemaltee.com/wp-content/uploads/2022/12/img-share.jpg", "description_meta": "4 restaurants La Voie Malt\u00e9e : Qu\u00e9bec, Jonqui\u00e8re &amp; Chicoutimi. Bi\u00e8res artisanales de microbrasserie et cuisine \u00e0 la bi\u00e8re.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/le-diapason.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "le-diapason.ca", "logo_url": "https://www.le-diapason.ca/favicon.ico?v=7kop60MBNt", "cover_url": "https://portal.restodata.ca/le-diapason/gallery/images/01_le-diapason_234-2025-06-16.jpg", "description_meta": "Le Diapason Boutique gourmande & Sandwicherie est un restaurant Sandwichs situ\u00e9 au 1 Rue-Sainte Anne \u00e0 Baie-Saint-Paul. Voir le menu, \u00e9valuations et r\u00e9servez. Sandwichs artisanaux et tr\u00e9sors r\u00e9gionaux...", "site_name": "Le Diapason Boutique gourmande & Sandwicherie"}
\ No newline at end of file
added data/enrich_cache/le10vin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "le10vin.com", "logo_url": "https://www.le10vin.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Bienvenue au Vignoble Le 10-Vin"}
\ No newline at end of file
added data/enrich_cache/le1603.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "le1603.com", "logo_url": "https://cdn.shoplightspeed.com/shops/646116/themes/8322/v/255571/assets/favicon.ico?20210512182928", "cover_url": null, "description_meta": null, "site_name": "Le 1603 Inc."}
\ No newline at end of file
added data/enrich_cache/le2020charlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "le2020charlevoix.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/le362.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "le362.com", "logo_url": "https://l.icdbcdn.com/oh/6d87c730-84bf-47f7-ba72-9b162fe183b4.png?w=32&amp;h=32&amp;mode=crop&amp;f=32&amp;type=favicon", "cover_url": "https://l.icdbcdn.com/oh/d1ebee75-10b6-416a-8842-1994b61a3b9c.png?w=1200", "description_meta": "Chambres et condos locatif \u00c3\u00a0 Saint-Ir\u00c3\u00a9n\u00c3\u00a9e. Avec une superbe vue sur la plage et le fleuve.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lebedouin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lebedouin.com", "logo_url": "https://lebedouin.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Fromagerie Le B\u00e9douin"}
\ No newline at end of file
added data/enrich_cache/leblancpetitsfruits.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leblancpetitsfruits.ca", "logo_url": "https://leblancpetitsfruits.ca/wp-content/uploads/2021/03/LEB-favicone-e1616428573775.png", "cover_url": "https://leblancpetitsfruits.ca/wp-content/uploads/2021/06/Logo-C_M_Leblanc_fond-beige.png", "description_meta": null, "site_name": "Leblanc petits fruits"}
\ No newline at end of file
added data/enrich_cache/lebrouemont.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lebrouemont.com", "logo_url": "https://www.lebrouemont.com/favicon.ico", "cover_url": null, "description_meta": "Micro-brasserie Le Brouemont vous invite \u00e0 d\u00e9guster ses bi\u00e8res artisanales.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lebroutarddesappalaches.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lebroutarddesappalaches.com", "logo_url": "https://www.lebroutarddesappalaches.com/themes/broutard/assets/images/favicon/android-icon-192x192.png", "cover_url": null, "description_meta": "Viande de jeunes bovins nourris exclusivement d", "site_name": "Le Broutard des Appalaches"}
\ No newline at end of file
added data/enrich_cache/lecadreurbain.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lecadreurbain.ca", "logo_url": "https://www.lecadreurbain.ca/favicon.png", "cover_url": "https://www.lecadreurbain.ca/images/lecadreurbain_thumb.jpg", "description_meta": "Le Cadre Urbain est un fournisseur exclusif d", "site_name": "Cadre Urbain"}
\ No newline at end of file
added data/enrich_cache/lecentquarante-cinq.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lecentquarante-cinq.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/8ea7da57-e057-4c19-a571-69f9d325c5fe/blob-20a0f80.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/8ea7da57-e057-4c19-a571-69f9d325c5fe/blob-2b9075f.png", "description_meta": "Le Cent Quarante-Cinq situ\u00e9 \u00e0 la Gorge de Coaticook offre des petits-d\u00e9jeuners et une table fran\u00e7aise en soir\u00e9e.", "site_name": "le cent quarante-cinq"}
\ No newline at end of file
added data/enrich_cache/lecharlevoisien.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lecharlevoisien.com", "logo_url": "https://www.lecharlevoisien.com/favicon.ico", "cover_url": "https://www.lecharlevoisien.com/wp-content/uploads/2021/10/charlevoisien-og-default.jpeg", "description_meta": null, "site_name": "Le Charlevoisien"}
\ No newline at end of file
added data/enrich_cache/lechevalblanc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lechevalblanc.ca", "logo_url": "https://www.lechevalblanc.ca/favicon.ico", "cover_url": "https://cdn.sanity.io/images/qsur3by2/production/42454e17e9b4b53d789a6b4b3220d2200f289a2d-1714x942.jpg?rect=0,23,1714,896&amp;w=1200&amp;h=627&amp;fit=max&amp;auto=format", "description_meta": "809 rue Ontario est (m\u00e9tro Berri et Sherbrooke) On y vient pour la qualit\u00e9 de ses bi\u00e8res, son ambiance sympathique, son personnel sympathique, sa simplicit\u00e9 volontaire! Bienvenue au monde entier!", "site_name": "Le Cheval Blanc | Brasseur artisan &amp; bar"}
\ No newline at end of file
added data/enrich_cache/lechoabitibien.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lechoabitibien.ca", "logo_url": "https://www.lechoabitibien.ca/wp-content/uploads/2020/02/cropped-lechoabitien-180x180.png", "cover_url": null, "description_meta": "Le journal L\u2019\u00c9cho Abitibien \u00e9tait un hebdomadaire imprim\u00e9 et virtuel appartenant \u00e0 TC Media. Les deux versions couvraient l\u2019actualit\u00e9 des villes de Val-d\u2019Or,", "site_name": "L\u2019\u00c9cho Abitibien"}
\ No newline at end of file
added data/enrich_cache/leclerc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leclerc.ca", "logo_url": "https://leclerc.ca/wp-content/uploads/2025/05/logo_fr.svg", "cover_url": "https://leclerc.ca/wp-content/uploads/2025/08/6jh3tnp6bz_12632_LEC_Celebration_Header_Page_USA_P1B.png", "description_meta": "Leclerc Page d\u2019accueil", "site_name": "Leclerc -"}
\ No newline at end of file
added data/enrich_cache/lecomtederoussy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lecomtederoussy.com", "logo_url": "https://www.lecomtederoussy.com/favicon.ico", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQUfaAz4rgGK1h3fIjgGPVFV-ua4kkJ2qSb5ilf6pfdqDVv096p4x5OLNC2V5Yzgi2bafGmTuiOYtmfUylz4m9TX7DMcvSP2oHA-m9Qz-7QHW8saGJ1gXR9BMzOr6xDPTte3nK3HZc9K1Yo8xgOigvy7Wa2TKvV9Er-_QuZqLKmEfJ8oYrFpSxMvBiksXmI=w16383", "description_meta": "Bienvenue \u00e0 la ferme le Comte de Roussy", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lecomtejoaillerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lecomtejoaillerie.com", "logo_url": "https://www.lecomtejoaillerie.com/favicon.ico", "cover_url": "https://www.Lecomtejoaillerie.com/uploads/7/5/0/5/75053403/editor/panier-bleu-lecomtejoaillerie-noir-et-blanc.jpg?1587851408", "description_meta": "\u200b Form\u00e9e \u00e0 l&#039;\u00e9cole de joaillerie de Montr\u00e9al, Christiane Lecomte\u00a0cr\u00e9e des\u00a0bijoux contemporains, confortables et uniques qui se portent en toute occasion.\u00a0 Membre professionnel du Conseil...", "site_name": "Lecomte joaillerie"}
\ No newline at end of file
added data/enrich_cache/lecycle.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lecycle.ca", "logo_url": "https://lecycle.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ledco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ledco.ca", "logo_url": "https://ledco.ca/storage/favicon.png", "cover_url": "https://ledco.ca/storage/ledco-logo-a-790x510.png", "description_meta": "LEDCO, sp\u00e9cialiste \u00e9clairage LED au Qu\u00e9bec : rubans LED sur mesure, profil\u00e9s aluminium, plafonniers, miroirs salle de bain. Showroom Saint-Hubert, livraison Canada.", "site_name": "LEDCO \u2014 \u00c9clairage LED Quebec | Rubans LED, Profil\u00e9s Aluminium, Plafonniers"}
\ No newline at end of file
added data/enrich_cache/lefermentgourmand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lefermentgourmand.com", "logo_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQUoEg2mG2gw9xKgZIgkbY0j9GJwA0YPe3RuoXqunBi1Srt5-KTfJguQQ1qf2f-nmGbP6vG1b1xmd3OOLxA7JPWotqL5RYZloVYBULotMARkNQAs5K7JeKEyODWfjPvySw6-1pvpV72adWLTPZZXZiACqpKBau09qD8l3lBT2xKTo4h3248uzj7YztupvXFHE-J_8awpMyS0lE8vwVOYSu2syQ", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQWg2ckSW-Us2y8Rlk59roqoc9KiZZd1IKKeTK-BBvGcasDeCXxMvXjCOYBxMSM3bpOyfT4BX9Xb0ZxQbdxqv3g7AcUbzXoKcXSt2dzpw_duriBybDpQMXqL_zzQJkCtoMTS01bJW9O8oO9gaqgmnh6J0SKSCxZs3dqVjZC5sdvEeNRVnwRZoxp_Wv7H=w16383", "description_meta": "Sublimer le tournesol. \nR\u00e9v\u00e9ler le vivant.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lefermentor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lefermentor.com", "logo_url": "https://static.wixstatic.com/media/29621d_648a8a62832c4257ac16fe65a45c2cc3%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/29621d_648a8a62832c4257ac16fe65a45c2cc3%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/29621d_4f9dcef3c43540a8ba1fda0803bb617d~mv2.png/v1/fill/w_1200,h_625,al_c/29621d_4f9dcef3c43540a8ba1fda0803bb617d~mv2.png", "description_meta": "Microbrasserie Le Fermentor \u00e0 L", "site_name": "Le Fermentor"}
\ No newline at end of file
added data/enrich_cache/lefestif.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lefestif.ca", "logo_url": "https://lefestif.ca/favicon.ico", "cover_url": "https://images.prismic.io/le-festif-ca/Qh3H4AlnI24zzklJ_og_festif.png?auto=format%2Ccompress&amp;fit=max", "description_meta": "Du 22 au 25 juillet 2027, Le Festif! de Baie-St-Paul pr\u00e9sentera sa 18e \u00e9dition.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lefiefdelariviere.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lefiefdelariviere.ca", "logo_url": "https://www.lefiefdelariviere.ca/wp-content/uploads/2020/02/cropped-vignoble-fief-de-la-riviere-a-fief-de-la-riviere-180x180.png", "cover_url": "https://www.lefiefdelariviere.ca/wp-content/uploads/2020/02/en-tete-vignoble-fief-de-la-riviere.jpg", "description_meta": "Magnifique vignoble situ\u00e9 sur une terre ancestrale o\u00f9 sont produits les vins \u00ab\u00a0Globul\u00a0\u00bb qui sont disponibles ici pour l\u2019achat en ligne.", "site_name": "Vignoble Fief de la Rivi\u00e8re"}
\ No newline at end of file
added data/enrich_cache/legardemanger.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "legardemanger.org", "logo_url": "https://www.legardemanger.org/templates/le_garde_manger/images/apple-touch-icon.png", "cover_url": "https://www.legardemanger.org/images/img_garde_manger_partage_facebook_2.jpg", "description_meta": "L\u2019\u00c9picerie communautaire Le Garde Manger est un OBNL et veut combler un besoin pour les personnes vivant une situation d\u2019extr\u00eame pauvret\u00e9 dans la MRC Maria Chap", "site_name": null}
\ No newline at end of file
added data/enrich_cache/legarsdulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "legarsdulac.com", "logo_url": "https://www.legarsdulac.com/wp-content/uploads/2024/10/image_2024-10-29_175434274.png", "cover_url": "https://www.legarsdulac.com/wp-content/uploads/2024/10/image_2024-10-29_175434274.png", "description_meta": "Enfin ! Le Gars du Lac ouvre ses portes \u00e0 Brompton au 59 Saint-Joseph Avez-vous d\u00e9j\u00e0 gout\u00e9 aux saveurs du Lac St-Jean ? Si oui, vous en \u00eates accros, sinon vous le deviendrez. Quelle chance ! Nous sommes d\u00e9sormais accessibles dans la r\u00e9gion de Sherbrooke, \u00e0 notre toute nouvelle boutique. L\u2019authenticit\u00e9 des saveurs, une pinc\u00e9e [&hellip;]", "site_name": "Le Gars du Lac"}
\ No newline at end of file
added data/enrich_cache/legoutdeca.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "legoutdeca.com", "logo_url": "https://www.legoutdeca.com/cdn/shop/files/logoBlack_1_1.png?crop=center&height=32&v=1777960789&width=32", "cover_url": "http://www.legoutdeca.com/cdn/shop/files/3D-Logo-Mockup_85029b47-62d3-45f1-a295-c708d86dbd97.jpg?v=1722447395", "description_meta": "Le Go\u00fbt de \u00c7a propose des Marinades et Sauces Piquantes aux saveurs carib\u00e9ennes uniques. Parfaites pour accompagner chips, riz, salades, viandes et l\u00e9gumes.", "site_name": "Le Go\u00fbt de \u00c7a"}
\ No newline at end of file
added data/enrich_cache/legrandbbqwarwick.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "legrandbbqwarwick.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/d977c163-c839-48a8-b431-f20792478636/favicon/528ce2d6-f71f-4a0b-953f-1d0a84fff113/45f03d11-e198-452b-afa4-13633d1b7b10.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/d977c163-c839-48a8-b431-f20792478636/FWGRifeL.jpg", "description_meta": "D\u00e9couvrez le Grand BBQ de Warwick, un \u00e9v\u00e9nement unique avec des activit\u00e9s BBQ, une bataille des chefs et une programmation captivante.", "site_name": "Grand BBQ de Warwick"}
\ No newline at end of file
added data/enrich_cache/legrandmarchedequebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "legrandmarchedequebec.com", "logo_url": "https://www.legrandmarchedequebec.com/public/favicon/apple-touch-icon-120x120.png", "cover_url": null, "description_meta": null, "site_name": "Le Grand March&#xE9; de Qu&#xE9;bec"}
\ No newline at end of file
added data/enrich_cache/legumesbiologiques.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "legumesbiologiques.com", "logo_url": "https://legumesbiologiques.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/legunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "legunord.com", "logo_url": "https://cdn.prod.website-files.com/618c1809dddc4b1acc13aeed/6193f744a6c24c76d4cf4a26_webclip-legunord.png", "cover_url": "https://cdn.prod.website-files.com/618c1809dddc4b1acc13aeed/6193e2f0ac88c708e2e59276_OG-legunord.jpg", "description_meta": "L\u00e9gunord est un regroupement de producteurs mara\u00eechers de la r\u00e9gion du Saguenay\u2013Lac-Saint-Jean qui oeuvre dans l\u2019emballage et la distribution de produits frais et r\u00e9gionaux depuis 1982.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lehangarfumoir.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lehangarfumoir.ca", "logo_url": "https://lehangarfumoir.ca/wp-content/uploads/2023/07/cropped-android-chrome-512x512-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lejardinfruitier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lejardinfruitier.com", "logo_url": "https://lejardinfruitier.com/wp-content/uploads/2026/05/cropped-logo-le-jardin-fruitier-512x512-1-1-180x180.png", "cover_url": "https://lejardinfruitier.com/wp-content/uploads/2026/05/logo-le-jardin-fruitier-512x512-1.png", "description_meta": "Venez cueillir fraises, framboises, bleuets et m\u00fbres \u00e0 notre ferme familiale de Sherbrooke. Ouvert de la fin juin \u00e0 la fin ao\u00fbt. Appelez avant de venir!", "site_name": "Le Jardin Fruitier"}
\ No newline at end of file
added data/enrich_cache/lejoyeuxpetrin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lejoyeuxpetrin.com", "logo_url": "https://lejoyeuxpetrin.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/leketch.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leketch.com", "logo_url": "https://www.leketch.com/cdn/shop/files/ketch_favicon.png?crop=center&height=32&v=1712153160&width=32", "cover_url": "http://www.leketch.com/cdn/shop/files/socialshare_da83a9a3-9cb5-49ea-bdb8-ba837e2ce1bc.jpg?v=1712288849", "description_meta": "Le ketch est une microbrasserie situ\u00e9e sur les rives du Fleuve Saint-Laurent, au coeur du village de Sainte-Flavie, Qu\u00e9bec.", "site_name": "Le Ketch"}
\ No newline at end of file
added data/enrich_cache/lekiosqueracine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lekiosqueracine.com", "logo_url": "https://i0.wp.com/lekiosqueracine.com/wp-content/uploads/2026/04/cropped-18.png?fit=180%2C180&#038;ssl=1", "cover_url": "https://i0.wp.com/lekiosqueracine.com/wp-content/uploads/2026/04/logo-ecriture-4.png?fit=1563%2C1563&#038;ssl=1", "description_meta": null, "site_name": "Le kiosque Racine"}
\ No newline at end of file
added data/enrich_cache/lelafontaine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lelafontaine.com", "logo_url": "https://lelafontaine.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lelievrelelievreetlemoignan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lelievrelelievreetlemoignan.com", "logo_url": "https://lelievrelelievreetlemoignan.com/wp-content/uploads/2023/01/cropped-lll-favicon-180x180.png", "cover_url": "https://lelievrelelievreetlemoignan.com/wp-content/uploads/2021/03/lll-siteweb2020-vignettepartage-vf.jpg", "description_meta": "Depuis la Gasp\u00e9sie, au Qu\u00e9bec, nous exportons dans le monde entier des produits &amp; poissons frais ou congel\u00e9s. Homard, fl\u00e9tan, morue, hareng.", "site_name": "Leli\u00e8vre, Leli\u00e8vre &amp; Lemoignan"}
\ No newline at end of file
added data/enrich_cache/lemalbord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemalbord.com", "logo_url": "https://lemalbord.com/favicon.ico", "cover_url": null, "description_meta": "Microbrasserie Le Malbord, Sainte-Anne-des-Monts, Gasp\u00e9sie", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lemalincesar.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemalincesar.ca", "logo_url": "https://lemalincesar.ca/cdn/shop/files/MALIN_CESAR_LOGO_2024.png?crop=center&height=32&v=1715374322&width=32", "cover_url": "http://lemalincesar.ca/cdn/shop/files/MALIN_CESAR_LOGO_2024_ebbeb5eb-3126-42e5-b6ea-9c0809892a6e.png?v=1733850509", "description_meta": "Le malin cesar", "site_name": "Le malin cesar"}
\ No newline at end of file
added data/enrich_cache/lemarcheauxtresors.company.site.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemarcheauxtresors.company.site", "logo_url": "https://lemarcheauxtresors.company.site/favicon.ico", "cover_url": null, "description_meta": "Notre boutique en ligne de produits du Qu\u00e9bec offre une large gamme de produits, que ce soit pour offrir ou pour vous faire plaisir. Magasinez d\u00e8s maintenant!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lemarchedenicolet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemarchedenicolet.com", "logo_url": "https://lemarchedenicolet.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lemarettes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemarettes.com", "logo_url": "https://static.wixstatic.com/media/7436be_be408c0bf6a3416fa6b9da3b1af36db7%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7436be_be408c0bf6a3416fa6b9da3b1af36db7%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/7436be_ac1b241eaa4c4d1b9d16d97233ff92c7~mv2.jpg/v1/fill/w_2500,h_1666,al_c/7436be_ac1b241eaa4c4d1b9d16d97233ff92c7~mv2.jpg", "description_meta": "L\u00e9marettes : Cuisine ouverte. Partager les plaisirs de la table et les produits locaux au restaurant et \u00e0 la maison.", "site_name": "L\u00e9marettes"}
\ No newline at end of file
added data/enrich_cache/lemassif.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemassif.com", "logo_url": "https://www.lemassif.com/themes/custom/origin/images/favicon/apple-touch-icon.png", "cover_url": "https://www.lemassif.com/sites/default/files/styles/max_2600x2600/public/2026-04/JSCHP_LeMassif_e25_heb_img9246.jpg?itok=AizrYOuz", "description_meta": "D\u00e9couvrez Le Massif de Charlevoix, la station de ski et destination tout-en-un au Qu\u00e9bec. Profitez de nos pistes de ski, \u00e9v\u00e9nements, h\u00e9bergements et plus encore. R\u00e9servez d\u00e8s maintenant !", "site_name": "[Le Massif de Charlevoix]"}
\ No newline at end of file
added data/enrich_cache/lemeilleursirop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemeilleursirop.com", "logo_url": "https://lemeilleursirop.com/wp-content/uploads/2019/12/cropped-feuille-erable-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lemieldabee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemieldabee.ca", "logo_url": "https://lemieldabee.ca/owebo-votresite/sites/default/files/images/LMA-LOGO-FINAL-COULEURS.png", "cover_url": "https://lemieldabee.ca/sites/default/files/images/LMA-LOGO-FINAL-COULEURS.png", "description_meta": "Le Miel d&#039;Abee est une entreprise familiale. La sant\u00e9 avec les produits de la ruche est la mission de cette entreprise.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lemieldemilie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemieldemilie.com", "logo_url": "http://www.lemieldemilie.com/wp/wp-content/uploads/2014/09/favicon.png", "cover_url": null, "description_meta": "| Miel du Qu&eacute;bec non pasteuris&eacute; &#8211; 100% naturel", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lemieuxspinning.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemieuxspinning.com", "logo_url": "https://www.lemieuxspinning.com/wp-content/themes/ubeo-theme-child/images/apple-touch-icon.png", "cover_url": "https://www.lemieuxspinning.com/wp-content/themes/ubeo-theme-child/images/facebook_share.png", "description_meta": "Innover tout en respectant les traditions a permis \u00e0 Filature Lemieux de se tailler une place de choix parmi les fabricants de fils sp\u00e9cialis\u00e9s, de laine et synth\u00e9tiques", "site_name": "Filature Lemieux"}
\ No newline at end of file
added data/enrich_cache/lemoltech.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemoltech.com", "logo_url": "https://www.lemoltech.com/images/favicon.png", "cover_url": "https://www.lemoltech.com/images/og-image.jpg", "description_meta": "Fonderie Lemoltech est une fonderie sp\u00e9cialis\u00e9e dans le moulage sous pression de pi\u00e8ces en aluminium, desservant le Qu\u00e9bec, le Canada, les \u00c9tats-Unis et le Mexique.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lemondeestscone.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemondeestscone.com", "logo_url": "https://dhgf5mcbrms62.cloudfront.net/107470292/global/3vJkvlk-180x180.png", "cover_url": "https://dhgf5mcbrms62.cloudfront.net/107470292/global/VX9RjNQ-1200x1200.jpg", "description_meta": "Scones artisanaux congel&eacute;s pr&ecirc;ts-&agrave;-cuire, faits &agrave; Montr&eacute;al sans agent de conservation. En &eacute;picerie chez Metro, IGA et Longo", "site_name": "Le Monde Est Scone"}
\ No newline at end of file
added data/enrich_cache/lemontagnais.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemontagnais.qc.ca", "logo_url": "https://lemontagnais.qc.ca/app/uploads/2021/07/cropped-favicon-180x180.png", "cover_url": "https://lemontagnais.qc.ca/app/uploads/2019/06/le-montagnais-facebook.jpg", "description_meta": "H\u00f4tel Le Montagnais Saguenay\u2013 Site officiel", "site_name": "H\u00f4tel Le Montagnais"}
\ No newline at end of file
added data/enrich_cache/lemoulinauxepices.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemoulinauxepices.ca", "logo_url": "https://lemoulinauxepices.ca/wp-content/uploads/2021/11/favico.png", "cover_url": "https://lemoulinauxepices.ca/wp-content/uploads/2023/11/slider1-2.webp", "description_meta": "D\u00e9couvrez notre magasin d&#039;\u00e9pices \u00e0 Piedmont, offrant m\u00e9langes maison, huiles, produits du monde et viandes du Qu\u00e9bec.", "site_name": "Moulin aux \u00e9pices"}
\ No newline at end of file
added data/enrich_cache/lemoussonneur.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemoussonneur.ca", "logo_url": "https://lemoussonneur.ca/produits/image/catalog/LOGO/Logo OR fond Noir.png", "cover_url": null, "description_meta": "Richard O", "site_name": "Le Moussonneur - Maison de torr\u00e9faction - Coffee Roaster - Rimouski (Qu\u00e9bec) Can"}
\ No newline at end of file
added data/enrich_cache/lemoutonblanc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemoutonblanc.ca", "logo_url": "https://lemoutonblanc.ca/images/mouton-blanc-picto.png", "cover_url": "https://lemoutonblanc.ca/images/image-og.png", "description_meta": "Fromagerie", "site_name": "Le Mouton Mlanc"}
\ No newline at end of file
added data/enrich_cache/lempreinte-al.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lempreinte-al.com", "logo_url": "https://lempreinte-al.com/cdn/shop/files/lempreinte_symbole_noir.svg?crop=center&height=32&v=1769608257&width=32", "cover_url": null, "description_meta": "L&#39;empreinte", "site_name": "L&#39;empreinte"}
\ No newline at end of file
added data/enrich_cache/lemuseeduchocolatdelaconfiseriebromont.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lemuseeduchocolatdelaconfiseriebromont.com", "logo_url": "https://static.wixstatic.com/media/5a55a7_bcf1dd8711704b2485ca994b50e22313.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5a55a7_bcf1dd8711704b2485ca994b50e22313.jpg", "cover_url": "https://static.wixstatic.com/media/5a55a7_396f75671374487c8879f44d1eb0e710%7Emv2_d_5760_3840_s_4_2.jpg/v1/fit/w_2500,h_1330,al_c/5a55a7_396f75671374487c8879f44d1eb0e710%7Emv2_d_5760_3840_s_4_2.jpg", "description_meta": "chocolaterie, caf\u00e9, resto, d\u00e9jeuner, mus\u00e9e , chocolat, terrasse", "site_name": "musee-du-chocolat-6"}
\ No newline at end of file
added data/enrich_cache/lenaufrageur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lenaufrageur.com", "logo_url": "https://static.wixstatic.com/media/e1bc3f_c9d6cd354885495c89c2dbf26909019e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/e1bc3f_c9d6cd354885495c89c2dbf26909019e%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lenflammee.square.site.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lenflammee.square.site", "logo_url": "https://lenflammee.square.site/uploads/b/d6ecd590-2517-11ec-9e2b-b5a3773e8b63/icon_180x180_ios_NTkyNz.png?width=180", "cover_url": "https://lenflammee.square.site/uploads/b/d6ecd590-2517-11ec-9e2b-b5a3773e8b63/Eucalyptus%20Givr%C3%A93-COLLAGE.jpg", "description_meta": "Produits qu\u00e9b\u00e9cois fait \u00e0 la main. Chandelles, produits \u00e0 massage, de bain, d&#039;ambiance, corporels et plus encore!", "site_name": "L&#039;Enflamm\u00e9e"}
\ No newline at end of file
added data/enrich_cache/lenidatelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lenidatelier.com", "logo_url": "https://lenidatelier.com/cdn/shop/files/Petitnid2x3pouces_32x32.jpg?v=1617240245", "cover_url": "http://lenidatelier.com/cdn/shop/files/LENIDatelier_Loup_mise_en_contexte_d5cdbf00-e822-4269-b931-a724054c520f.jpg?v=1587672920", "description_meta": "Wildlife illustration for all ages. Adorable baby animal prints perfect for nursery or for kids room decoration. Large wildlife art ideal for living room inspiration or for bedhead decoration. Come and see the cutest baby otter, baby foxes and the majestic moose. GIRAFE and SLOTH print. Ship worldwide, shop online.", "site_name": "LE NID atelier"}
\ No newline at end of file
added data/enrich_cache/lenracine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lenracine.com", "logo_url": "https://lenracine.com/wp-content/uploads/2024/03/cropped-favicone-180x180.png", "cover_url": "https://lenracine.com/wp-content/uploads/2024/08/enracine_v7a0109-1.webp", "description_meta": "La cidrerie familiale l\u2019Enracin\u00e9 met en bouteille le terroir unique de son verger de pommiers sauvages biologiques situ\u00e9 sur les plateaux de la Haute-Beauce.", "site_name": "Cidrerie l&#039;Enracin\u00e9"}
\ No newline at end of file
added data/enrich_cache/lentete.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lentete.ca", "logo_url": "https://lentete.ca/wp-content/uploads/2017/07/favicon.png", "cover_url": null, "description_meta": "La microbrasserie L\u2019Ent\u00eat\u00e9 offre un menu bistro rustique dans une ambiance chaleureuse et moderne.", "site_name": "Microbasserie L\\&#039;ent\u00eat\u00e9"}
\ No newline at end of file
added data/enrich_cache/leo-desilets.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leo-desilets.com", "logo_url": "https://leo-desilets.com/favicon.ico", "cover_url": null, "description_meta": "Sans", "site_name": "L\u00e9o D\u00e9silets"}
\ No newline at end of file
added data/enrich_cache/leoncourville.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leoncourville.com", "logo_url": "https://vignoblecourville.com/favicon.ico", "cover_url": "http://vignoblecourville.com/cdn/shop/files/logo_pour_boutique_1200_x_628.png?v=1778946245", "description_meta": "Situ\u00e9 face au Lac Brome, le Vignoble Courville propose des vins r\u00e9put\u00e9s et \u00e9l\u00e9gants. Rouges, blancs ou ros\u00e9s : savourez nos vins et profitez de la vie !", "site_name": "Vignoble Courville"}
\ No newline at end of file
added data/enrich_cache/lepaysangourmand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepaysangourmand.com", "logo_url": "https://static.wixstatic.com/media/3f8748_70c7bdb82777452dabf33cbe2745f570%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/3f8748_70c7bdb82777452dabf33cbe2745f570%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/3f8748_c6a3fb05e29f4d8d9503dfb05e805f81~mv2.jpg/v1/fill/w_2000,h_1275,al_c/3f8748_c6a3fb05e29f4d8d9503dfb05e805f81~mv2.jpg", "description_meta": null, "site_name": "lepaysangourmand"}
\ No newline at end of file
added data/enrich_cache/leperco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leperco.ca", "logo_url": "https://www.leperco.ca/wp-content/uploads/2025/08/cropped-ico2-180x180.jpg", "cover_url": null, "description_meta": "Le sp\u00e9cialiste de la fabrication et la distribution de produits pr\u00eats-\u00e0 -manger", "site_name": "LE PERCO - Le sp\u00e9cialiste de la fabrication et la distribution de produits pr\u00eats"}
\ No newline at end of file
added data/enrich_cache/lepetitmas.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepetitmas.ca", "logo_url": "https://lepetitmas.ca/favicon.ico", "cover_url": null, "description_meta": "Ail du Qu\u00e9bec (Canada) biologique, fleurs d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lepetitmondedesartsetdessports.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepetitmondedesartsetdessports.com", "logo_url": "https://lepetitmondedesartsetdessports.com/favicon.ico", "cover_url": "https://lepetitmondedesartsetdessports.com/wp-content/uploads/2017/05/1920-pixels.jpg", "description_meta": "Garderie \u00e0 Jonqui\u00e8re, Le Petit Monde des Arts et des Sports est situ\u00e9e \u00e0 deux pas du centre-ville et est ax\u00e9e sur le d\u00e9veloppement des int\u00e9r\u00eats des enfants.", "site_name": "Garderie Le Petit Monde des Arts et des Sports"}
\ No newline at end of file
added data/enrich_cache/lepetitrucherdunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepetitrucherdunord.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/38e093_237e868c6b334680be394e2880adadc4%7Emv2_d_5184_3456_s_4_2.jpg/v1/fit/w_2500,h_1330,al_c/38e093_237e868c6b334680be394e2880adadc4%7Emv2_d_5184_3456_s_4_2.jpg", "description_meta": "Le petit rucher du Nord est une ferme apicole situ\u00e9e dans la r\u00e9gion des Laurentides. Nos sp\u00e9cialit\u00e9s sont le miel, l", "site_name": "apiculture"}
\ No newline at end of file
added data/enrich_cache/lepetshoppe.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepetshoppe.ca", "logo_url": "https://www.lepetshoppe.ca/cdn/shop/files/le-pet-shoppe-favicon.png?crop=center&height=32&v=1656616904&width=32", "cover_url": null, "description_meta": "Le Pet Shoppe est une boutique en ligne offrant une large gamme d&#39;accessoires pour animaux (et m\u00eame pour vous), faits \u00e0 la main avec amour au Qu\u00e9bec.", "site_name": "Le Pet Shoppe"}
\ No newline at end of file
added data/enrich_cache/lepicbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepicbois.com", "logo_url": "https://lepicbois.com/wp-content/uploads/2022/11/cropped-pib-bois-favicon-180x180.jpg", "cover_url": "https://lepicbois.com/wp-content/uploads/2017/08/PicBois-CanalEvasion2017.jpg", "description_meta": "Domaine Le Pic-Bois | Pourvoirie La famille LAVOIE et leur \u00e9quipe du Domaine Le Pic-Bois vous accueillent personnellement dans un joyau de la for\u00eat charlevoisienne serti dans les contreforts du parc national des Hautes Gorges de la rivi\u00e8re Malbaie. Domaine Le Pic-Bois est un v\u00e9ritable paradis pour la p\u00eache en \u00e9t\u00e9 ou la p\u00eache blanche [&hellip;]", "site_name": "Domaine Le Pic-Bois"}
\ No newline at end of file
added data/enrich_cache/lepiceriecafedunham.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepiceriecafedunham.ca", "logo_url": "https://www.lepiceriecafedunham.ca/favicon.ico", "cover_url": "https://uormgoagatvwzuifdkat.supabase.co/storage/v1/object/public/casino-images/casino-images/casino_1770187884312/2_betalright_1.webp", "description_meta": "Vous cherchez un casino en ligne populaire en 2026? Les plateformes qui se d\u00e9marquent vraiment par leurs jeux, leurs paiements et l&#039;exp\u00e9rience offerte.", "site_name": "lepicerie cafe dunham"}
\ No newline at end of file
added data/enrich_cache/lepicurienne.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepicurienne.ca", "logo_url": "https://lepicurienne.ca/wp-content/uploads/2020/10/cropped-icone-lepicurienne-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lepleasant.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepleasant.com", "logo_url": "https://irp.cdn-website.com/1d2b2cfb/dms3rep/multi/favicon-le-pleasant.png", "cover_url": "https://irp.cdn-website.com/1d2b2cfb/dms3rep/multi/opt/open-graph-le-pleasant-4ed47782-1920w.png", "description_meta": "S\u00e9journez au Le Pleasant, un h\u00f4tel chaleureux avec restaurant \u00e0 Sutton. Chambres confortables, cuisine soign\u00e9e et forfaits attrayants dans les Cantons-de-l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/leplongeon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leplongeon.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/e89d4b63-17bc-4708-b5d2-fc48d200f230/blob.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/e89d4b63-17bc-4708-b5d2-fc48d200f230/blob-a592ea2.png", "description_meta": "D\u00e9couvrez notre brasserie restaurant \u00e0 St-Cyrille, offrant un menu bi\u00e8res artisanal et ouvert toute l&amp;#39;ann\u00e9e pour des moments inoubliables.", "site_name": "Le plongeon"}
\ No newline at end of file
added data/enrich_cache/lepointvisible.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepointvisible.com", "logo_url": "https://lepointvisible.com/cdn/shop/files/LPV_logo_icone_2022_RECADRE_sans_fond_32x32.png?v=1689279973", "cover_url": "http://lepointvisible.com/cdn/shop/files/LPV_logo2022_noir_compresse2_711b2397-3593-4a16-8c4c-3e5ce2b7f832_1200x1200.jpg?v=1689279475", "description_meta": "Le point visible con\u00e7oit des couvertures et des accessoires utilitaires, durables et intemporels \u00e0 partir du savoir-faire ancestral de la courtepointe. \u00c0 la fois source de r\u00e9confort et d\u2019\u00e9merveillement, nos cr\u00e9ations sont con\u00e7ues pour accompagner votre quotidien et confectionn\u00e9es pour des g\u00e9n\u00e9rations.", "site_name": "Le point visible"}
\ No newline at end of file
added data/enrich_cache/leporcdebeaurivage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leporcdebeaurivage.com", "logo_url": "https://leporcdebeaurivage.com/images/core/favicon/android-icon-192x192.png", "cover_url": "https://leporcdebeaurivage.com/images/client/originals/pdb-site_uid60eee6d81217c.jpg", "description_meta": "Avec plus de 100 ans d\u2019exp\u00e9rience dans la production, Le Porc de Beaurivage est une affaire de famille. Inspir\u00e9 par la nature et le bien-\u00eatre des animaux, toute la moul\u00e9e y est cr\u00e9\u00e9e avec des grains de grande qualit\u00e9. Le tout pour vous offrir une viande incomparable.", "site_name": "Le Porc de Beaurivage"}
\ No newline at end of file
added data/enrich_cache/leprerieur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leprerieur.com", "logo_url": "https://www.leprerieur.com/wp-content/uploads/2018/12/cropped-fv_pr-180x180.png", "cover_url": null, "description_meta": null, "site_name": "LE PR&Eacute; RIEUR"}
\ No newline at end of file
added data/enrich_cache/lepresbytere.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lepresbytere.ca", "logo_url": "https://lepresbytere.ca/wp-content/uploads/2019/03/Fichier-2@logo-lpic-bois-skate-board.png", "cover_url": "https://lepresbytere.ca/wp-content/uploads/2019/03/800x700-entre-presbytere.jpg", "description_meta": "Amateurs de produits forestiers? Mordus des bi\u00e8res de microbrasserie?", "site_name": "Le Presbyt\u00e8re"}
\ No newline at end of file
added data/enrich_cache/leptitmarcel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leptitmarcel.ca", "logo_url": "https://www.leptitmarcel.ca/wp-content/uploads/2021/11/le-ptit-marcel-circle-logo.png", "cover_url": "https://www.leptitmarcel.ca/wp-content/uploads/2021/12/preview-img.jpg", "description_meta": null, "site_name": "Le P&#039;tit Marcel"}
\ No newline at end of file
added data/enrich_cache/lequairestopub.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lequairestopub.com", "logo_url": "https://static.wixstatic.com/media/9402cc_d63a2e53dd5346eb9ba5edc25f5c5d20%7Emv2_d_1920_1280_s_2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/9402cc_d63a2e53dd5346eb9ba5edc25f5c5d20%7Emv2_d_1920_1280_s_2.jpg", "cover_url": "https://static.wixstatic.com/media/9402cc_6bd8990ef012495e94ee43c83fe0c5c7~mv2.jpg/v1/fill/w_2500,h_1701,al_c/9402cc_6bd8990ef012495e94ee43c83fe0c5c7~mv2.jpg", "description_meta": null, "site_name": "Le Quai Resto Pub"}
\ No newline at end of file
added data/enrich_cache/lequotidien.com:443.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lequotidien.com:443", "logo_url": "https://www.lequotidien.com:443/favicon.ico", "cover_url": null, "description_meta": "Le Quotidien, le m\u00e9dia coop\u00e9ratif du Saguenay-Lac-St-Jean, pour les gens du Saguenay-Lac-St-Jean, qui appartient \u00e0 des gens du Saguenay-Lac-St-Jean.", "site_name": "le-quotidien"}
\ No newline at end of file
added data/enrich_cache/lerang.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lerang.ca", "logo_url": "https://lerang.ca/cdn/shop/files/r_noir_194x194_crop_center.png?v=1636042508", "cover_url": "https://cdn.shopify.com/s/files/1/0594/9800/4649/files/BANDEAU_1_91e87bd2-b409-4a1c-a3e9-5a8b753c8adb.png?v=1636746626", "description_meta": "Des produits gourmands \u00e0 base de camerises du Qu\u00e9bec", "site_name": "Le Rang"}
\ No newline at end of file
added data/enrich_cache/lereflet.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lereflet.qc.ca", "logo_url": "https://lereflet.qc.ca/wp-content/uploads/sites/5/2026/02/cropped-favicon-v-renverse-180x180.jpg", "cover_url": "https://lereflet.qc.ca/wp-content/uploads/sites/5/2025/10/le-reflet-gravitemedia.jpg", "description_meta": "Le Reflet est un incontournable de l&#039;actualit\u00e9 \u00e0 Candiac, Delson, La Prairie, Saint-Constant, Saint-Mathieu, Saint-Philippe et Sainte-Catherine.", "site_name": "Le Reflet"}
\ No newline at end of file
added data/enrich_cache/lerelaisdespins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lerelaisdespins.com", "logo_url": "https://lerelaisdespins.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Le Relais des pins"}
\ No newline at end of file
added data/enrich_cache/lereseausouterrain.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lereseausouterrain.ca", "logo_url": "https://www.lereseausouterrain.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/6372dd8bd1b0a757546c9134/t/695e9f82d799b0531565d1ac/1767808898092/anthracite.jpg?format=1500w", "description_meta": "Champignons frais Sherbrooke \u2014 Crini\u00e8re de Lion, Pleurotes, Chestnut, Morilles, Champignons sauvages &#124; Le R\u00e9seau Souterrain", "site_name": "Le R\u00e9seau Souterrain"}
\ No newline at end of file
added data/enrich_cache/lerudit.cafe.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lerudit.cafe", "logo_url": "https://lerudit.cafe/cdn/shop/files/Plume_Erudit_ROND.png?crop=center&height=32&v=1741971482&width=32", "cover_url": "http://lerudit.cafe/cdn/shop/files/LargeArtboard_1600.png?v=1741723665", "description_meta": "Entrez dans l&#39;univers de L&#39;\u00c9rudit Caf\u00e9", "site_name": "L&#39;\u00c9rudit Caf\u00e9"}
\ No newline at end of file
added data/enrich_cache/les-patisseries-coraly.myshopify.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "les-patisseries-coraly.myshopify.com", "logo_url": "https://les-patisseries-coraly.myshopify.com/favicon.ico", "cover_url": "http://les-patisseries-coraly.myshopify.com/cdn/shop/files/logo_non_vectorise_pnj_sans_fond_96cdcd1a-74e3-4165-b3e4-e84c7984c505.png?v=1666127667", "description_meta": "Les P\u00e2tisseries De Coraly", "site_name": "Les P\u00e2tisseries De Coraly"}
\ No newline at end of file
added data/enrich_cache/les-produits-notre-dame-00.webself.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "les-produits-notre-dame-00.webself.net", "logo_url": "https://les-produits-notre-dame-00.webself.net/favicon.ico", "cover_url": null, "description_meta": "Vous \u00eates tous invit\u00e9s \u00e0 la Brasserie Chez Pierre! Avec un menu de bi\u00e8res all\u00e9chants et un menu app\u00e9tissant, ce design de brasserie fran\u00e7aise fera un malheur!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/les-savons-de-suzy1.company.site.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "les-savons-de-suzy1.company.site", "logo_url": "https://les-savons-de-suzy1.company.site/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/les400piedsdechampignon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "les400piedsdechampignon.com", "logo_url": "https://les400piedsdechampignon.com/cdn/shop/files/logo_v004_32x32.jpg?v=1614315201", "cover_url": "http://les400piedsdechampignon.com/cdn/shop/files/les400logo_1200x1200.jpg?v=1614356675", "description_meta": "Ferme de champignons urbaine \u00e0 Montr\u00e9al", "site_name": "Les 400 Pieds de Champignon"}
\ No newline at end of file
added data/enrich_cache/les5moulins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "les5moulins.com", "logo_url": "https://static.wixstatic.com/media/f7da6a_8715bb3a93c44af48a20defbc2a97d93%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/f7da6a_8715bb3a93c44af48a20defbc2a97d93%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/f7da6a_b825c7d21d584fd9a66e03a868f0503c%7Emv2.png/v1/fit/w_2500,h_1330,al_c/f7da6a_b825c7d21d584fd9a66e03a868f0503c%7Emv2.png", "description_meta": "Restaurant situ\u00e9 \u00e0 La Guadeloupe, pr\u00e8s de Saint-Georges et de Thetford Mines o\u00f9 le menu met en vedette les ressources locales.", "site_name": "Les 5 Moulins"}
\ No newline at end of file
added data/enrich_cache/lesagebrasseur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesagebrasseur.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5e1d2a4bc073220654fa30f5/1593829680927-E1P2O87BX9HH5OBBI716/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5e1d2a4bc073220654fa30f5/t/5effe6a1e5e0f777e3045411/1593829031389/Logo_blc.png?format=1500w", "description_meta": null, "site_name": "le SAGE brasseur"}
\ No newline at end of file
added data/enrich_cache/lesaintcreme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesaintcreme.com", "logo_url": "https://static.wixstatic.com/media/5b67b0_d9e16517d329422aa6c2875146406eff%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5b67b0_d9e16517d329422aa6c2875146406eff%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesaintfut.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesaintfut.com", "logo_url": "https://lesaintfut.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesainti.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesainti.com", "logo_url": "https://www.lesainti.com/wp-content/uploads/2021/04/SAINTI_icon-300x300.png", "cover_url": "https://www.lesainti.com/wp-content/uploads/2021/10/thumbleftT-copy.png", "description_meta": "LE SAINTI Vin &amp; Terroir Ouvert \u00e0 l&rsquo;ann\u00e9e Nouvel-an 2025 English menu Brunch 4 janvier Menu Midi Vin &amp; Terroir 06/15 \u00c0 propos Le Sainti est situ\u00e9 directement devant la magnifique plage de Saint-Ir\u00e9n\u00e9e dans Charlevoix. Mettant de l\u2019avant les produits du terroir et les vins d\u2019importation priv\u00e9e, Le Sainti se d\u00e9marque par sa d\u00e9licieuse [&hellip;]", "site_name": "Le Sainti - Charlevoix"}
\ No newline at end of file
added data/enrich_cache/lesamisbeaurepaire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesamisbeaurepaire.com", "logo_url": "https://static.wixstatic.com/media/87fd43_902c0bbf9a8442e0808cd65dc56f9449%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/87fd43_902c0bbf9a8442e0808cd65dc56f9449%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesappeauxdusaintlaurent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesappeauxdusaintlaurent.com", "logo_url": "https://lesappeauxdusaintlaurent.com/boutique/image/catalog/-image/Logo/Image6.png", "cover_url": null, "description_meta": "Appeaux de bois et produits d\u00e9coratifs fabriqu\u00e9s \u00e0 la main au Qu\u00e9bec. Am\u00e9liore les succ\u00e8s de chasse et vous procurera plusieurs moments de plaisirs.", "site_name": "Les appeaux du Saint-Laurent"}
\ No newline at end of file
added data/enrich_cache/lesargousierslacbrome.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesargousierslacbrome.com", "logo_url": "https://static.wixstatic.com/media/b035f3_81d521137060462280cddad87623d893%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/b035f3_81d521137060462280cddad87623d893%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": "Les Argousiers du Lac Brome Inc"}
\ No newline at end of file
added data/enrich_cache/lesasdufumoir.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesasdufumoir.ca", "logo_url": "https://lesasdufumoir.ca/cdn/shop/files/cropped-A_squaregris-01_32x32.webp?v=1668183342", "cover_url": "http://lesasdufumoir.ca/cdn/shop/files/touslesprodutis.bak.jpg?v=1669128129", "description_meta": "Apportez la saveur de fum\u00e9 \u00e0 votre assiette gr\u00e2ce aux \u00e9pices fum\u00e9s des As du fumoir. Notre vaste gamme de produits fum\u00e9s est certains d\u2019apporter de l\u2019originalit\u00e9 \u00e0 vos repas. Un coup de coeur assur\u00e9!", "site_name": "Les as du fumoir"}
\ No newline at end of file
added data/enrich_cache/lesbalcons.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbalcons.ca", "logo_url": "https://lesbalcons.ca/favicon-512.png", "cover_url": "https://cdn.sanity.io/images/cx8ev1gh/production/f6204bbd1e4fb00e088351e7519cfbb85b36d814-1024x1024.png?rect=0,243,1024,538&#38;w=1200&#38;h=630&#38;q=85&#38;auto=format", "description_meta": "Les Balcons \u00e2\u0080\u0094 Auberge &#38; Bistro culturel \u00c3\u00a0 Baie-Saint-Paul, Charlevoix", "site_name": "Les Balcons - Auberge &#38; BIstro culturel \u00c3\u00a0 Baie-Saint-Paul, Charlevoix"}
\ No newline at end of file
added data/enrich_cache/lesbalconscorriveau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbalconscorriveau.ca", "logo_url": "https://qtrypzzcjebvfcihiynt.supabase.co/storage/v1/object/public/base44-prod/public/693567233a961f75abb83782/d0ed6b97b_IMG_0906.png", "cover_url": "https://qtrypzzcjebvfcihiynt.supabase.co/storage/v1/render/image/public/base44-prod/public/693567233a961f75abb83782/566cc4966_IMG_0906.PNG?width=1200&amp;height=630&amp;resize=contain", "description_meta": "Les Balcons de Corriveau manages 5 data types including contact requests. Helps you organize, track, and share your work in 1 place for teams and solo users.", "site_name": "Les Balcons de Corriveau"}
\ No newline at end of file
added data/enrich_cache/lesbecs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbecs.ca", "logo_url": "https://lesbecs.ca/wp-content/uploads/2021/06/favicon-les-becs.png", "cover_url": "http://lesbecs.ca/wp-content/uploads/2021/06/image-de-partage-becs.jpg", "description_meta": "Les Becs Sucr\u00e9s-Sal\u00e9s sont la r\u00e9f\u00e9rence en produits r\u00e9gionaux en Abitibi-T\u00e9miscamingue. Visiter la boutique en ligne.", "site_name": "Les Becs Sucr\u00e9s Sal\u00e9s"}
\ No newline at end of file
added data/enrich_cache/lesbeurres.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbeurres.ca", "logo_url": "https://lesbeurres.ca/cdn/shop/files/Favicon_3f1a6e6e-c1f5-438a-8da2-17c886c38562.png?v=1744988139&width=32", "cover_url": "http://lesbeurres.ca/cdn/shop/files/facebook_logo.png?v=1753211960", "description_meta": "Ne suffit qu&#39;\u00e0 ajouter un morceau de l&#39;un de nos beurres aromatis\u00e9s pour transformer votre repas en une exp\u00e9rience gastronomique!", "site_name": "LES BEURR\u00c9S"}
\ No newline at end of file
added data/enrich_cache/lesbijouxtherrien.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbijouxtherrien.com", "logo_url": "https://static.wixstatic.com/media/c71443_8c251583785c47de8243822faf2d3e91%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/c71443_8c251583785c47de8243822faf2d3e91%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesbleuetsdumarquis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbleuetsdumarquis.com", "logo_url": "https://lesbleuetsdumarquis.com/favicon.ico", "cover_url": null, "description_meta": "Autocueillette Bleuets Mont\u00e9r\u00e9gie. Ambiance familiale, venez faire votre cueillette de nos bleuets gros et sucr\u00e9s. Mi-juillet \u00e0 fin ao\u00fbt.", "site_name": "Les Bleuets Bio du Marquis | Bleueti\u00e8re Mont\u00e9gr\u00e9gie"}
\ No newline at end of file
added data/enrich_cache/lesbleuetsduvirecrepes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbleuetsduvirecrepes.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesbobines.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbobines.com", "logo_url": "https://lesbobines.com/favicon.png", "cover_url": null, "description_meta": "La Ferme piscicole des Bobines offre une gamme de produits de qualit\u00e9 sup\u00e9rieure issus de truites arc-en-ciel.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesboisesdamelie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesboisesdamelie.com", "logo_url": "https://lesboisesdamelie.com/wp-content/uploads/2021/07/cropped-Untitled-6-1-180x180.png", "cover_url": "https://lesboisesdamelie.com/wp-content/uploads/2021/09/la-cabane-a-sucre-1.png", "description_meta": "La cabane \u00e0 sucre Les bois\u00e9s d&#039;Am\u00e9lie En cette p\u00e9riode exceptionnelle, nous avons d\u00e9cid\u00e9 de retrousser nos manches", "site_name": "Les Bois\u00e9s d&#039;Am\u00e9lie"}
\ No newline at end of file
added data/enrich_cache/lesbonyeuses.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbonyeuses.ca", "logo_url": "https://cdn.prod.website-files.com/627fbeab694dfd0bb3a0d1f5/62b0828b442187313a63f04c_bonyeuses_webclip.png", "cover_url": "https://cdn.prod.website-files.com/627fbeab694dfd0bb3a0d1f5/666ef9a2be4c64f61b0f0225_LesBonyeuses-Officiel-CouleursFondBeige.jpg", "description_meta": "Bienvenue chez Les Bonyeuses, boulangeries artisanales situ\u00e9es \u00e0 Baie-Saint-Paul et \u00e0 Beaupr\u00e9. D\u00e9couvrez nos pains frais, viennoiseries, caf\u00e9s de sp\u00e9cialit\u00e9, et produits du terroir. Profitez de notre ambiance chaleureuse et de nos offres promotionnelles. Visitez notre site web aujourd&#x27;hui!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesbrasseursdelegumes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbrasseursdelegumes.ca", "logo_url": "https://www.lesbrasseursdelegumes.ca/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesbrebisdubeaurivage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbrebisdubeaurivage.com", "logo_url": "https://images.panierdachat.app/842/2uzj9HWw_attachment-1-1-copie.jpeg?w=32&amp;h=32&amp;fit=max", "cover_url": "https://images.panierdachat.app/842/UqIjRxzr_attachment-1-1-copie.jpeg?w=1200&h=630&fit=fill", "description_meta": "Les brebis du Beaurivage: Lait de brebis, viande agneau, laine, couvertures de laine, peaux de moutons, savon au lait de brebis, sujets reproducteurs East Friesian.", "site_name": "Les brebis du Beaurivage"}
\ No newline at end of file
added data/enrich_cache/lesbrulesfumeurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbrulesfumeurs.com", "logo_url": "https://lesbrulesfumeurs.com/favicon.ico", "cover_url": "http://lesbrulesfumeurs.com/cdn/shop/files/logonoir.jpg?height=628&pad_color=ffffff&v=1736097766&width=1200", "description_meta": "Produits alimentaires fum\u00e9s, camion de cuisine de rue et services de traiteurs", "site_name": "Les Br\u00fbl\u00e9s Artisans Fumeurs"}
\ No newline at end of file
added data/enrich_cache/lesbrutes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesbrutes.ca", "logo_url": "https://lesbrutes.ca/favicon.ico", "cover_url": "http://lesbrutes.ca/cdn/shop/files/3_000_VB-1512_Ferme_Ge_uli_-_Logo_Les_Brutes.png?v=1741011242", "description_meta": "PVT - Prot\u00e9ine v\u00e9g\u00e9tale textur\u00e9e - Les Brutes - PVT du Canada - V\u00e9gan - Sans gluten - Sans lactose - Soya - Soja", "site_name": "LES BRUTES"}
\ No newline at end of file
added data/enrich_cache/lescafesdaurelie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescafesdaurelie.com", "logo_url": "https://lescafesdaurelie.com/wp-content/uploads/2020/12/cropped-logo_ico-180x180.png", "cover_url": "https://lescafesdaurelie.com/wp-content/uploads/2023/09/logo.png", "description_meta": null, "site_name": "Les caf\u00e9s d&#039;Aur\u00e9lie - Micro-torr\u00e9facteur au Saguenay"}
\ No newline at end of file
added data/enrich_cache/lescanardises.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescanardises.com", "logo_url": "https://www.lescanardises.com/wp-content/uploads/2026/03/cropped-LOGOWEB-180x180.jpg", "cover_url": "https://www.lescanardises.com/wp-content/uploads/2020/10/photos-presentation-les-canardises-1-Copie.jpg", "description_meta": "D\u00e9couvrez nos produits de canard issus de notre \u00e9levage en plein air. Foie Gras, Mousse, Plats cuisin\u00e9s, Rillettes.", "site_name": "Les Canardises"}
\ No newline at end of file
added data/enrich_cache/lescapricesdantan.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescapricesdantan.qc.ca", "logo_url": "https://lescapricesdantan.qc.ca/wp-content/uploads/2016/04/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/leschaletsducap.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leschaletsducap.com", "logo_url": "https://leschaletsducap.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/leschandellesderose.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leschandellesderose.ca", "logo_url": "https://leschandellesderose.ca/favicon.ico", "cover_url": "http://leschandellesderose.ca/cdn/shop/files/bougie-chandelle-artisanale-cire-de-soja-rimouski_cc9793e5-994c-4d03-9697-8486a2757db6.jpg?v=1760451417", "description_meta": "Offrez \u00e0 votre quotidien la douceur de nos chandelles artisanales en cire de soya, \u00e9coresponsables et coul\u00e9es \u00e0 la main au Qu\u00e9bec. Nos fragrances cozy et raffin\u00e9es cr\u00e9ent une ambiance chaleureuse et r\u00e9confortante, id\u00e9ale pour vos instants de d\u00e9tente et de cocooning.", "site_name": "Les Chandelles de Rose"}
\ No newline at end of file
added data/enrich_cache/leschantsdufleuve.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leschantsdufleuve.ca", "logo_url": "https://static.wixstatic.com/media/58e17e_8b1a63c21f684a8f9443a030fb28c850%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/58e17e_8b1a63c21f684a8f9443a030fb28c850%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/58e17e_01ac06b55a2a49a4b537ad6da91fb5a9%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/58e17e_01ac06b55a2a49a4b537ad6da91fb5a9%7Emv2.jpg", "description_meta": "Kombucha fi\u00e8rement brass\u00e9 au Bas-St-Laurent. Sant\u00e9, local et fait de petits fruits. 1% remis pour la protection du Fleuve!", "site_name": "CDF Kombucha"}
\ No newline at end of file
added data/enrich_cache/leschouxgras.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leschouxgras.com", "logo_url": "https://leschouxgras.com/cdn/shop/files/Favicon_32x32.png?v=1614311241", "cover_url": "http://leschouxgras.com/cdn/shop/files/LogoHeaderDesktop_1200x1200.png?v=1614307749", "description_meta": "Nous rassemblons des membres passionn\u00e9s par la permaculture qui offre des services : design, am\u00e9nagement comestibles, conseils, accompagnement de projets et formation. Nous d\u00e9veloppons aussi un site mod\u00e8le pour promouvoir une culture durable.", "site_name": "Coop Les Choux Gras"}
\ No newline at end of file
added data/enrich_cache/lescocagnes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescocagnes.ca", "logo_url": "https://static.wixstatic.com/media/67a71d_7141ec0183064ca4911ebb45419f09cd%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/67a71d_7141ec0183064ca4911ebb45419f09cd%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/67a71d_814a767246ed4bb1a6491a2da5e6aa0d~mv2.jpg/v1/fill/w_2500,h_1507,al_c/67a71d_814a767246ed4bb1a6491a2da5e6aa0d~mv2.jpg", "description_meta": "L", "site_name": "Cocagnes"}
\ No newline at end of file
added data/enrich_cache/lescouleursdevero.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescouleursdevero.com", "logo_url": "https://www.lescouleursdevero.com/cdn/shop/files/cercle_13logo-CV.png?crop=center&height=32&v=1727360696&width=32", "cover_url": "http://www.lescouleursdevero.com/cdn/shop/files/Couverture_-_Les_couleurs_de_Vero_09965cd8-7ddd-49b0-8cae-beff4fe25419.png?v=1723691950", "description_meta": "D\u00e9couvrez nos produits artisanaux uniques, moul\u00e9s et mont\u00e9s \u00e0 la main : stylos uniques, stylets pour diamond painting, s\u00e9parateurs de couture, stylos et colliers d&#39;aromath\u00e9rapie, et bien plus encore ! Qualit\u00e9 exceptionnelle et design exclusif pour personnaliser votre quotidien.", "site_name": "Les Couleurs de V\u00e9ro"}
\ No newline at end of file
added data/enrich_cache/lescoureursdejupons.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescoureursdejupons.ca", "logo_url": "https://lescoureursdejupons.ca/cdn/shop/files/Sigle-LCDJ-Instagram-152x152px-FondBlanc.png?crop=center&height=32&v=1755878139&width=32", "cover_url": "http://lescoureursdejupons.ca/cdn/shop/files/Logo_Les_Coureurs_de_jupons_-_Copy_2b4ee08b-5e3a-4da2-a810-7227125cf98c.jpg?v=1732648865", "description_meta": "Une boutique qui a pour mission de promouvoir les cr\u00e9ateurs d&#39;ici. Pour trouver les plus beaux v\u00eatements, bijoux, accessoires et objets cadeaux con\u00e7us et fabriqu\u00e9s au Qu\u00e9bec avec amour et talent. V\u00eatements, bijoux, accessoires et objets cadeaux \u00e9thiques, locaux, \u00e9quitables et originaux pour femmes, hommes et enfants.", "site_name": "Les Coureurs de jupons"}
\ No newline at end of file
added data/enrich_cache/lescraquantes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescraquantes.ca", "logo_url": "https://www.lescraquantes.ca/uploads/b/7b049c90-2431-11ee-a43d-c596b5a1f283/icon_180x180_ios_NTIzOT.png?width=180", "cover_url": "https://www.lescraquantes.ca/uploads/b/7b049c90-2431-11ee-a43d-c596b5a1f283/granola-web2.png", "description_meta": "Granola maison et collations sant\u00e9 faits d&#039;ingr\u00e9dients biologiques et locaux. Sains, simples et savoureux, cuisin\u00e9s au Kamouraska.", "site_name": "Les Craquantes"}
\ No newline at end of file
added data/enrich_cache/lescreationsfol-artists.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescreationsfol-artists.com", "logo_url": "https://lescreationsfol-artists.com/cdn/shop/files/FA_NB_V05.png?crop=center&height=32&v=1721162157&width=32", "cover_url": "http://lescreationsfol-artists.com/cdn/shop/files/Fol-Artists_89_partage-reseaux-sociaux_petit_7edf024f-1644-42aa-81c8-7df0d5421236.jpg?crop=center&height=1200&v=1612454176&width=1200", "description_meta": "Boutique en ligne de foulards et tuques multifonctions avec poche secr\u00e8te pour femmes et pour hommes con\u00e7us et cr\u00e9es au Qu\u00e9bec. Des collections pour toutes les saisons! Ces produits sont uniques au Canada.", "site_name": "Les Cr\u00e9ations Fol-Artists"}
\ No newline at end of file
added data/enrich_cache/lescrudelices.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lescrudelices.ca", "logo_url": "https://www.lescrudelices.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/65ca3d1d60aa30016784a290/t/65cbc9e43626925548a56e30/1707854308816/Logo+Crudelice_dessinNOIR_texteCOULEUR_RGB.png?format=1500w", "description_meta": "P\u00e2tisserie v\u00e9g\u00e9tale et crue \u00e0 Granby. Des p\u00e2tisseries cr\u00e9atives, joyeuses, gourmandes et revitalisantes. Nos p\u00e2tisseries sont tr\u00e8s digestes et riches en micronutriments. Elles sont parfaites pour les personnes sensibles au lactose au gluten. Pour les personnes d\u00e9sireuses de satisfaire leur gourmandi", "site_name": "lescrudelices.ca"}
\ No newline at end of file
added data/enrich_cache/lesculturesdularge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesculturesdularge.com", "logo_url": "https://lesculturesdularge.com/wp-content/uploads/2020/04/cropped-Les-Cultures-du-Large-1-1-180x180.jpg", "cover_url": "https://lesculturesdularge.com/wp-content/uploads/2020/04/cropped-Les-Cultures-du-Large-1-1.jpg", "description_meta": null, "site_name": "Cultures du Large"}
\ No newline at end of file
added data/enrich_cache/lesdelicesdemichele.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesdelicesdemichele.com", "logo_url": "https://lesdelicesdemichele.com/image/favicon.png", "cover_url": null, "description_meta": "Les D\u00c3\u00a9lices de Mich\u00c3\u00a8le, \u00c3\u00a0 la fois sauvages et originaux, mettent en valeur les petits fruits de la C\u00c3\u00b4te-Nord, par le biais de leurs incontournables tartinades, fondants ou chocolats.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesdependances.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesdependances.com", "logo_url": "https://lesdependances.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesderiveuses.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesderiveuses.com", "logo_url": "https://lesderiveuses.com/cdn/shop/files/Cercle_1.png?crop=center&height=32&v=1765859744&width=32", "cover_url": "http://lesderiveuses.com/cdn/shop/files/Bon-Logo_LesDeriveuses_Vectorise-01.png?v=1730939323", "description_meta": "Les D\u00e9riveuses proposent des cr\u00e9ations originales de v\u00eatements et d&#39;accessoires inspir\u00e9es des richesses de la Minganie. C&#39;est une compagnie Qu\u00e9b\u00e9coise de la C\u00f4te-Nord.", "site_name": "Les D\u00e9riveuses"}
\ No newline at end of file
added data/enrich_cache/leseboulements.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leseboulements.com", "logo_url": "https://leseboulements.com/wp-content/uploads/2025/09/FAV-Eboulements-300x300.png", "cover_url": "https://leseboulements.com/wp-content/uploads/2025/09/Visuel-RS-Eboulements.jpg", "description_meta": "Bienvenue \u00e0 Les \u00c9boulements : d\u00e9couvrez les services municipaux, les r\u00e8glements d\u2019urbanisme, les actualit\u00e9s locales, les loisirs, l\u2019h\u00e9bergement et bien plus encore pour am\u00e9liorer la vie citoyenne dans notre magnifique r\u00e9gion.", "site_name": "Municipalit\u00e9 Les \u00c9boulements"}
\ No newline at end of file
added data/enrich_cache/leseltzer.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leseltzer.ca", "logo_url": "https://www.leseltzer.ca/cdn/shop/files/favicon-32x32_32x32.png?v=1739902269", "cover_url": "http://www.leseltzer.ca/cdn/shop/files/SELTZER_LOGO_NOIR_ffce32d1-ebff-4f29-a68e-0c4c28945b02.png?v=1643505570", "description_meta": "le seltzer", "site_name": "le seltzer"}
\ No newline at end of file
added data/enrich_cache/lesfillesfattoush.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesfillesfattoush.com", "logo_url": "https://lesfillesfattoush.com/cdn/shop/files/Logo_les_filles_fattoush_32x32.png?v=1776364698", "cover_url": null, "description_meta": "Our range of fine Syrian products evokes generous memories of our beautiful country and highlights the richness of a thousand-year-old gastronomy. For us, it&#39;s also an invitation to forge links between our two cultures.", "site_name": "Les filles fattoush"}
\ No newline at end of file
added data/enrich_cache/lesfinesherbespardaniel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesfinesherbespardaniel.com", "logo_url": "https://www.lesfinesherbespardaniel.com/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesfleursmaltais.biz.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesfleursmaltais.biz", "logo_url": "https://static.wixstatic.com/media/38339b_9eece76ccb4b400ebdc92bd4ecb52819%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/38339b_9eece76ccb4b400ebdc92bd4ecb52819%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesgarsdesaucisse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesgarsdesaucisse.com", "logo_url": "https://www.lesgarsdesaucisse.com/favicon.svg", "cover_url": "https://www.lesgarsdesaucisse.com/assets/mascot-hero.png", "description_meta": "D\u00e9couvrez Les Gars de Saucisse, une entreprise qu\u00e9b\u00e9coise qui propose des saucisses et des produits g\u00e9n\u00e9reux, des recettes et des points de vente pr\u00e8s de chez vous.", "site_name": "Les Gars de Saucisse"}
\ No newline at end of file
added data/enrich_cache/lesgrandsbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesgrandsbois.com", "logo_url": "https://lesgrandsbois.com/wp-content/uploads/2022/11/cropped-Favicon-180x180.png", "cover_url": "https://lesgrandsbois.com/wp-content/uploads/2024/01/general-web_grandbois_no-grain-1024x576.jpg", "description_meta": "Les Grands Bois, c&#039;est l\u00e0 o\u00f9 les arts et la bi\u00e8re se rencontrent et rassemblent les communaut\u00e9s. Depuis 2016, leur dynamisme fait vibrer la r\u00e9gion.", "site_name": "Les Grands Bois"}
\ No newline at end of file
added data/enrich_cache/lesilo.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesilo.co", "logo_url": "https://www.lesilo.co/android-icon-192x192.png", "cover_url": "https://www.lesilo.co/wp-content/uploads/2022/03/SocialMediaCarre800.png", "description_meta": "Le Silo, votre solution pour cr\u00c3\u00a9er un panier de provisions locales, biologiques et \u00c3\u00a9quitables avec un minimum d\u00e2\u0080\u0099emballage. Tout ce dont vous avez besoin en un arr\u00c3\u00aat!", "site_name": "Le Silo"}
\ No newline at end of file
added data/enrich_cache/lesindustriesgroom.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesindustriesgroom.com", "logo_url": "https://lesindustriesgroom.com/cdn/shop/files/logo-grrom4.png?crop=center&height=32&v=1613523887&width=32", "cover_url": "http://lesindustriesgroom.com/cdn/shop/files/Les_Industries_GROOM_19103148906_Web_copy.jpg?v=1596137039&width=1998", "description_meta": "Produits de soin pour la barbe, le rasage et le corps, faits \u00e0 la main \u00e0 partir d\u2019ingr\u00e9dients naturels fabriqu\u00e9s dans notre atelier de Montr\u00e9al.", "site_name": "GROOM"}
\ No newline at end of file
added data/enrich_cache/lesjardinsbolton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinsbolton.com", "logo_url": "https://www.lesjardinsbolton.com/uploads/b/065c82e0-e0b0-11ee-9946-33161d4e8d8d/icon_180x180_ios_NTEzOT.png?width=180", "cover_url": null, "description_meta": null, "site_name": "Les Jardins Bolton"}
\ No newline at end of file
added data/enrich_cache/lesjardinschezbettez.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinschezbettez.com", "logo_url": "https://www.lesjardinschezbettez.com/favicon.ico", "cover_url": "https://www.lesjardinschezbettez.com/uploads/1/3/7/5/137507234/jardin-chez-bettez_orig.jpg", "description_meta": "L\u00e9gumes frais et locaux, cultiv\u00e9s sans pesticide et engrais chimique.\u200b", "site_name": "Les Jardins chez Bettez"}
\ No newline at end of file
added data/enrich_cache/lesjardinsdambroise.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinsdambroise.com", "logo_url": "https://lesjardinsdambroise.com/favicon.ico?1728650623", "cover_url": null, "description_meta": "Bienvenue aux Jardins d\u00e2\u0080\u0099Ambroise, nous vous remercions de votre int\u00c3\u00a9r\u00c3\u00aat pour l\u00e2\u0080\u0099agriculture biologique locale.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesjardinsdelisabeth.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinsdelisabeth.com", "logo_url": "https://lesjardinsdelisabeth.com/favicon.ico", "cover_url": "http://lesjardinsdelisabeth.com/cdn/shop/files/Kiosque_serre.jpg?v=1642450545", "description_meta": "Ferme mara\u00eech\u00e8re biologique. Cultures de l\u00e9gumes, fines herbes, micropousses, gingembre, champignons. Offre de produits transform\u00e9s: ketchups, marinades, l\u00e9gumes lactoferment\u00e9s, ail noir...", "site_name": "Les jardins d&#39;Elisabeth"}
\ No newline at end of file
added data/enrich_cache/lesjardinsdesophie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinsdesophie.com", "logo_url": "https://www.lesjardinsdesophie.com/wp-content/themes/nubee/library/favicon/apple-touch-icon.png", "cover_url": "https://www.lesjardinsdesophie.com/wp-content/uploads/2026/02/img_8528.jpg", "description_meta": null, "site_name": "Les Jardins de Sophie"}
\ No newline at end of file
added data/enrich_cache/lesjardinsdublin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinsdublin.com", "logo_url": "https://static.wixstatic.com/media/8d58a2_8e135b461e8b4d8096bf716e7817ef09%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/8d58a2_8e135b461e8b4d8096bf716e7817ef09%7Emv2.jpg", "cover_url": null, "description_meta": "Les Jardins Dublin sont situ\u00e9s \u00e0 Inverness. Producteurs de l\u00e9gumes frais certifi\u00e9 biologique. Kiosque \u00e0 la ferme, Panier Bio et March\u00e9 public.", "site_name": "Les Jardins Dublin"}
\ No newline at end of file
added data/enrich_cache/lesjardinsducentre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinsducentre.com", "logo_url": "https://lesjardinsducentre.com/wp-content/uploads/2020/02/cropped-mini-300x300.png", "cover_url": "https://lesjardinsducentre.com/wp-content/uploads/2020/02/airepic.jpg", "description_meta": "Une \u00e9picerie du terroir qui regorge de fruits et de l\u00e9gumes frais, cultiv\u00e9s avec passion dans le respect de l\u2019environnement. Visites guid\u00e9es, cabane \u00e0 sucre mobile, auto-cueillette de petits fruits et de citrouilles etc.", "site_name": "Les Jardins du Centre"}
\ No newline at end of file
added data/enrich_cache/lesjardinsdusaguenay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinsdusaguenay.com", "logo_url": "https://lesjardinsdusaguenay.com/assets/icons/apple-touch-icon-152x152.png", "cover_url": null, "description_meta": "D\u00e9couvrez Les Jardins du Saguenay, votre grossiste de confiance \u00e0 Jonqui\u00e8re pour des produits frais et un service exceptionnel.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesjardinskaizen.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinskaizen.com", "logo_url": "https://static.wixstatic.com/media/955364_50ceb617a0064758b9c3f7ced710b706%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/955364_50ceb617a0064758b9c3f7ced710b706%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesjardinsrevertere.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjardinsrevertere.ca", "logo_url": "https://lesjardinsrevertere.ca/boutique/image/catalog/-Logo/Petit_Logo_LoWRES.png", "cover_url": null, "description_meta": "Produits de l\u00e9gumes sans pesticides ni engrais chimiques. Produits d", "site_name": "Les Jardins Revertere S.E.N.C."}
\ No newline at end of file
added data/enrich_cache/lesjusnaturelsbens.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesjusnaturelsbens.com", "logo_url": "https://lesjusnaturelsbens.com/apple-touch-icon.png", "cover_url": null, "description_meta": "Les Jus Naturels Ben", "site_name": "Les Jus Naturels Ben"}
\ No newline at end of file
added data/enrich_cache/lesmainsdici.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesmainsdici.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5ba965c7aadd344951053b44/adb87a62-e549-4a8f-9677-5bed6c07f039/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5ba965c7aadd344951053b44/t/65b14fffd21d883176d9bfa1/1706119182940/Les+mains+d%27ici+sac+en+maroquinerie+fait+mains+au+qu%C3%A9bec+savoir+faire+qu%C3%A9becois.jpg?format=1500w", "description_meta": "Les Mains d", "site_name": "Les Mains d"}
\ No newline at end of file
added data/enrich_cache/lesminettes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesminettes.ca", "logo_url": "https://lesminettes.ca/cdn/shop/files/Favicon_Minettes_32x32.png?v=1723061916", "cover_url": "http://lesminettes.ca/cdn/shop/files/Notre-boutique-gourmande_exterieur_701f1e0e-7382-4cf7-a5ed-6316f248e90e.jpg?v=1738602434", "description_meta": "D\u00e9couvrez Les Minettes, une \u00e9picerie fine \u00e0 Laval d\u00e9di\u00e9e aux produits du Qu\u00e9bec. Une destination gourmande incontournable pour savourer le meilleur de nos artisans qu\u00e9b\u00e9cois, et d\u00e9couvrir plus de 2000 produits d&#39;ici!", "site_name": "Les Minettes"}
\ No newline at end of file
added data/enrich_cache/lesmontagnesdelest.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesmontagnesdelest.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesmoulinsdelisleauxcoudres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesmoulinsdelisleauxcoudres.com", "logo_url": "https://lesmoulinsdelisleauxcoudres.com/cdn/shop/files/Fav_Moulins.jpg?crop=center&height=32&v=1677699501&width=32", "cover_url": "http://lesmoulinsdelisleauxcoudres.com/cdn/shop/files/RS_Moulins.jpg?v=1661523850", "description_meta": "Lieu unique du patrimoine qu\u00e9b\u00e9cois | D\u00e9couvrez pr\u00e8s de 200 ans d\u2019histoire... Un moulin \u00e0 vent, un moulin \u00e0 eau, la maison du meunier, expositions, ateliers \u00e9ducatifs, boutique et plus encore...", "site_name": "Les Moulins de l&#39;Isle-aux-Coudres"}
\ No newline at end of file
added data/enrich_cache/lesnorkotieres.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesnorkotieres.ca", "logo_url": "https://static.wixstatic.com/media/6ee773_b66c937a0e944559a56f4a96c35d7289%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/6ee773_b66c937a0e944559a56f4a96c35d7289%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesoleil.com:443.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesoleil.com:443", "logo_url": "https://www.lesoleil.com:443/favicon.ico", "cover_url": null, "description_meta": "Le Soleil, le m\u00e9dia coop\u00e9ratif de Qu\u00e9bec, pour les gens de Qu\u00e9bec, qui appartient \u00e0 des gens de Qu\u00e9bec.", "site_name": "le-soleil"}
\ No newline at end of file
added data/enrich_cache/lesomnambule.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesomnambule.com", "logo_url": "https://lesomnambule.com/wp-content/uploads/2024/06/le_somnanbule.png", "cover_url": "https://lesomnambule.com/wp-content/uploads/2024/07/Magnum-num-13-2-rotated.jpeg", "description_meta": "Cidres artisanaux, autocueillette de pommes, autocueillette de bleuets, jus de pommes, visites guid\u00e9es, terrasse et d\u00e9gustation dans la r\u00e9gion de Qu\u00e9bec.", "site_name": "Cidrerie Le somnambule - Cidres artisanaux dans chaudi\u00e8re-appalache"}
\ No newline at end of file
added data/enrich_cache/lespassionnees.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lespassionnees.ca", "logo_url": "https://www.lespassionnees.ca/favicon.ico", "cover_url": "http://www.lespassionnees.ca/cdn/shop/files/Les_passionnees.1.png?v=1732044434", "description_meta": "Two passionate work colleagues quickly discovered that they shared a common passion for nature and candles.", "site_name": "Les Passionn\u00e9es"}
\ No newline at end of file
added data/enrich_cache/lespaysansdufjord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lespaysansdufjord.com", "logo_url": "https://www.lespaysansdufjord.com/uploads/b/bf4ccd70-577f-11eb-bc9a-e5a81745a6bb/icon_180x180_ios_MTkyNj.png?width=180", "cover_url": "https://www.lespaysansdufjord.com/uploads/b/bf4ccd70-577f-11eb-bc9a-e5a81745a6bb/544985296_802687412414472_7127566252249677307_n.jpg", "description_meta": "Micro-ferme \u00e9cologique \u00e0 St-F\u00e9lix-d&#039;Otis\nD\u00e9couvrez notre kiosque et nos tables champ\u00eatres avec vue sur le fjord!", "site_name": "Les Paysans du Fjord"}
\ No newline at end of file
added data/enrich_cache/lespetitsgateauxdemaman.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lespetitsgateauxdemaman.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lespinsonsdesrives.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lespinsonsdesrives.com", "logo_url": "https://lespinsonsdesrives.com/favicon.ico", "cover_url": null, "description_meta": "google45518f2ffbe23f58.html", "site_name": "Les Pinsons des Rives - Chambres - Bistro - Caf\u00e9 - Jeux"}
\ No newline at end of file
added data/enrich_cache/lespritlibre.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lespritlibre.org", "logo_url": "https://www.lespritlibre.org/wp-content/uploads/2026/04/cropped-favicon-180x180.png", "cover_url": "https://www.lespritlibre.org/wp-content/uploads/2024/06/EL_Esprit-libre-logo3x2.png", "description_meta": "L\u2019Esprit libre, un collectif ind\u00e9pendant, offre une analyse approfondie de l\u2019actualit\u00e9. Nous publions des articles, organisons des d\u00e9bats et \u00e9ditons des livres pour enrichir le d\u00e9bat public. Rejoignez-nous pour une information de qualit\u00e9 et une perspective inclusive sur l\u2019actualit\u00e9.", "site_name": "\u00c9ditions L&#039;Esprit Libre"}
\ No newline at end of file
added data/enrich_cache/lesproductionsdurire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesproductionsdurire.com", "logo_url": "data:,", "cover_url": null, "description_meta": "lesproductionsdurire.com", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesproductionstechnomage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesproductionstechnomage.com", "logo_url": "https://lesproductionstechnomage.com/favicon.ico", "cover_url": null, "description_meta": "Animation et organisation d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesproduitscaju.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesproduitscaju.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesptitsmosus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesptitsmosus.com", "logo_url": "https://lesptitsmosus.com/cdn/shop/files/smileysclindoeil_a1e7ebe1-dfea-45b0-a5ed-4f59ddf5c0d8.png?crop=center&height=48&v=1651349244&width=48", "cover_url": null, "description_meta": "Magasin de mode b\u00e9b\u00e9 et enfant : accessoires, v\u00eatements, jouets et plus encore, le plus souvent con\u00e7us au Qu\u00e9bec. Magasinez en ligne ou en boutique.", "site_name": "les ptits mos\u00fcs"}
\ No newline at end of file
added data/enrich_cache/lesrecoltesmarcotte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesrecoltesmarcotte.com", "logo_url": "https://www.lesrecoltesmarcotte.com/favicon.ico", "cover_url": "https://irp.cdn-website.com/7b13420d/dms3rep/multi/opt/fresh-raw-fruits-vegetables-1920w.jpg", "description_meta": "D\u00e9couvrez une vari\u00e9t\u00e9 de produits frais et locaux. Soutenez l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesremorquesjelano.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesremorquesjelano.com", "logo_url": "https://www.lesremorquesjelano.com/public/media/favicon/android-icon-192x192.png?v=120826010815", "cover_url": null, "description_meta": "Notre mettons notre expertise \u00e0 votre service depuis 2002 pour fabriquer des remorques ferm\u00e9es sur mesure. Faites le choix de la qualit\u00e9.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesroydelapomme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesroydelapomme.com", "logo_url": "https://www.lesroydelapomme.com/wp-content/themes/ubeo-theme-v2-child/images/apple-touch-icon.png", "cover_url": "https://www.lesroydelapomme.com/wp-content/uploads/2019/05/facebook_share.png", "description_meta": "Notre verger, situ\u00e9 en Beauce, offre l\u2019autocueillette de pommes, prunes, citrouilles et bleuets en plus de plusieurs produits issus de la pomme, dont notre fameux cidre", "site_name": "Les Roy de la Pomme"}
\ No newline at end of file
added data/enrich_cache/lessaveursboreales.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lessaveursboreales.com", "logo_url": "https://www.lessaveursboreales.com/favicon.png", "cover_url": "https://www.lessaveursboreales.com/images/hero-forest.jpg", "description_meta": "D\u00e9couvrez les produits du terroir de la C\u00f4te-Nord du Qu\u00e9bec: champignons sauvages (chaga, chanterelle, bolet), th\u00e9 du Labrador, \u00e9pices bor\u00e9ales et poivre des dunes. Cueillette responsable en for\u00eat bor\u00e9ale \u00e0 Forestville.", "site_name": "Les Saveurs Bor\u00e9ales"}
\ No newline at end of file
added data/enrich_cache/lessaveursdelavallee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lessaveursdelavallee.com", "logo_url": "https://lessaveursdelavallee.com/wp-content/uploads/2020/05/cropped-favicon-1-180x180.png", "cover_url": "https://lessaveursdelavallee.com/wp-content/uploads/2020/08/Les-saveurs-de-la-Valle\u0301e-logo_petit.png", "description_meta": "Le march\u00e9 revient pour une 13e saison ! C&#039;est \u00e0 nouveau l\u2019occasion d\u2019avoir acc\u00e8s \u00e0 des produits frais,\u00a0locaux,\u00a0saisonniers\u00a0et de qualit\u00e9.\u00a0Vous pourrez ainsi choisir des produits du terroir dont vous connaissez la provenance.\u00a0 Le march\u00e9 vous permet par ailleurs d\u2019aller \u00e0 la rencontre de la communaut\u00e9 agricole.\u00a0Rien de mieux que de discuter directement avec les producteurs pour\u00a0d\u00e9couvrir leur t", "site_name": "March\u00e9 les Saveurs de la Vall\u00e9e"}
\ No newline at end of file
added data/enrich_cache/lesserresstdo.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesserresstdo.ca", "logo_url": "https://www.lesserresstdo.ca/favicon-512x512.png", "cover_url": null, "description_meta": "Les Serres St-Do \u00e0 Jonqui\u00e8re\u00a0: horticulture locale, fleurs annuelles, l\u00e9gumes, fines herbes, pots, accessoires et outils pour tous les jardiniers.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lessoeursenvrac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lessoeursenvrac.com", "logo_url": "https://lessoeursenvrac.com/app/uploads/2021/06/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "\u00c9pices, noix, fruits s\u00e9ch\u00e9s, beurre, friandises et bien plus encore, Les Soeurs en Vrac vous offre une large s\u00e9lection de produits frais et savoureux.", "site_name": "Les soeurs en vrac"}
\ No newline at end of file
added data/enrich_cache/lessourcesjoyeuses.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lessourcesjoyeuses.com", "logo_url": "https://lessourcesjoyeuses.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lessucreriesdechloe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lessucreriesdechloe.com", "logo_url": "https://lessucreriesdechloe.com/wp-content/uploads/2021/01/favicone-300x300.png", "cover_url": "https://lessucreriesdechloe.com/wp-content/uploads/2021/01/foodtruck.jpg", "description_meta": "Achetez-ici vos produits \u00e0 l&#039;\u00e9rable favori ou offrez l&#039;un de nos ensembles cadeaux \u00e0 l&#039;un de vos proches . Babane \u00e0 sucre mobile.", "site_name": "Les Sucreries de Chlo\u00e9"}
\ No newline at end of file
added data/enrich_cache/lestatoues.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lestatoues.com", "logo_url": "https://lestatoues.com/cdn/shop/files/Asset_52logo-Loup-solo.png?v=1680269412&width=180", "cover_url": "http://lestatoues.com/cdn/shop/files/cover-cactusIMG_9599_-_copie.png?v=1718470656", "description_meta": "Temporary tattoos for kids and adults. Unique, high-quality designs created in Montreal, Qu\u00e9bec, Canada. Our tattoos are applied with water and removed with oil, and are as beautiful as the real thing. Les Tatou\u00e9s is colorful, unifying and unpretentious.", "site_name": "Les Tatou\u00e9s"}
\ No newline at end of file
added data/enrich_cache/lesters.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesters.ca", "logo_url": "https://lesters.ca/wp-content/themes/lesters/dist/images/favicon/apple-touch-icon.png", "cover_url": "https://lesters.ca/wp-content/uploads/2024/01/OG-lesters-1.png", "description_meta": "Faites lever le party \u00e0 tout coup avec notre c\u00e9l\u00e8bre smoked meat, nos savoureuses saucisses hot-dogs, et nos produits de charcuterie. Du plaisir \u00e0 chaque bouch\u00e9e!", "site_name": "Lesters"}
\ No newline at end of file
added data/enrich_cache/lesthesfloraltea.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesthesfloraltea.com", "logo_url": "https://lesthesfloraltea.com/cdn/shop/files/FLO-0094_flavicone_32x32_fa0930cc-f488-4d11-9cbe-73a768bb8c60_228x228.png?v=1760040377", "cover_url": "https://lesthesfloraltea.com/cdn/shop/files/Logo_FloralTea_Blanc_6dfc2fbb-5c2c-4059-a2b3-c7fbd75fd1a0_1200x.png?v=1605654876", "description_meta": "Nos d\u00e9licieuses infusions contiennent 70% de plantes m\u00e9dicinales aux multiples bienfaits. Nos m\u00e9langes v\u00e9g\u00e9taliens sont faits de fleurs enti\u00e8res et d\u2019ingr\u00e9dients naturels, biologiques ou sauvages...", "site_name": "Les th\u00e9s FloralTea"}
\ No newline at end of file
added data/enrich_cache/lestrouvaillesdejen.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lestrouvaillesdejen.com", "logo_url": "https://lestrouvaillesdejen.com/cdn/shop/files/LTJ_logo.jpg?crop=center&height=180&v=1664764941&width=180", "cover_url": "http://lestrouvaillesdejen.com/cdn/shop/files/IMG_5257.jpg?crop=center&height=1200&v=1667166530&width=1200", "description_meta": "Les trouvailles de Jen offre une s\u00e9lection de bijoux abordables et minimaliste en acier inoxydable qui ne ternissent pas. Ils peuvent se porter sous l&#39;eau et sont 99% hypoallerg\u00e8ne.", "site_name": "Les trouvailles de Jen Inc."}
\ No newline at end of file
added data/enrich_cache/lestruffettes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lestruffettes.com", "logo_url": "https://lestruffettes.com/cdn/shop/files/LesTruffettes_SymboleTruffe-_Fuchsia.png?crop=center&height=194&v=1749663592&width=194", "cover_url": "http:Liquid error (snippets/social-meta-tags line 8): invalid url input", "description_meta": "Les Truffettes proposent une gamme 100\u202f% qu\u00e9b\u00e9coise d\u2019huile, mayonnaise et produits aromatis\u00e9s \u00e0 la truffe des Appalaches, capturant la raret\u00e9 et la magie de ce tr\u00e9sor forestier. D\u00e9couvrez nos produits fins, disponibles en ligne, en boutique et restaurants au Qu\u00e9bec.", "site_name": "Les Truffettes"}
\ No newline at end of file
added data/enrich_cache/lesvergersducap.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesvergersducap.com", "logo_url": "https://lesvergersducap.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lesversantsdor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesversantsdor.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/6a65f7_85f9e66e788446ad89d7cb0db953969f~mv2.jpg/v1/fill/w_1443,h_1080,al_c/6a65f7_85f9e66e788446ad89d7cb0db953969f~mv2.jpg", "description_meta": "Produits d", "site_name": "versantdor-1"}
\ No newline at end of file
added data/enrich_cache/lesviandesdautrefois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesviandesdautrefois.com", "logo_url": "https://lesviandesdautrefois.com/wp-content/uploads/2025/01/favicon-480x480.png", "cover_url": "https://lesviandesdautrefois.com/wp-content/uploads/2025/01/viandes-autrefois_accueil_bandeau.jpg", "description_meta": "Retrouver une agriculture aux valeurs d&#039;\u00e9poque", "site_name": "Les Viandes d&#039;Autrefois"}
\ No newline at end of file
added data/enrich_cache/lesvolieres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lesvolieres.com", "logo_url": "https://www.lesvolieres.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/59cd2df4edaed87e75f22a08/t/69dd30354c074918730a2467/1776103478002/Logo+2025.jpg?format=1500w", "description_meta": "Producteur et transformateur de petit gibier. Venez faire une visite de la ferme ou participer \u00e0 une session de tir au pigeon d", "site_name": "Les voli\u00e8res"}
\ No newline at end of file
added data/enrich_cache/letempsdescigales.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "letempsdescigales.com", "logo_url": "https://www.letempsdescigales.com/wp-content/uploads/2025/05/192x192_Logo_LTDC_cropped.jpg", "cover_url": "https://www.letempsdescigales.com/wp-content/uploads/2020/01/equipe-le-temps-des-cigales-20.jpg", "description_meta": "Sublimez votre int\u00e9rieur avec l&#039;\u00e9b\u00e9nisterie artisanale de qualit\u00e9 sup\u00e9rieure propos\u00e9e par Le Temps des Cigales \u00e0 Cap-Saint-Ignace, Qu\u00e9bec.", "site_name": "Le Temps des Cigales"}
\ No newline at end of file
added data/enrich_cache/letempsdunebiere.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "letempsdunebiere.ca", "logo_url": "https://i0.wp.com/letempsdunebiere.ca/wp-content/uploads/2022/11/314848220_1067416160589025_3995251005022337730_n.jpg?fit=180%2C180&#038;ssl=1", "cover_url": null, "description_meta": "Votre m\u00e9dia sur la bi\u00e8re, les voyages et l&#039;histoire!", "site_name": "Le Temps d&#039;une Bi\u00e8re"}
\ No newline at end of file
added data/enrich_cache/letempsdunepinte.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "letempsdunepinte.ca", "logo_url": "https://letempsdunepinte.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/letourno.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "letourno.com", "logo_url": "https://letourno.com/favicon.ico", "cover_url": "https://letourno.com/wp-content/uploads/2021/07/130x130_LBulles_Chien_1_Juillet2021-2.jpg", "description_meta": "Tout ce dont vous avez besoin pour vos animaux. Chiens, chats, et autres animaux. Nourriture, jouets et accessoires de qualit\u00e9. Livraison gratuite \u00e0 partir de 89.99$!", "site_name": "Letourno"}
\ No newline at end of file
added data/enrich_cache/letreflenoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "letreflenoir.com", "logo_url": "https://letreflenoir.com/cdn/shop/files/62494182_2727210090687280_1387846831194505216_n_32x32.jpg?v=1656351636", "cover_url": "http://letreflenoir.com/cdn/shop/files/62494182_2727210090687280_1387846831194505216_n_1024x.jpg?v=1656351636", "description_meta": null, "site_name": "Le Tr\u00e8fle Noir Microbrasserie"}
\ No newline at end of file
added data/enrich_cache/levaletcireur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "levaletcireur.com", "logo_url": "https://levaletcireur.com/wp-content/uploads/2025/06/cropped-0-180x180.png", "cover_url": null, "description_meta": "Le Valet Cireur est passionn\u00e9 de rendre \u00e0 vos chaussures leur \u00e9clat initial. Avec sa boutique de cirage de chaussure \u00e0 Montr\u00e9al pr\u00e8s de Villeray, Rosemont.", "site_name": "Le valet cireur"}
\ No newline at end of file
added data/enrich_cache/levando.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "levando.com", "logo_url": "https://levando.com/wp-content/uploads/2024/05/cropped-Levando-miniature.png", "cover_url": null, "description_meta": "Explore Levando LFP battery systems, energy storage solutions, and solar racking engineered in Quebec for residential and commercial projects.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/levelup.coffee.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "levelup.coffee", "logo_url": "https://levelup.coffee/favicon.ico", "cover_url": "http://levelup.coffee/cdn/shop/files/Social_Share_seul.webp?v=1743697412", "description_meta": "Caf\u00e9 Level Up, torr\u00e9fi\u00e9 au Qu\u00e9bec, certifi\u00e9 \u201cAliment pr\u00e9par\u00e9 au Qu\u00e9bec\u201d et fi\u00e8rement canadien. Des m\u00e9langes uniques de qualit\u00e9 sup\u00e9rieure pour booster \u00e9nergie et focus. Pour performer \u00e0 l\u2019\u00e9cole, au gym ou en gaming. Livraison rapide Canada/\u00c9.-U. R\u00e9veille ton A-Game! Caf\u00e9 en ligne, produit local.", "site_name": "Level Up Coffee"}
\ No newline at end of file
added data/enrich_cache/levercheres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "levercheres.com", "logo_url": "https://levercheres.com/wp-content/themes/theme_vercheres/favicon.png", "cover_url": "https://levercheres.com/wp-content/uploads/2021/07/logo-og-le-vercheres.jpg", "description_meta": "Red\u00e9couvrez le plaisir de magasiner en personne \u00e0 notre boutique de v\u00eatements pour femmes \u00e0 Chicoutimi. Supportons notre \u00e9conomie r\u00e9gionale!", "site_name": "Le Verch\u00e8res"}
\ No newline at end of file
added data/enrich_cache/leveritableagneau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leveritableagneau.ca", "logo_url": "https://leveritableagneau.ca/favicon.ico", "cover_url": null, "description_meta": "Le V\u00c3\u00a9ritable agneau ! c&#039;est un centre de d\u00c3\u00a9coupe pour la Vente d&#039;Agneau de Charlevoix avec la certification IGP,entier, demi ou en pi\u00c3\u00a8ce avec la meilleur coupe fran\u00c3\u00a7aise.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/leviennois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "leviennois.ca", "logo_url": "https://leviennois.ca/static/images/favicon.png?h=b972bcd9631a314372e9ff10cf5d54f7", "cover_url": "https://leviennois.ca/static/images/default-header.jpg?h=26f97685601d00720868cf8fb0b2d90e", "description_meta": "Politique de r\u00e9servation Dans le but de maintenir la qualit\u00e9 de nos produits et de notre service nous appliquons la politique de r\u00e9servation suivante: Pour\u2026", "site_name": null}
\ No newline at end of file
added data/enrich_cache/levignobleduruisseau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "levignobleduruisseau.com", "logo_url": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIxLjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA4OCAxMDIuMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgODggMTAyLjI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojMDY4MkI0O30KCS5zdDF7ZmlsbDojMzFCN0U5O30KCS5zdDJ7ZmlsbDpub25lO30KPC9zdHlsZT4KPGc+Cgk8Zz4KCQk8Zz4KCQkJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSI4OCw1Mi42IDg4LDUyLjYgMzguNCwzIDI0LjIsMTcuMiA1OS43LDUyLjYgMjQuMyw4OCAzOC40LDEwMi4yIAkJCSIvPgoJCTwvZz4KCQk8Zz4KCQkJPHBvbHlnb24gY2xhc3M9InN0MSIgcG9pbnRzPSI4NSw0OS42IDg1LDQ5LjYgMzUuNCwwIDIxLjIsMTQuMiA1Ni43LDQ5LjYgMjEuMyw4NSAzNS40LDk5LjIgCQkJIi8+CgkJPC9nPgoJPC9nPgoJPGxpbmUgY2xhc3M9InN0MiIgeDE9IjQwLjMiIHkxPSIxMDMuOCIgeDI9IjkwLjEiIHkyPSI1NC4yIi8+Cgk8Zz4KCQk8cG9seWxpbmUgY2xhc3M9InN0MCIgcG9pbnRzPSIxMC41LDc0LjQgMTQuMSw3OCA0Mi40LDQ5LjYgMzguNyw0NS44IAkJIi8+CgkJPHBvbHlsaW5lIGNsYXNzPSJzdDEiIHBvaW50cz0iMzguNyw0NS45IDE0LjIsMjEuMyAwLDM1LjQgMTQuMiw0OS42IDAsNjMuOCAxMC42LDc0LjQgCQkiLz4KCTwvZz4KPC9nPgo8L3N2Zz4K", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/levintage5080.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "levintage5080.com", "logo_url": "https://levintage5080.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lexodecafe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lexodecafe.com", "logo_url": "https://www.lexodecafe.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/65ca3371102250268eb97f32/t/6697db90bc322543a1961314/1708113786170/site%2Bweb.jpg?format=1500w", "description_meta": "Caf\u00e9 &amp; Sandwicherie, Smoothie et Bubble Tea, d\u00e9jeuner \u00e0 Alma. Services de bo\u00eetes \u00e0 lunch, location de salle pour r\u00e9unions ou \u00e9v\u00e9nements.", "site_name": "L"}
\ No newline at end of file
added data/enrich_cache/lharmattan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lharmattan.com", "logo_url": "https://lharmattan.com/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "D\u00e9couvrez nos galeries, enracin\u00e9es dans Charlevoix, pr\u00e9sentant les \u0153uvres de grands ma\u00eetres canadiens ainsi qu\u2019une s\u00e9lection contemporaine d\u2019artistes peintres et sculpteurs du Canada.", "site_name": "Galeries BSP"}
\ No newline at end of file
added data/enrich_cache/liberte.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "liberte.ca", "logo_url": "https://liberte.ca/android-icon-192x192.png", "cover_url": "https://www.liberte.ca", "description_meta": "Libert\u00e9 has become the leader in quality dairy products, whether in the organic, probiotic or non fat division.", "site_name": "Libert\u00e9"}
\ No newline at end of file
added data/enrich_cache/librairiebaiestpaul.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "librairiebaiestpaul.com", "logo_url": "https://librairiebaiestpaul.com/wp-content/uploads/2018/09/cropped-lofo-facebook-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lidiajewelry.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lidiajewelry.ca", "logo_url": "https://lidiajewelry.ca/cdn/shop/files/Lidia-bijoux-fabriques-au-Quebec.png?crop=center&height=32&v=1633002124&width=32", "cover_url": "http://lidiajewelry.ca/cdn/shop/files/Lidia-bijoux-minimalistes-en-argent-sterling-fabriques-au-Quebec.jpg?v=1741012253", "description_meta": "Discover minimalist sterling silver necklaces and earrings. Without forgetting the personalized family necklaces for wonderful mothers. It&#39;s my way of helping women feel radiant and invincible every day. And to reward themselves because they deserve it.", "site_name": "Lidia"}
\ No newline at end of file
added data/enrich_cache/ligneerr2.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ligneerr2.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5ef3aa54c58be267db09a72a/1593031931313-WLFHX864UT6XE15ZR1L1/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5ef3aa54c58be267db09a72a/t/600b665ae9826e64ef590144/1611359838765/LigneeRR2_ImageSocial.jpg?format=1500w", "description_meta": "Charcuterie cr\u00e9ative proposant des saucissons artisanaux inspir\u00e9s du terroir de la Mauricie. D\u00e9couvrez nos produits !", "site_name": "ligneerr2.com"}
\ No newline at end of file
added data/enrich_cache/liliblanc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "liliblanc.ca", "logo_url": "https://www.liliblanc.ca/cdn/shop/files/logo_fleur_1_1.png?crop=center&height=32&v=1686337471&width=32", "cover_url": "http://www.liliblanc.ca/cdn/shop/files/Shampoing_BAN_e2513324-0af9-4f46-a230-41a2839fad20.jpg?v=1687313665", "description_meta": "Fabricant de cosm\u00e9tiques haut de gamme et \u00e9coresponsables, Liliblanc propose une routine de soin naturel, simple et efficace. Entreprise familiale bas\u00e9e \u00e0 Saint-J\u00e9r\u00f4me.", "site_name": "Liliblanc Artisan"}
\ No newline at end of file
added data/enrich_cache/lilietgordo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lilietgordo.com", "logo_url": "https://lilietgordo.com/cdn/shop/files/youtube_thumb_hola_canada_1000_x_1000_px_4.png?crop=center&height=48&v=1754116867&width=48", "cover_url": "http://lilietgordo.com/cdn/shop/files/lili_et_gordo_logo_1024x1024_b4b9906f-d359-4be5-aeb3-459ae59aac6a.png?v=1754110851", "description_meta": "Savor authentic Mexican flavors across Canada with our ready-to-cook taco fillings, taco bar, catering, counter service, and online and in-person cooking workshops in Drummondville. Experience the passion and tradition of Mexican cuisine, courtesy of Lili and Gordo.", "site_name": "Lili et Gordo - Exp\u00e9riences mexicaines"}
\ No newline at end of file
added data/enrich_cache/liligraffiti.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "liligraffiti.com", "logo_url": "https://liligraffiti.com/favicon.ico", "cover_url": "http://liligraffiti.com/cdn/shop/files/Logo_LG.png?height=628&pad_color=fff&v=1666882971&width=1200", "description_meta": "Lili graffiti, illustrations,papeterie pour tous. cartes de souhaits, affiches, cahiers, post-ils, blocs notes, agenda, calendrier, cartes postales, sac d\u2019\u00e9picerie, tote bag, puzzles, casse-t\u00eate sur les th\u00e8mes de Montr\u00e9al, anniversaire, f\u00e9licitations, remerciement, f\u00eate des m\u00e8res, f\u00eate des p\u00e8res, voyages, no\u00ebl, mariage", "site_name": "Lili graffiti"}
\ No newline at end of file
added data/enrich_cache/lillojeux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lillojeux.ca", "logo_url": "https://www.lillojeux.ca/wp-content/uploads/2020/04/cropped-Facebook-Avatar-1-180x180.jpg", "cover_url": "https://www.lillojeux.ca/wp-content/uploads/2020/04/Facebook-Avatar.jpg", "description_meta": null, "site_name": "LilloJEUX"}
\ No newline at end of file
added data/enrich_cache/limaeco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "limaeco.ca", "logo_url": "https://www.limaeco.ca/cdn/shop/files/favicon_lima_eco_32x32.png?v=1661863763", "cover_url": "http://www.limaeco.ca/cdn/shop/files/Lima_Eco_voyage_olfactif_passion_voyage.png?v=1685654459", "description_meta": "Mood setters, Lima Eco designs handmade soy candles, room fragrances, soaps and wellness products in Montreal. Each fragrance, inspired by a destination, invites you to travel from the comfort of your home. Our natural and sustainable creations bring softness, relaxation and escape to your daily life.", "site_name": "Lima Eco"}
\ No newline at end of file
added data/enrich_cache/limonadeoflore.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "limonadeoflore.com", "logo_url": "https://limonadeoflore.com/cdn/shop/files/Logo_OFLORE.png?crop=center&height=32&v=1769293273&width=32", "cover_url": "http://limonadeoflore.com/cdn/shop/files/Canettes_OFLORE_2.jpg?v=1776602422", "description_meta": "New generation of sparkling lemonades from Quebec! A pure fermented pleasure, 0 sugar, 0 calories, 0 caffeine. Just the vibrant taste of fermented lemon and clean, natural ingredients.", "site_name": "Limonades OFLORE\u00ae"}
\ No newline at end of file
added data/enrich_cache/lionlennoxville.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lionlennoxville.com", "logo_url": "http://lionlennoxville.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/livabec.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "livabec.ca", "logo_url": "https://www.livabec.ca/favicon.ico", "cover_url": null, "description_meta": "Since its inception in 1984, Livabec Foods has spanned two generations of the Cimaglia family, and remains a family run business to this day.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/livyerslot.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "livyerslot.ca", "logo_url": "https://livyerslot.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Livyers"}
\ No newline at end of file
added data/enrich_cache/lloydies.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lloydies.ca", "logo_url": "https://lloydies.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/localtableadesserts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "localtableadesserts.com", "logo_url": "https://www.localtableadesserts.com/public/media/favicon/android-icon-192x192.png?v=060826110844", "cover_url": null, "description_meta": "D\u00e9couvrez LOCAL, le seul restaurant \u00e0 L\u00e9vis d\u00e9di\u00e9 enti\u00e8rement au dessert. Une exp\u00e9rience sucr\u00e9e unique, gourmande et locale.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/loietoquee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "loietoquee.com", "logo_url": "https://loietoquee.com/Logo/Logo_tetetr.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/longphung.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "longphung.com", "logo_url": "https://longphung.com/wp-content/uploads/2023/02/LP.png", "cover_url": null, "description_meta": "The best pork rolls &amp; patties in North America. 100% Canadien or American pork. Nitrate free Nitrites free", "site_name": "Long Phung"}
\ No newline at end of file
added data/enrich_cache/loopmission.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "loopmission.com", "logo_url": "https://loopmission.com/cdn/shop/files/LOOP_logo_mission_h_rainbow_2-1-ratio_2_32x32.png?v=1769395304", "cover_url": "http://loopmission.com/cdn/shop/files/morning_glory_1200x1200.jpg?v=1621367145", "description_meta": "LOOP Mission is a circular economy company fighting food waste by repurposing the outcasts of the food industry.", "site_name": "LOOP Mission"}
\ No newline at end of file
added data/enrich_cache/lorbleu.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lorbleu.ca", "logo_url": "https://lorbleu.ca/img/favicon.png", "cover_url": "https://www.lorbleu.ca/img/logo_header.png", "description_meta": "L", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lorbodistribution.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lorbodistribution.com", "logo_url": "https://lorbodistribution.com/mt-content/uploads/2017/05/favicon.png?_build=1496237559", "cover_url": null, "description_meta": "Lorbo Distribution, distributeur alimentaire, b&eacute;n&eacute;ficie d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lordupotager.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lordupotager.com", "logo_url": "https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=180,h=180,fit=crop,f=png/m2WQkaXL2qfNqPko/448814041_749117467204818_5359562593252980516_n-AGB4jnJpaGiKGkxW.jpg", "cover_url": "https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1440,h=756,fit=crop,f=jpeg/m2WQkaXL2qfNqPko/img_6959-A1aJpQ94M0hP1EBM.jpeg", "description_meta": "L&#39;Or du potager offre un avantage social novateur : des paniers de l\u00c3\u00a9gumes de saison et de produits transform\u00c3\u00a9s dans une approche visant \u00c3\u00a0 promouvoir les produits frais et locaux. Commandez vos paniers d\u00c3\u00a8s maintenant!", "site_name": "L`or du potager"}
\ No newline at end of file
added data/enrich_cache/lordviolet.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lordviolet.ca", "logo_url": "https://lordviolet.ca/cdn/shop/files/LordViolet.jpg?crop=center&height=32&v=1749506307&width=32", "cover_url": null, "description_meta": "Discover edgy handmade jewelry for alternative femmes at Lord Violet. Luxurious, eco-friendly designs with black and gold accents. Made in Canada.", "site_name": "lordviolet"}
\ No newline at end of file
added data/enrich_cache/losbalderas.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "losbalderas.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/lostandfaune.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lostandfaune.com", "logo_url": "https://www.lostandfaune.com/cdn/shop/files/L_F_favicon_rose.png?v=1668704584&width=180", "cover_url": "https://cdn.shopify.com/s/files/1/0892/2054/files/L_F_logo_horizontal.jpg?height=628&pad_color=fff&v=1678213305&width=1200", "description_meta": "Chaque bijou est une c\u00e9l\u00e9bration des m\u00e9moires, des aventures et des \u00e9motions que l&#39;on accumule \u00e0 travers le temps. Votre bijouterie en ligne pr\u00e9f\u00e9r\u00e9e.", "site_name": "Lost &amp; Faune"}
\ No newline at end of file
added data/enrich_cache/louinspirations.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "louinspirations.com", "logo_url": "https://louinspirations.com/cdn/shop/files/Logo_-_Lou_Inspirations.png?crop=center&height=32&v=1757613079&width=32", "cover_url": "http://louinspirations.com/cdn/shop/files/Logo_-_Lou_Inspirations.png?v=1757613079", "description_meta": "Looking for meaningful jewelry? Minimalist, handcrafted decor? Discover our unique creations born between Montreal and the great outdoors: beads, macram\u00e9, home decorations... a whole bohemian universe, ethical and inspired by nature.", "site_name": "Lou Inspirations"}
\ No newline at end of file
added data/enrich_cache/louisacafedequartier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "louisacafedequartier.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/696a7e544e1243514c60b1bf/856c22a6-2240-4b3a-8c6d-3323841eccf4/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/696a7e544e1243514c60b1bf/t/6988e0a09a64336f4d982c18/1770578080809/IMG_4342.jpg?format=1500w", "description_meta": "D\u00e9couvrez Louisa, un caf\u00e9 de quartier convivial \u00e0 Bois-des-Filion, offrant caf\u00e9, cuisine maison, produits locaux et espace rassembleur pour la communaut\u00e9.", "site_name": "LOUISA caf\u00e9 de quartier \u00e0 Bois-des-Filion"}
\ No newline at end of file
added data/enrich_cache/lovelegrand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lovelegrand.com", "logo_url": "https://lovelegrand.com/wp-content/uploads/2021/09/favicon.png", "cover_url": "https://lovelegrand.com/wp-content/uploads/2022/12/spaghetti.png", "description_meta": null, "site_name": "LeGrand"}
\ No newline at end of file
added data/enrich_cache/lovli.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lovli.ca", "logo_url": "https://lovli.ca/cdn/shop/files/fleur_rose_2249f3f4-6e32-4c0d-956f-c6202e0704d5_32x32.png?v=1696204511", "cover_url": "http://lovli.ca/cdn/shop/files/Lovli_moment_2_teintes_roses_fleur_petit_1200x1200.png?v=1669355565", "description_meta": "Lovli \u2013 Des chandelles, brumes et coffrets cr\u00e9\u00e9s avec amour ici m\u00eame au Qu\u00e9bec, pour vos instants de bien-\u00eatre. Livraison gratuite d\u00e8s 85 $", "site_name": "Boutique Lovli"}
\ No newline at end of file
added data/enrich_cache/lucvincent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lucvincent.com", "logo_url": "https://lucvincent.com/cdn/shop/files/shopify_logos.png?crop=center&height=32&v=1747912586&width=32", "cover_url": "https://lucvincent.com/cdn/shop/files/All_Gift-Set_Side-View_Render_93675f7d-6814-4577-9556-b7dc3f015213.jpg?v=1776695534", "description_meta": "Professional haircare made in Quebec \u2014 shop shampoos, colour care, treatments, routines, and gift sets from Luc Vincent. Free shipping across Canada.", "site_name": "Luc Vincent"}
\ No newline at end of file
added data/enrich_cache/luda.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "luda.ca", "logo_url": "https://luda.ca/wp-content/uploads/2018/06/cropped-LUDA_512x512-180x180.png", "cover_url": "https://luda.ca/wp-content/uploads/2019/11/Homepage-screencap_EN-1.jpg", "description_meta": null, "site_name": "LUDA"}
\ No newline at end of file
added data/enrich_cache/ludikcandy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ludikcandy.com", "logo_url": "https://ludikcandy.com/cdn/shop/files/favicon_32x.jpg?v=1634218063", "cover_url": "http://ludikcandy.com/cdn/shop/files/logo_1_1_1200x1200.png?v=1634218086", "description_meta": "Ludik Candy Designer, a candy distributor, is the parent company producing and commercializing the popular and fun product lines Marie and Franky and KandJu. Importer, manufacturer and distributor since 2006, the company is perfecting itself in the design, manufacture, import and distribution of high-quality confection", "site_name": "Ludik Candy"}
\ No newline at end of file
added data/enrich_cache/lulobaceramics.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lulobaceramics.ca", "logo_url": "https://lulobaceramics.ca/cdn/shop/files/logo-luloba-ceramique.png?crop=center&height=32&v=1768830487&width=32", "cover_url": "http://lulobaceramics.ca/cdn/shop/files/4N5A0194-2_e6bf6ded-9e1d-43d8-ba5a-5b6a5188804c.jpg?v=1780172811", "description_meta": "Magasin de poterie et boutique de m\u00e9tiers d&#39;art dans les Cantons de l&#39;Est. Vaisselle et d\u00e9cor con\u00e7us par une artisane c\u00e9ramiste.", "site_name": "Luloba C\u00e9ramique"}
\ No newline at end of file
added data/enrich_cache/lulubelleandco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lulubelleandco.com", "logo_url": "https://lulubelleandco.com/cdn/shop/files/icon_32x32.png?v=1637869119", "cover_url": "http://lulubelleandco.com/cdn/shop/files/lulubelleandco_159d6cc6-ec93-4e44-becd-8665f7bc8d18_1200x1200.png?v=1634845830", "description_meta": "\u00c0 partir d\u2019une s\u00e9lection des meilleurs ingr\u00e9dients, nous avons cr\u00e9\u00e9 des produits v\u00e9gans, sans gluten et \u00e0 base de plantes pour pains et p\u00e2tisseries. D\u00e9sormais, l\u2019ensemble de la famille peut profiter d\u2019une alternative saine, franchement d\u00e9licieuse !", "site_name": "Lulubelle &amp; Co"}
\ No newline at end of file
added data/enrich_cache/lunakidesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lunakidesign.com", "logo_url": "https://lunakidesign.com/cdn/shop/files/Favicon.png?crop=center&height=32&v=1673383441&width=32", "cover_url": "http://lunakidesign.com/cdn/shop/files/logo-lunaki--design-bijoux.png?v=1751725664", "description_meta": "D\u00e9couvre Lunaki Design, la marque de bijoux artisanaux faits main \u00e0 Montr\u00e9al avec des pierres semi-pr\u00e9cieuses v\u00e9ritables et de l&#39;acier inoxydable.", "site_name": "Lunaki Design"}
\ No newline at end of file
added data/enrich_cache/lupinfruit.bio.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lupinfruit.bio", "logo_url": "https://cdn.prod.website-files.com/614f6add8e06745369f28c78/6151f964a10be93c20c37aef_webclip.jpg", "cover_url": "https://cdn.prod.website-files.com/614f6add8e06745369f28c78/61be0f91d143ca537ff9aad2_LUPIN%20FRUI%20tartinade%20bleuet.jpg", "description_meta": "Verger nordique, Fruit\u00e9 ~ Bor\u00e9al ~ Floral, Culture mixte &amp; biologique, Les \u00c9boulements, Charlevoix", "site_name": null}
\ No newline at end of file
added data/enrich_cache/lutindeforet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lutindeforet.com", "logo_url": "https://www.lutindeforet.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/63bd9939c7e6bc3d4e9a6598/t/65e202b6910faa317408281e/1709310647054/Lutin+de+Foret_logo.png?format=1500w", "description_meta": "D\u00e9couvrez nos petites lutins eco-responsables avec des fibres sensibles, biologiques et durables. Toutous d", "site_name": "Lutin de For\u00eat"}
\ No newline at end of file
added data/enrich_cache/lylatea.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lylatea.com", "logo_url": "https://lylatea.com/cdn/shop/files/Logo.jpg?crop=center&height=152&v=1743030741&width=152", "cover_url": "http://lylatea.com/cdn/shop/files/Logo_7a90bb26-e740-4e6b-9fde-916d9fc9dc64.jpg?v=1743799251", "description_meta": "Iced tea, th\u00e9 glac\u00e9", "site_name": "Lyla Tea"}
\ No newline at end of file
added data/enrich_cache/lyoterra.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lyoterra.com", "logo_url": "https://www.lyoterra.com/wp-content/uploads/2023/07/cropped-Favicon-1-180x180.png", "cover_url": null, "description_meta": "", "site_name": "Aliments Lyoterra \u2022 Fruits Lyophilis\u00e9s \u2022 Collations Sant\u00e9 \u2022 Sans Gluten \u2022 Nature"}
\ No newline at end of file
added data/enrich_cache/lysannelatulippe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "lysannelatulippe.com", "logo_url": "https://www.lysannelatulippe.com/cdn/shop/files/LL_LOGO_512.png?crop=center&height=32&v=1769015630&width=32", "cover_url": "http://www.lysannelatulippe.com/cdn/shop/files/Tuque_de_garde.jpg?v=1738498851", "description_meta": "In her Saint-Ferreol-les-Neiges studio, Lysanne Latulippe develops unique designs and produces limited edition knitwear. Combining fine materials and innovative technologies, her work method allows her to create on demand and to execute her creations almost instantly.", "site_name": "Lysanne Latulippe"}
\ No newline at end of file
added data/enrich_cache/m-lartisanculinaire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "m-lartisanculinaire.com", "logo_url": "https://static.wixstatic.com/media/1ea96a_4a79a73a5a054cf8bf549e065ca39409%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1ea96a_4a79a73a5a054cf8bf549e065ca39409%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/m0851.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "m0851.com", "logo_url": "https://www.m0851.com/favicon.ico", "cover_url": null, "description_meta": "Based in Montreal, m0851 designs and manufactures a wide range of handmade leather bags, accessories, jackets, and outerwear. m0851 ensures that all of their products are crafted with full-grain leathers and premium raw materials, creating a line of products that balances charm and functionality.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/m3beton.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "m3beton.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/693b1ef3574ad809f773c25f/7eea1d72-a969-4f9d-86da-6ad38ab0bdbf/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/693b1ef3574ad809f773c25f/t/693b1f64574ad809f773dbbb/1637186645257/logo_m3beton_gris_pantone.png?format=1500w", "description_meta": "m3b\u00e9ton - Notre \u00e9quipe de fabricants-designers se met \u00e0 votre service pour am\u00e9nager vos ext\u00e9rieurs (municipalit\u00e9s, \u00e9coles, espaces commerciaux et r\u00e9sidentiels,...). Nos produits, en b\u00e9ton Ductal, sont adapt\u00e9s pour l", "site_name": "m3b\u00e9ton"}
\ No newline at end of file
added data/enrich_cache/ma-pomme.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ma-pomme.ca", "logo_url": "https://ma-pomme.ca/wp-content/uploads/2024/02/cropped-favicon-180x180.png", "cover_url": "https://ma-pomme.ca/wp-content/uploads/2024/04/og-Ma-Pomme-cultivez-la-sante.jpg", "description_meta": "Favoriser la croissance de votre entreprise, le financement de vos OBNL et organiser vos lev\u00e9es de fonds scolaires avec des pommes grav\u00e9es.", "site_name": "Ma-Pomme"}
\ No newline at end of file
added data/enrich_cache/maax.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maax.ca", "logo_url": "https://maax.ca/maax/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "MAAX est le premier fabricant nord-am\u00e9ricain de produits de salle de bains: baignoires, douches, portes de douche, bases de douche et plus encore - Construisez la salle de bains de vos r\u00eaves avec MAAX!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/mabulledelecture.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mabulledelecture.ca", "logo_url": "https://mabulledelecture.ca/favicon.ico", "cover_url": "https://mabulledelecture.ca/wp-content/uploads/2021/11/Ma-bulle-de-lecture-oct-1-min-scaled-e1697208418257.jpg", "description_meta": "Des surprises litt\u00e9raires chaque mois\u200b Recevez tous les mois une nouvelle lecture et des gourmandises pour un agr\u00e9able moment de d\u00e9tente. S&rsquo;ABONNER OFFRIR Les \u00e9ditions limit\u00e9es Coffret \u00e0 la carte Vous avez manqu\u00e9 un de nos coffrets ? Pas de panique ! Vous pouvez toujours\u00a0 commander le livre de votre choix accompagn\u00e9 de plusieurs gourmandises!\u00a0 [&hellip;]", "site_name": "Ma bulle de lecture"}
\ No newline at end of file
added data/enrich_cache/macabaneengaspesie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "macabaneengaspesie.com", "logo_url": "https://www.macabaneengaspesie.com/cdn/shop/files/cabane_signature_carre_blanc.png?crop=center&height=48&v=1770391391&width=48", "cover_url": "http://www.macabaneengaspesie.com/cdn/shop/files/baniere-web.png?v=1771937964", "description_meta": "D\u00e9couvre nos produits d\u2019\u00e9rable artisanaux de la Gasp\u00e9sie: sirop, beurre, bonbons et coffrets. En ligne, en magasin et chez des d\u00e9taillants au Qu\u00e9bec.", "site_name": "Ma Cabane en Gaspesie"}
\ No newline at end of file
added data/enrich_cache/macafeine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "macafeine.ca", "logo_url": "https://macafeine.ca/cdn/shop/files/favicon.svg?crop=center&height=32&v=1693423512&width=32", "cover_url": "http://macafeine.ca/cdn/shop/files/ban-ma-cafeine-1080x600_5dca7f00-20f1-4aab-9c45-86668175dfdf.jpg?v=1747927143", "description_meta": "Online store specializing in coffee machines, coffee beans, tea, accessories and gift ideas for local products. You will also find ground coffee, coffee capsules, tea, chai, aromatic syrups, equipment, accessories, barista tools, plant-based milks and more!", "site_name": "Ma Caf\u00e9ine"}
\ No newline at end of file
added data/enrich_cache/macbsp.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "macbsp.com", "logo_url": "https://macbsp.com/theme/images/favicon.png", "cover_url": "https://macbsp.com/theme/images/social-musee-art-contemporain-baie-saint-paul.jpg", "description_meta": "Le Mus\u00e9e d\u2019art contemporain de Baie-Saint-Paul est une institution ouverte, ancr\u00e9e dans son milieu et dont la mission englobe la promotion, la conservation et la diffusion de l", "site_name": "Mus\u00e9e d"}
\ No newline at end of file
added data/enrich_cache/madamegermaine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "madamegermaine.com", "logo_url": "https://www.madamegermaine.com/cdn/shop/files/favicon_32x32.png?v=1619525363", "cover_url": "http://www.madamegermaine.com/cdn/shop/files/Logo_360x_977f6ea8-dba4-47b5-b21a-46942a5e6be0.png?v=1640619755", "description_meta": "Les ateliers culinaires sont une occasion conviviale de se retrouver entre amis, coll\u00e8gues ou en famille. Ateliers chez Mme G, \u00e0 domicile ou en ligne. Voyagez \u00e0 travers une aventure culinaire vibrante et authentique.", "site_name": "Madame Germaine"}
\ No newline at end of file
added data/enrich_cache/madamelabriski.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "madamelabriski.com", "logo_url": "https://madamelabriski.com/wp-content/themes/labriski2020/img/icons/apple-touch-icon.png", "cover_url": "https://madamelabriski.com/wp-content/themes/labriski2020/img/icons/icon-og-image.png", "description_meta": "Bienvenue sur le site de Madame Labriski! Recettes sant\u00e9 et produits sans sucre et sans gras ajout\u00e9s. Conf\u00e9rences, articles, Mini Labriski, HRI, plus encore.", "site_name": "Madame Labriski"}
\ No newline at end of file
added data/enrich_cache/maddleboards.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maddleboards.ca", "logo_url": "https://maddleboards.ca/cdn/shop/files/favicon_32x32.png?v=1622225119", "cover_url": "http://maddleboards.ca/cdn/shop/files/16-9maddle-_2FQXn2QSpU-unsplash_1.jpg?v=1678470925", "description_meta": "Shop high-quality Inflatable Paddle Boards at Maddle Canada. Versatile and lightweight with ergonomic design. Free shipping. 2-year warranty. Buy now!", "site_name": "Maddleboards"}
\ No newline at end of file
added data/enrich_cache/madfestival.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "madfestival.ca", "logo_url": "https://static.wixstatic.com/media/09c39f_6d18a93ed09049e5a21df636ddd977cd%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/09c39f_6d18a93ed09049e5a21df636ddd977cd%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/magasingeneralduquai.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "magasingeneralduquai.ca", "logo_url": "https://magasingeneralduquai.ca/cdn/shop/files/LogoMGrose_15a9d253-824f-4e9c-afb8-c507c01c0b4e-removebg-preview.png?crop=center&height=32&v=1776437686&width=32", "cover_url": "http://magasingeneralduquai.ca/cdn/shop/files/Web_1920_1_1200x628.png?v=1776518517", "description_meta": "Trouvez le cadeau parfait au Magasin G\u00e9n\u00e9ral du Quai. Bijoux, accessoires, articles pour b\u00e9b\u00e9s et d\u00e9co chic. Une boutique unique situ\u00e9e \u00e0 La Baie, Saguenay.", "site_name": "Magasin G\u00e9n\u00e9ral du Quai"}
\ No newline at end of file
added data/enrich_cache/magillhats.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "magillhats.com", "logo_url": "https://i2.wp.com/magillhats.com/wp-content/uploads/2017/01/cropped-logo_magill_70px.png?fit=180%2C180&#038;ssl=1", "cover_url": "https://i2.wp.com/magillhats.com/wp-content/uploads/2018/09/magill-slider-fall-red-johnnyd.jpg?fit=1800%2C1013&#038;ssl=1", "description_meta": "Shop Magill Hats for the best selection of Fedora, Furfelt, Wool, Mens Hat, Unisex Hat, cowboy hat, porkpie and more. Free shipping to Canada and US", "site_name": "Magill Hats"}
\ No newline at end of file
added data/enrich_cache/magolait.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "magolait.com", "logo_url": "https://magolait.com/wp-content/uploads/fbrfg/apple-touch-icon.png", "cover_url": "https://magolait.com/wp-content/uploads/2021/03/og-image.jpg", "description_meta": "Vente, achat et r\u00e9paration de bateaux \u00e0 Magog", "site_name": "\u00c9rabli\u00e8re Magolait | Ferme Magolait"}
\ No newline at end of file
added data/enrich_cache/maison-lapleau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maison-lapleau.ca", "logo_url": "https://static.wixstatic.com/media/ed7abc_eae38965c8d54b918d355f15424caed2%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/ed7abc_eae38965c8d54b918d355f15424caed2%7Emv2.png", "cover_url": null, "description_meta": "Caramel, nougatine, biscuits, nos p\u00e2tisseries artisanales sont des produits 100% qu\u00e9b\u00e9cois, faits mains, naturels, de qualit\u00e9 par Maison Lapleau.", "site_name": "Maison Lapleau"}
\ No newline at end of file
added data/enrich_cache/maisonboire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonboire.com", "logo_url": "https://maisonboire.com/assets/ba18a1651a8a4b4a.png", "cover_url": "https://maisonboire.com/assets/og-maison-boire.jpg", "description_meta": "Maison Boire, restaurant du Guide MICHELIN \u00c3\u00a0 Granby : cuisine sur braise d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/maisonchezlaurent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonchezlaurent.com", "logo_url": "https://maisonchezlaurent.com/wp-content/uploads/2020/02/cropped-Favicon_MaisonLaurent-180x180.png", "cover_url": "https://maisonchezlaurent.com/wp-content/uploads/2025/03/A-PARTIR-DU-7-AVRIL-2025.png", "description_meta": "Au coeur de Charlevoix, Maison Chez Laurent vous offre h\u00e9bergement (chalets, motel et maison ancestrale), restaurant et activit\u00e9s \u00e0 10 minutes de Baie-Saint-Paul.", "site_name": "Maison chez Laurent"}
\ No newline at end of file
added data/enrich_cache/maisondecampagnelenichouette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisondecampagnelenichouette.com", "logo_url": "http://maisondecampagnelenichouette.com/favicon.ico", "cover_url": null, "description_meta": "\u00c3\u0080 louer Charlevoix: Belle maison candadienne biecentenaire \u00c3\u00a0 louer en Charlevoix aux \u00c3\u0089boulements dans un village avec une vue exceptionnelle sur l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/maisondelapomme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisondelapomme.com", "logo_url": "https://maisondelapomme.com/apple-touch-icon.png", "cover_url": "https://maisondelapomme.com/og-image.jpg", "description_meta": "Sp\u00e9cialistes dans la production de pommes fra\u00eeches, de pommes transform\u00e9es et de jus fra\u00eechement press\u00e9.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/maisondequartier.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisondequartier.org", "logo_url": "https://maisondequartier.org/app/themes/la_web_shop/assets/favicon/apple-touch-icon.png", "cover_url": "https://maisondequartier.org/app/uploads/2024/11/share.png", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/maisondherbes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisondherbes.com", "logo_url": "https://maisondherbes.com/wp-content/uploads/2026/03/cropped-MDH_Favicon-180x180.png", "cover_url": "https://maisondherbes.com/wp-content/uploads/2025/10/MDH-Banner-Soins.jpg", "description_meta": "D\u00e9couvrez une s\u00e9lection de soins, produits naturels et essentiels au chanvre, pens\u00e9s pour accompagner le quotidien avec simplicit\u00e9.", "site_name": "Maison d&#039;Herbes"}
\ No newline at end of file
added data/enrich_cache/maisondubootlegger.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisondubootlegger.com", "logo_url": "https://www.maisondubootlegger.com/wp-content/uploads/2014/12/cropped-logo-spectacle-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/maisondupecheur.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisondupecheur.ca", "logo_url": "https://www.maisondupecheur.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5b8995a8b10598f86dca6579/t/62b0df9697e7f270bf5ff208/1655758742810/Logo+MP_larger_blue.png?format=1500w", "description_meta": "LA MAISON DU P\u00caCHEUR. Restaurant de Fruits de Mer \u00e0 Perc\u00e9, Qc.", "site_name": "La Maison du P\u00eacheur"}
\ No newline at end of file
added data/enrich_cache/maisonenchanvre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonenchanvre.com", "logo_url": "https://maisonenchanvre.com/wp-content/uploads/2025/02/Symbole_Artcan_RVB.svg", "cover_url": "https://maisonenchanvre.com/wp-content/uploads/2025/03/artcan-maison-chanvre.jpg", "description_meta": "B\u00e2tissez un avenir durable avec les maisons en chanvre d\u2019Artcan. Un habitat \u00e9cologique, sain et performant, con\u00e7u pour votre bien-\u00eatre et celui de la plan\u00e8te.", "site_name": "Artcan"}
\ No newline at end of file
added data/enrich_cache/maisonmere.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonmere.ca", "logo_url": "https://maisonmere.ca/wp-content/uploads/2017/05/favicon.png", "cover_url": null, "description_meta": null, "site_name": "Maison M\u00e8re"}
\ No newline at end of file
added data/enrich_cache/maisonorphee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonorphee.com", "logo_url": "https://maisonorphee.com/cdn/shop/files/Maison_Orphee__Favicon_32_32x32.png?v=1614834181", "cover_url": "http://maisonorphee.com/cdn/shop/files/photo_lien_partage_1200x1200.png?v=1721935007", "description_meta": "Depuis plus de 40 ans, Maison Orph\u00e9e cr\u00e9e des produits naturels et de qualit\u00e9 qui nourrissent votre quotidien avec simplicit\u00e9 et go\u00fbt. Sains et savoureux, ils accompagnent chaque moment \u00e0 table, du petit d\u00e9jeuner au souper.", "site_name": "La Maison Orph\u00e9e"}
\ No newline at end of file
added data/enrich_cache/maisonotis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonotis.com", "logo_url": "https://maisonotis.com/css/img/favicon.png", "cover_url": null, "description_meta": "La Maison Otis est un h\u00f4tel boutique situ\u00e9e au c\u0153ur de la mythique rue Saint-Jean-Baptiste \u00e0 Baie-Saint-Paul dans la magnifique r\u00e9gion de Charlevoix.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/maisonrusset.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonrusset.com", "logo_url": "https://maisonrusset.com/wp-content/uploads/touch-icon_60.png", "cover_url": "https://maisonrusset.com/wp-content/uploads/img-facebook.jpg", "description_meta": "Maison Russet, situ\u00e9e \u00e0 Huntingdon, offre des produits de pomme de terre sp\u00e9cialis\u00e9s et novateurs. Nous faisons toujours en sorte que votre marque sedistingue.", "site_name": "Maison Russet"}
\ No newline at end of file
added data/enrich_cache/maisonschneider.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonschneider.com", "logo_url": "https://maisonschneider.com/wp-content/uploads/2026/06/maison-schneider-produits-lyophilises-favicon-300x300.png", "cover_url": "https://maisonschneider.enconstruction.website/wp-content/uploads/2026/06/maison-schneider-collations-lyophilisees-og-image.jpg", "description_meta": "Maison Schneider - Une entreprise familiale qui produit des collations lyophilis\u00e9es. / A family-owned company that produces freeze-dried snacks.", "site_name": "Maison Schneider"}
\ No newline at end of file
added data/enrich_cache/maisonsdugrandheron.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonsdugrandheron.com", "logo_url": "https://cdn.prod.website-files.com/671aaec3868b28aa969ef07a/6746106888887965a3f858ab_logo256.png", "cover_url": "https://cdn.prod.website-files.com/671aaec3868b28aa969ef07a/674e2c1a7c3ebf9d7f642d94_grandheron_opengraph.jpg", "description_meta": "Nous sommes un complexe touristique ouvert \u00e0 l&#x27;ann\u00e9e proposant une vari\u00e9t\u00e9 d&#x27;h\u00e9bergements distincts et uniques tels que des chambres dans notre grand chalet, des yourtes et un tipi. Nous offrons \u00e9galement la restauration et la location de v\u00e9los \u00e9lectriques afin d&#x27;explorer l&#x27;Isle \u00e0 votre rythme.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/maisonstpierre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maisonstpierre.com", "logo_url": "https://maisonstpierre.com/favicon.ico", "cover_url": "http://maisonstpierre.com/cdn/shop/files/Creation_sans_titre_ea1351fb-03c2-40f6-987b-1c93d11ef9fe.jpg?v=1786444067", "description_meta": "Maison St-Pierre offers 100% pure organic maple syrup from Quebec. Discover our Quebec products. Delivery across Canada.", "site_name": "Maison St-Pierre"}
\ No newline at end of file
added data/enrich_cache/maitreglacier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maitreglacier.com", "logo_url": "https://maitreglacier.com/wp-content/uploads/2020/11/cropped-favicon-maitre-glacier-180x180.png", "cover_url": "https://maitreglacier.com/wp-content/uploads/2022/09/Photo-Site-Web-Variante-2-1-sur-1-1-scaled.jpg", "description_meta": null, "site_name": "Maitre Glacier"}
\ No newline at end of file
added data/enrich_cache/makabon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "makabon.com", "logo_url": "https://makabon.com/images/webclip.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/makeloo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "makeloo.com", "logo_url": "https://makeloo.com/cdn/shop/files/Mascotte2.png?crop=center&height=32&v=1749831558&width=32", "cover_url": "https://makeloo.com/cdn/shop/files/De_par_Chez_nous.jpg?v=1750169425&width=1200", "description_meta": "Local fibres, exclusive blends and hand-dyed sock yarns made in small batches in Lavaltrie, Qu\u00e9bec. Qu\u00e9bec Circulaire 2025 award winner. Free shipping over $100.", "site_name": "Makeloo Studio"}
\ No newline at end of file
added data/enrich_cache/mallainlapin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mallainlapin.com", "logo_url": "https://mallainlapin.com/images/favicon_mallain_lapin.jpg", "cover_url": "https://mallainlapin.com/", "description_meta": "&quot;D\u00e9couvrez la Ferme Mallain Lapin en Estrie, sp\u00e9cialis\u00e9e dans la vente de viande de lapin de qualit\u00e9. Profitez d", "site_name": "Mallain Lapin"}
\ No newline at end of file
added data/enrich_cache/malteriecauxlaflamme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "malteriecauxlaflamme.com", "logo_url": "https://malteriecauxlaflamme.com/favicon.ico", "cover_url": null, "description_meta": "Venez d\u00e9couvrir nos malts d&#039;exception refl\u00e9tant notre passion et notre expertise agricole, honorant fi\u00e8rement notre terroir qu\u00e9b\u00e9cois.", "site_name": "Malterie CAUX LAFLAMME"}
\ No newline at end of file
added data/enrich_cache/malterre.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "malterre.ca", "logo_url": "https://malterre.ca/cdn/shop/files/malterre-logo-favicon-64x64px_194x194_crop_center.png?v=1677593834", "cover_url": "https://cdn.shopify.com/s/files/1/0599/6881/5289/files/malterre-profil-complet.jpg?height=628&pad_color=fff&v=1637336006&width=1200", "description_meta": "malterre revalorise les dr\u00eaches de microbrasserie en les transformant en savoureux craquelins bons pour la sant\u00e9 et les papilles!", "site_name": "malterre"}
\ No newline at end of file
added data/enrich_cache/maltstrom.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maltstrom.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/malyna.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "malyna.ca", "logo_url": "https://malyna.ca/wp-content/themes/malyna-theme/app/favicons/android-icon-192x192.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/manayerbamate.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "manayerbamate.com", "logo_url": "https://manayerbamate.com/cdn/shop/files/favicon-32x32.png?crop=center&height=32&v=1671186681&width=32", "cover_url": "http://manayerbamate.com/cdn/shop/files/MANA_2024_3d_visuel_2_1920x1080_-_150dpi.jpg?v=1717796035", "description_meta": "Notre entreprise a pour mission d\u2019alimenter la cr\u00e9ativit\u00e9 et d\u2019offrir une vitrine pour les talents \u00e9mergents des milieux cr\u00e9atifs. MANA yerba mat\u00e9 offre aux penseurs et cr\u00e9atifs une infusion \u00e9nergisante naturelle et biologique qui permet de lib\u00e9rer le \u201cflow\u201d n\u00e9cessaire \u00e0 l\u2019accomplissement de leur vision.", "site_name": "MANA yerba mate"}
\ No newline at end of file
added data/enrich_cache/manba.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "manba.ca", "logo_url": "https://manba.ca/wp-content/uploads/2019/04/cropped-favicon-300x300.png", "cover_url": null, "description_meta": "Manba is Spicy", "site_name": "Manba The Spicy Peanut Butter"}
\ No newline at end of file
added data/enrich_cache/manizales.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "manizales.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/manoirdessapins.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "manoirdessapins.com", "logo_url": "https://www.manoirdessapins.com/wp-content/uploads/2018/03/favicon-mds.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/manoirducafe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "manoirducafe.com", "logo_url": "https://manoirducafe.com/cdn/shop/files/MDC_FavIcon_48x48_3.png?crop=center&height=48&v=1786384354&width=48", "cover_url": "http://manoirducafe.com/cdn/shop/files/MDC_Image_de_partage_1200x628_c7e62954-6243-4425-b169-00ac3a579b34.png?v=1784816432", "description_meta": "Entreprise Certifi\u00e9e B Corp | Le Manoir du Caf\u00e9 est mirco-torr\u00e9facteur de caf\u00e9 depuis 1992. Bas\u00e9 \u00e0 Baie-Comeau sur la C\u00f4te-Nord de Qu\u00e9bec, nos caf\u00e9s sont disponibles \u00e0 l&#39;achat en ligne au Canada. Commandez votre sac de caf\u00e9 d\u00e8s maintenant!", "site_name": "Manoir du Cafe"}
\ No newline at end of file
added data/enrich_cache/manoirhortensia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "manoirhortensia.com", "logo_url": "https://manoirhortensia.com/wp-content/uploads/2026/05/favicon-1-300x300.png", "cover_url": null, "description_meta": "Situ\u00e9 en retrait du brouhaha touristique, dans un cadre verdoyant et paisible, notre g\u00eete offre une atmosph\u00e8re des plus charmantes.", "site_name": "Le Manoir Hortensia"}
\ No newline at end of file
added data/enrich_cache/manoirhovey.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "manoirhovey.com", "logo_url": "https://manoirhovey.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/manonbterroirdeco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "manonbterroirdeco.com", "logo_url": "https://static.wixstatic.com/media/a9f7f4_d943ab9b8b8f4488bca2c50afd62bc30%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/a9f7f4_d943ab9b8b8f4488bca2c50afd62bc30%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/a9f7f4_3ed26e8710be41b1b530f29a664e8484~mv2.jpg/v1/fill/w_1250,h_1242,al_c/a9f7f4_3ed26e8710be41b1b530f29a664e8484~mv2.jpg", "description_meta": "Page d", "site_name": "Manon Brassard Terro"}
\ No newline at end of file
added data/enrich_cache/mantionbijoutier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mantionbijoutier.com", "logo_url": "https://mantionbijoutier.com/image/catalog/bijouterie-mantion/favicon-mention.png", "cover_url": null, "description_meta": "Grand choix de bijoux pour hommes, femmes et enfants. - Mantion Bijoutier - Terrebonne", "site_name": null}
\ No newline at end of file
added data/enrich_cache/maple3.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maple3.ca", "logo_url": "https://maple3.ca/cdn/shop/files/favicons_32x32.png?v=1743795935", "cover_url": "http://maple3.ca/cdn/shop/files/Maple3_Logo-green-1200x628.jpg?v=1663028342", "description_meta": "Explore Maple 3&#39;s organic maple water beverages, from pure to sparkling, plus our new organic sport drink designed for performance and all-day hydration.", "site_name": "Maple 3"}
\ No newline at end of file
added data/enrich_cache/maplemc2.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maplemc2.com", "logo_url": "https://maplemc2.com/cdn/shop/files/maplemc2-favicon.png?crop=center&height=32&v=1778881142&width=32", "cover_url": "http://maplemc2.com/cdn/shop/files/CAMSY-MC2-RUNNING-34-EXTRAPOLLER_5ace2aa1-0f36-4697-aac3-edadbbc7a1c3.png?v=1780869420", "description_meta": "Maple MC2, it&#39;s a natural fuel for effort made with organic maple syrup from Saint-Ours, 410 mg of electrolytes, 28 g of carbohydrates. Just maple and salt.", "site_name": "Maple MC2"}
\ No newline at end of file
added data/enrich_cache/maplesyrupworld.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maplesyrupworld.com", "logo_url": "https://www.maplesyrupworld.com/favicon.ico", "cover_url": null, "description_meta": "Fresh Canadian Maple Syrup Straight from the farm. Artisan-made Maple syrup: glass bottle, quart, gallon and cans, maple sugar, cream and more!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/marche-fermier-matha.odoo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marche-fermier-matha.odoo.com", "logo_url": "https://marche-fermier-matha.odoo.com/web/image/website/1/favicon?unique=9630a1b", "cover_url": "https://marche-fermier-matha.odoo.com/web/image/website/1/social_default_image?unique=9630a1b", "description_meta": "This is the homepage of the website", "site_name": "March\u00e9 Fermier Matha"}
\ No newline at end of file
added data/enrich_cache/marchecaprouge.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchecaprouge.ca", "logo_url": "https://www.marchecaprouge.ca/wp-content/uploads/2026/06/cropped-Logo-et-nom-MPCR_sf-scaled-1-180x180.png", "cover_url": "https://www.marchecaprouge.ca/wp-content/uploads/2023/06/Design-sans-titre-7.png", "description_meta": "D\u00e9couvrez votre march\u00e9 de quartier \u00e0 Qu\u00e9bec tous les samedis du 5 juillet au 30 ao\u00fbt 2025 de 10 h \u00e0 13 h en plein coeur du Vieux Cap-Rouge!", "site_name": "March\u00e9 Public de Cap-Rouge"}
\ No newline at end of file
added data/enrich_cache/marchecentreville.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchecentreville.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Le March\u00e9 Centre-Ville est un march\u00e9 d\u2019alimentation tr\u00e8s sp\u00e9cialis\u00e9. Notre d\u00e9fi est de constamment faire d\u00e9couvrir \u00e0 nos clients des nouveaux produits qui sont le fruit de notre imagination ou simplement de nouvelles d\u00e9", "site_name": "March\u00e9 Centre-Ville"}
\ No newline at end of file
added data/enrich_cache/marchecevic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchecevic.com", "logo_url": "https://marchecevic.com/wp-content/uploads/2026/02/cevic-logo-fav-300x300.png", "cover_url": "https://marchecevic.com/wp-content/uploads/2026/02/marche-cevic-og-image.png", "description_meta": "March\u00e9 C\u00e9vic offre les meilleures viandes et poissons de qualit\u00e9 depuis 30 ans \u00e0 Sainte-Anne-des-Monts. Plats maison, poulet frit et service traiteur pour des repas C\u00e9vic\u2019ment bon!", "site_name": "March\u00e9 C\u00e9vic - \u00c9picerie \u2022 Poissonnerie \u2022 Boucherie"}
\ No newline at end of file
added data/enrich_cache/marchechampetre.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchechampetre.org", "logo_url": "https://marchechampetre.org/wp-content/uploads/2023/07/cropped-mc-favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": "March\u00e9 Champ\u00eatre de Melbourne -"}
\ No newline at end of file
added data/enrich_cache/marchechelseamarket.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchechelseamarket.ca", "logo_url": "http://www.marchechelseamarket.ca/favicon.ico", "cover_url": "http://www.marchechelseamarket.ca/uploads/1/2/4/3/124344881/messenger-creation-5253f3e7-97bd-4c7c-8ce7-0ab13b0295d4.jpeg", "description_meta": "March\u00e9 Chelsea est un march\u00e9 de plein air situ\u00e9 au c\u0153ur du village de Chelsea, Quebec. \u200bVenez voir vos producteurs et artisans locaux!\u200b \u200b", "site_name": "MARCH&Eacute; CHELSEA MARKET"}
\ No newline at end of file
added data/enrich_cache/marchecouvertpotton.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchecouvertpotton.ca", "logo_url": "https://www.marchecouvertpotton.ca/wp-content/uploads/2025/04/LogoMarchePotton_RGB-2-e1746253059298.png", "cover_url": "https://www.marchecouvertpotton.ca/wp-content/uploads/2025/05/Header_accueil-e1746171171857.png", "description_meta": "Visit March\u00e9 couvert de Potton every Saturday in Mansonville for fresh produce, artisanal goods, live music, and community spirit. A true taste of the Eastern Townships.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchedechapeau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchedechapeau.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/89fa5a52-4adf-415d-b9fa-cd70881d72a5/Chapeau%20Agricultural.jpg/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/89fa5a52-4adf-415d-b9fa-cd70881d72a5/blob-05983b6.png", "description_meta": "D\u00e9couvrez le March\u00e9 de Chapeau, votre destination pour des produits locaux frais et des commer\u00e7ants locaux engag\u00e9s.", "site_name": "March\u00e9 de Chapeau"}
\ No newline at end of file
added data/enrich_cache/marchedelagare.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchedelagare.com", "logo_url": "https://marchedelagare.com/wp-content/uploads/2020/06/cropped-favicon-180x180.png", "cover_url": "https://marchedelagare.com/wp-content/uploads/2021/06/le-meilleur-des-cantons.jpg", "description_meta": "Tous les samedis, du 18 juin au 31 octobre, entre 9 h et 14 h, le March\u00e9 de la gare de Sherbrooke s\u2019anime en plein air.", "site_name": "March\u00e9 de la gare de Sherbrooke"}
\ No newline at end of file
added data/enrich_cache/marchedesjardiniers.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchedesjardiniers.ca", "logo_url": "https://marchedesjardiniers.ca/favicon.ico", "cover_url": "https://marchedesjardiniers.ca/wp-content/uploads/2018/07/patch2.png", "description_meta": "Le March\u00e9 des jardiniers de La Prairie, c\u2019est des marchands chaleureux ainsi que des produits frais et savoureux\u2009!", "site_name": "March\u00e9 des jardiniers"}
\ No newline at end of file
added data/enrich_cache/marchedessaveurs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchedessaveurs.ca", "logo_url": "https://marchedessaveurs.ca/wp-content/uploads/2026/02/marche-des-saveurs.png?w=180", "cover_url": "https://marchedessaveurs.ca/wp-content/uploads/2026/02/marche-des-saveurs.png?w=180", "description_meta": "Plus qu\u2019un march\u00e9, une communaut\u00e9", "site_name": "March\u00e9 des Saveurs de l&#039;\u00cele-Perrot"}
\ No newline at end of file
added data/enrich_cache/marcheduplateau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marcheduplateau.ca", "logo_url": "https://www.marcheduplateau.ca/favicon.png?1", "cover_url": null, "description_meta": "March\u00e9 public organis\u00e9 pour la ville de Gatineau. Bienvenue \u00e0 tous !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/marcheduvieuxsaurel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marcheduvieuxsaurel.com", "logo_url": "https://marcheduvieuxsaurel.com/wp-content/uploads/2017/02/cropped-logo-carrc3a91.jpg?w=180", "cover_url": "https://marcheduvieuxsaurel.com/wp-content/uploads/2017/02/26.jpg", "description_meta": "FORMULAIRE D&#039;INSCRIPTION 2026 : Disponible dans la section inscription 2026 \u00a0 Membre de l&#039;Association des March\u00e9s Publics du Qu\u00e9becAccr\u00e9dit\u00e9 par la R\u00e9gie des Alcools, des Courses et des Jeux.Notre pr\u00e9sidente a \u00e9t\u00e9 nomm\u00e9e &quot;Personnalit\u00e9 de l&#039;ann\u00e9e 2018&quot; par l&#039;\u00e9quipe de CJSO dans la cat\u00e9gorie &quot;Agriculture-Agroalimentaire&quot;Laur\u00e9at local du d\u00e9fi OSEntreprendre 201", "site_name": "March\u00e9 du Vieux-Saurel"}
\ No newline at end of file
added data/enrich_cache/marchefermepatry.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchefermepatry.com", "logo_url": "https://static.wixstatic.com/media/86c203_a7a82d2dceac46f2a0fb5b8276613913%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/86c203_a7a82d2dceac46f2a0fb5b8276613913%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/86c203_a7a82d2dceac46f2a0fb5b8276613913%7Emv2.png/v1/fit/w_2500,h_1330,al_c/86c203_a7a82d2dceac46f2a0fb5b8276613913%7Emv2.png", "description_meta": "March\u00e9 de la ferme Patry sur la route 112 \u00e0 Weedon. Boeuf charolais, pr\u00eat-\u00e0-manger, vrac, boulangerie, cr\u00e8me glac\u00e9e, agneaux, porc, sanglier, produits fins locaux.", "site_name": "March\u00e9 Ferme Patry"}
\ No newline at end of file
added data/enrich_cache/marchefermier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchefermier.ca", "logo_url": "https://www.marchefermier.ca/wp-content/uploads/2020/06/cropped-icons8-organic-food-64-e1591592478462-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchefermierhuntingdon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchefermierhuntingdon.ca", "logo_url": "https://www.marchefermierhuntingdon.ca/wp-content/uploads/2021/12/cropped-MarcheFermierHuntingdon_logo-180x180.jpg", "cover_url": "https://www.marchefermierhuntingdon.ca/wp-content/uploads/2016/07/DSC_5945.jpg", "description_meta": "Le March\u00e9 Fermier du Comt\u00e9 de Huntingdon est un organisme \u00e0 but non-lucratif g\u00e9r\u00e9 par les producteurs et la communaut\u00e9. Un festival de rue hebdomadaire.", "site_name": "March&eacute; Fermier Huntingdon"}
\ No newline at end of file
added data/enrich_cache/marchegodefroy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchegodefroy.com", "logo_url": "https://www.marchegodefroy.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchelavallee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchelavallee.com", "logo_url": "https://marchelavallee.com/wp-content/uploads/2016/10/favicon.png", "cover_url": "https://marchelavallee.com/wp-content/uploads/2026/08/EXT_857.jpg", "description_meta": null, "site_name": "March\u00e9 Lavall\u00e9e"}
\ No newline at end of file
added data/enrich_cache/marchelimoilou.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchelimoilou.com", "logo_url": "https://limoilouenvrac.com/cdn/shop/files/faviconico.png?crop=center&height=32&v=1747251559&width=32", "cover_url": "http://limoilouenvrac.com/cdn/shop/files/2020-05-24-rue-saint-joseph-msr-02-1200x675.png?height=628&pad_color=ffffff&v=1726164902&width=1200", "description_meta": "Les productions Limoilou en Vrac (Vie R\u00e9cr\u00e9ative, Artistique et Culturelle) est un organisme \u00e0 but non lucratif (OBNL) fond\u00e9 en 2006 et nouvellement reconnu comme entreprise d&#39;\u00e9conomie sociale. La mission de l&#39;organisme est la participation au d\u00e9veloppement de l&#39;identit\u00e9 et de la vitalit\u00e9 \u00e9conomique et culturelle ...", "site_name": "Limoilou en vrac"}
\ No newline at end of file
added data/enrich_cache/marchelocavore.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchelocavore.com", "logo_url": "https://marchelocavore.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchemoulinois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchemoulinois.ca", "logo_url": "https://marchemoulinois.ca/wp-content/uploads/2023/07/cropped-Untitled-1-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": "March\u00e9 public Moulinois"}
\ No newline at end of file
added data/enrich_cache/marcheoutaouais.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marcheoutaouais.com", "logo_url": "https://www.marcheoutaouais.com/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchepoissonsherbrooke.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepoissonsherbrooke.com", "logo_url": "https://img1.wsimg.com/isteam/ip/bb392f95-6f2d-43b1-a2f1-ae07b0180499/1_Blanc.png/:/rs=w:180,h:180,m", "cover_url": "https://i.vimeocdn.com/video/1997053160-e73f7b4ff84d30f511ac2e88eef0f9393761b26f7db6e97684ac2ae24e949f2f-d_1920x1080?&amp;r=pad", "description_meta": "\u200bDepuis 1957, notre poissonnerie fournit des produits frais et diversifi\u00e9 \u00e0 toute la r\u00e9gion de Sherbrooke.", "site_name": "March\u00e9 de Poisson Sherbrooke"}
\ No newline at end of file
added data/enrich_cache/marchepublic-beauport.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublic-beauport.ca", "logo_url": "https://marchepublic-beauport.ca/wp-content/uploads/cropped-marche-beauport-favicon-180x180.png", "cover_url": "https://marchepublic-beauport.ca/wp-content/uploads/social-marche-beauport.jpg", "description_meta": "Visible et facile d\u2019acc\u00e8s, le March\u00e9 public de Beauport est un v\u00e9ritable joyau pour les personnes habitant le quartier et les visiteurs de passage.", "site_name": "March\u00e9 Public de Beauport"}
\ No newline at end of file
added data/enrich_cache/marchepublic-pat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublic-pat.com", "logo_url": "https://marchepublic-pat.com/wp-content/uploads/2026/07/cropped-favicon-scaled-1-180x180.png", "cover_url": null, "description_meta": "Bienvenue au march\u00e9 ! Voir nos \u00e9v\u00e9nements Place du Village-de-Pointe-aux-Trembles March\u00e9 fermier Fruits et l\u00e9gumes frais et vari\u00e9s vendus par les mara\u00eechers locaux, viandes, fromages, boulangerie, et plus encore! Voir les producteurs All\u00e9e des artistes Cr\u00e9ations artisanales (textiles, bijoux, soins corporels, d\u00e9corations) avec une section d\u00e9di\u00e9e dans le parc du Fort-de-Pointe-aux-Trembles. Voir le", "site_name": "March\u00e9 public de Pointe-aux-Trembles"}
\ No newline at end of file
added data/enrich_cache/marchepublic.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublic.org", "logo_url": "https://marchepublic.org/wp-content/uploads/2016/07/favicon_57x57.png", "cover_url": "http://marchepublic.org/wp-content/uploads/2016/05/Logo_Marche_Public.png", "description_meta": "BIENVENUE AU MARCH\u00c9TOUS LES SAMEDIS DE 9H \u00c0 13HDU 27 JUIN AU 3 OCTOBRE 2026 \r\nPour ceux qui le d\u00e9couvrent, le march\u00e9 public de Deschambault est une exp\u00e9rience sensorielle hors du commun. C&#039;est la", "site_name": "March\u00e9 public de Deschambault"}
\ No newline at end of file
added data/enrich_cache/marchepublicavignon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicavignon.com", "logo_url": "https://marchepublicavignon.com/assets/images/fav-icon/icon.png", "cover_url": "https://marchepublicavignon.com/media/s/", "description_meta": "Description March\u00e9", "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchepublicdelamitis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicdelamitis.com", "logo_url": "https://www.marchepublicdelamitis.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "March&eacute; public de La Mitis"}
\ No newline at end of file
added data/enrich_cache/marchepublicdrummondville.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicdrummondville.com", "logo_url": "https://marchepublicdrummondville.com/wp-content/uploads/2024/07/cropped-Favicon-180x180.png", "cover_url": null, "description_meta": "Venez rencontrer les producteurs et artisans du March\u00e9 public de Drummondville dans une ambiance chaleureuse et invitante.", "site_name": "March\u00e9 Public Drummondville"}
\ No newline at end of file
added data/enrich_cache/marchepublicdudswell.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicdudswell.com", "logo_url": "https://marchepublicdudswell.com/image/iconbadak.webp", "cover_url": null, "description_meta": "BADAK500 adalah pusat resmi taruhan parlay online dengan pasaran terlengkap yang menawarkan pengalaman bermain aman, dan terpercaya setiap hari.", "site_name": "BADAK500"}
\ No newline at end of file
added data/enrich_cache/marchepubliceastman.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepubliceastman.ca", "logo_url": "https://marchepubliceastman.ca/wp-content/uploads/2020/11/cropped-favicon-mpe-180x180.jpg", "cover_url": null, "description_meta": "votre march\u00e9 au coeur du village", "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchepublicgranby.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicgranby.ca", "logo_url": "https://marchepublicgranby.ca/wp-content/uploads/icone-marche.png", "cover_url": "https://marchepublicgranby.ca/wp-content/uploads/Untitled-design-8-e1636996572316.jpg", "description_meta": "Des produits locaux disponibles \u00e0 l&#039;ann\u00e9e. Rendez-vous en ligne ou en personne \u00e0 la Place du March\u00e9, pour un caf\u00e9, des plats cuisin\u00e9s, de la viande ou des l\u00e9gumes ou autres produits.", "site_name": "March\u00e9 public de Granby et r\u00e9gion"}
\ No newline at end of file
added data/enrich_cache/marchepublicgrandeanse.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicgrandeanse.ca", "logo_url": "https://marchepublicgrandeanse.ca/wp-content/uploads/2020/01/cropped-March\u00e9-Grande-Anse-favicon-180x180.png", "cover_url": "https://marchepublicgrandeanse.ca/wp-content/uploads/2020/02/March\u00e9-La-Pocati\u00e8re-logo.png", "description_meta": null, "site_name": "March\u00e9 public de la Grande-Anse | March\u00e9 public situ\u00e9 \u00e0 La Pocati\u00e8re"}
\ No newline at end of file
added data/enrich_cache/marchepublicmagog.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicmagog.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5a6fce1412abd9a8e65862e1/1518628638665-73HPR2U33IPRMEUIHFVN/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5a6fce1412abd9a8e65862e1/t/5b0f42fd2b6a28f41d1c5ee9/1527726848146/logo_MPM_small.jpg?format=1500w", "description_meta": null, "site_name": "March\u00e9 public de Magog"}
\ No newline at end of file
added data/enrich_cache/marchepublicmegantic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicmegantic.com", "logo_url": "https://marchepublicmegantic.com/wp-content/uploads/2023/05/cropped-logo_fond_blanc-1-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchepublicrimouski.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicrimouski.ca", "logo_url": "https://static.wixstatic.com/media/3be691_c4b2ecbf6c2f431d9887d3741521e24d%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/3be691_c4b2ecbf6c2f431d9887d3741521e24d%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/3be691_f571588d8f474c928472764bba4a607a%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/3be691_f571588d8f474c928472764bba4a607a%7Emv2.jpg", "description_meta": "Les samedis de mai \u00e0 octobre, venez \u00e0 la rencontre des saveurs locales du Bas-Saint-Laurent au March\u00e9 public de Rimouski!", "site_name": "marcherimouski"}
\ No newline at end of file
added data/enrich_cache/marchepublicshawinigan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicshawinigan.com", "logo_url": "https://marchepublicshawinigan.com/wp-content/uploads/2024/12/favicon.png", "cover_url": "https://marchepublicshawinigan.com/wp-content/uploads/2024/12/bg-01.jpeg", "description_meta": "Le March\u00e9 Public de Shawinigan met en avant les produits des artisans et producteurs locaux, soutenant l\u2019\u00e9conomie de la r\u00e9gion.", "site_name": "March\u00e9 Public Shawinigan"}
\ No newline at end of file
added data/enrich_cache/marchepublicthetford.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicthetford.com", "logo_url": "https://marchepublicthetford.com/favicon.ico", "cover_url": "https://marchepublicthetford.com/wp-content/uploads/2021/06/MarchePublic_1200x630.png", "description_meta": "Le March\u00e9 Public de Thetford, c\u2019est plus de 20 producteurs et artisans avec chacun leur vari\u00e9t\u00e9 de produits et une exp\u00e9rience \u00e0 chaque samedi!", "site_name": "March\u00e9 Public de Thetford"}
\ No newline at end of file
added data/enrich_cache/marchepublicvdo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchepublicvdo.com", "logo_url": "https://marchepublicvdo.com/apple-touch-icon.png", "cover_url": "https://mpvdo.nyc3.digitaloceanspaces.com/site/_t/_1200x630_crop_center-center_82_none/OG-MPVDO.png?mtime=1720179407", "description_meta": "Site web du March\u00e9 public de la Vall\u00e9e-de-l&#039;Or (Val-d&#039;Or, Malartic et Senneterre) et de la Place Agnico-Eagle.", "site_name": "March\u00e9 public de la Vall\u00e9e-de-l&#039;Or"}
\ No newline at end of file
added data/enrich_cache/marcherichelieu.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marcherichelieu.ca", "logo_url": "https://www.marcherichelieu.ca/favicon.ico", "cover_url": null, "description_meta": "Avec plus de 50 magasins au Qu\u00e9bec, March\u00e9 Richelieu est le complice de votre quotidien.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchesainteanne.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchesainteanne.ca", "logo_url": "https://marchesainteanne.ca/wp-content/uploads/2020/08/cropped-MSADB-logo-2-1-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchesaintefoy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchesaintefoy.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/61420155ed56c66d551adace/7a523883-3e12-4ccd-8db5-22356821215a/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/61420155ed56c66d551adace/t/69b6e9c4e7717d6d175115d5/1773595076047/Copie+de+Sans+titre+%281%29.png?format=1500w", "description_meta": "D\u00e9couvrez le March\u00e9 public de Sainte-Foy, un lieu de produits locaux, producteurs passionn\u00e9s, et \u00e9v\u00e9nements festifs, ouvert de mai \u00e0 novembre \u00e0 Qu\u00e9bec.", "site_name": "March\u00e9 public de Sainte-Foy"}
\ No newline at end of file
added data/enrich_cache/marchesaintsauveur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchesaintsauveur.com", "logo_url": "https://marchesaintsauveur.com/wp-content/uploads/2020/06/mss-image-cover-facebook_profil-picture.jpg?w=180", "cover_url": "https://marchesaintsauveur.com/wp-content/uploads/2020/06/dsc_0389-1.jpg", "description_meta": "Prendre go\u00fbt au quartier", "site_name": "March\u00e9 Saint-Sauveur"}
\ No newline at end of file
added data/enrich_cache/marchesdici.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchesdici.org", "logo_url": "https://marchesdici.org/favicon.ico", "cover_url": "https://marchesdici.org/wp-content/uploads/cliente-satisfaite-avec-une-crepe.jpg", "description_meta": null, "site_name": "Les March\u00e9s d&#039;Ici"}
\ No newline at end of file
added data/enrich_cache/marchespublics-mtl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchespublics-mtl.com", "logo_url": "https://www.marchespublics-mtl.com/sites/default/themes/marchespublics_v1/apple-touch-icon.png", "cover_url": "https://www.marchespublics-mtl.com/sites/default/themes/marchespublics_v1/og_image.jpg", "description_meta": "Les March\u00e9s publics de Montr\u00e9al ont pour mission d&#039;am\u00e9liorer l\u2019acc\u00e8s aux produits frais \u00e0 travers un r\u00e9seau de march\u00e9s publics. Ils rapprochent la population montr\u00e9alaise des producteurs, mara\u00eechers, d\u00e9taillant\u00b7es, restaurateurs et artisans agroalimentaires d\u2019ici.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchespublicsgaspe.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchespublicsgaspe.ca", "logo_url": "https://cdn.prod.website-files.com/6579bef3c33b440029feb42a/65bbaa39b2164a03957f25ec_webclip.png", "cover_url": "https://cdn.prod.website-files.com/6579bef3c33b440029feb42a/65c3c48a72d4f49a3fc14427_image%20r%C3%A9seaux.jpg", "description_meta": "Nos march\u00e9s regorgent de d\u00e9lices frais et color\u00e9s, cultiv\u00e9s avec passion par nos producteurs locaux. Vous y trouverez une vari\u00e9t\u00e9 de fruits juteux, de l\u00e9gumes, fines herbes, de l&#x27;artisanat local en plus d&#x27;activit\u00e9s amusantes pour toutes la famille", "site_name": null}
\ No newline at end of file
added data/enrich_cache/marchestradition.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchestradition.com", "logo_url": "https://marchestradition.com/favicon.ico", "cover_url": "https://www.marchestradition.com/wp-content/uploads/2021/04/Home_FR.jpg", "description_meta": "Les March\u00e9s Tradition, c&#039;est votre \u00e9picerie locale! Consultez-nous pour tout savoir sur nos produits, nos recettes et sur votre \u00e9picerie de quartier!", "site_name": "marchestradition"}
\ No newline at end of file
added data/enrich_cache/marchevegetarien.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchevegetarien.com", "logo_url": "https://marchevegetarien.com/wp-content/uploads/2018/08/cropped-iconedusite-1-180x180.png", "cover_url": "http://marchevegetarien.com/wp-content/uploads/2018/08/circulaires.jpg", "description_meta": null, "site_name": "Le March\u00e9 V\u00e9g\u00e9tarien -"}
\ No newline at end of file
added data/enrich_cache/marchevieuxhull.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marchevieuxhull.ca", "logo_url": "https://www.marchevieuxhull.ca/favicon.png?1", "cover_url": null, "description_meta": "Le march\u00e9 du Vieux-Hull est situ\u00e9 dans le coeur de la ville. Producteurs, inscrivez-vous !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/mareechandelles.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mareechandelles.com", "logo_url": "https://mareechandelles.com/cdn/shop/files/FAVICONE_32x32.png?v=1720812407", "cover_url": "http://mareechandelles.com/cdn/shop/files/Frame_48.jpg?v=1721226791", "description_meta": "Boutique en ligne de chandelles de soya faites \u00e0 la main au Qu\u00e9bec. Plus de 700 produits cocooning diff\u00e9rents. Le meilleur choix pour des produits de d\u00e9tente en ligne.", "site_name": "Mar\u00e9e - Chandelles"}
\ No newline at end of file
added data/enrich_cache/margarinethibault.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "margarinethibault.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5602bb79e4b005e5141eb308/1461871900455-330978RSN7BG8DJ5GELP/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5602bb79e4b005e5141eb308/t/5605a74fe4b068a8e5d8e192/1443211088265/les-margarines-thibault.png?format=1500w", "description_meta": "Margarine Thibault, Situ\u00e9 \u00e0 Trois-Rivi\u00e8res en Mauricie, est le seul fabricant qu\u00e9b\u00e9cois de margarine et tartinades.", "site_name": "Margarines Thibault"}
\ No newline at end of file
added data/enrich_cache/marie-les-bains.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marie-les-bains.com", "logo_url": "https://marie-les-bains.com/cdn/shop/files/MLB_logo_reseaux_16x16.jpg?v=1617741360", "cover_url": "https://marie-les-bains.com/cdn/shop/files/Cordealingeindigo_2f0ef77e-0512-418f-9e1a-3f4baa3cac03_1200x857.jpg?v=1617802507", "description_meta": "Marie-les-bains est une teinturerie artisanale nich\u00e9e dans les Canton-de-l\u2019Est, au Qu\u00e9bec. Nous proposons une multitude de produits teints soigneusement \u00e0 la main avec des plantes. Nous prenons plaisir \u00e0 explorer les facettes infinies de la teinture v\u00e9g\u00e9tale tout en int\u00e9grant les savoirs traditionnels.", "site_name": "Marie-les-bains"}
\ No newline at end of file
added data/enrich_cache/mariefil.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mariefil.com", "logo_url": "https://mariefil.com/cdn/shop/files/fauvicon_3f9a7b10-da45-4333-95be-9d57c890d302_32x32.png?v=1613690500", "cover_url": null, "description_meta": "Culotte menstruelle, maillot de bain menstruel, serviette hygi\u00e9nique lavable toutes fabriqu\u00e9es au Qu\u00e9bec par Marie fil.", "site_name": "Marie fil"}
\ No newline at end of file
added data/enrich_cache/marieserreau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marieserreau.com", "logo_url": "https://s2.wp.com/i/webclip.png?m=1713868326i", "cover_url": "https://s0.wp.com/i/blank.jpg?m=1383295312i", "description_meta": "cr\u00e9ation de c\u00e9ramique", "site_name": "Marie Serreau"}
\ No newline at end of file
added data/enrich_cache/marigoldmtl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "marigoldmtl.com", "logo_url": "https://marigoldmtl.com/cdn/shop/files/Design_sans_titre_9d0e8535-4644-48b8-9f5f-7abc43eb4730.png?crop=center&height=48&v=1719606718&width=48", "cover_url": "http://marigoldmtl.com/cdn/shop/files/marigold_montreal_logo_2048x_823ba3ae-a17a-4458-abcf-a6982eb3c345_1200x1200.png?v=1648602843", "description_meta": "D\u00e9couvrez nos v\u00eatements design et \u00e9thiques, pour femme, con\u00e7us et fabriqu\u00e9s \u00e0 Montr\u00e9al. Retrouvez nos nouveaut\u00e9s, nos collections, nos lookbooks, nos articles de Mode et notre boutique en ligne.", "site_name": "Marigold par Marilyne Baril"}
\ No newline at end of file
added data/enrich_cache/mariloudesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mariloudesign.com", "logo_url": "https://mariloudesign.com/wp-content/uploads/2021/03/cropped-logo-M-onglet-1-180x180.jpg", "cover_url": "https://mariloudesign.com/wp-content/uploads/2018/03/Nouveau-logo-Facebook.jpg", "description_meta": "Marilou Design est une gamme de v\u00eatements fi\u00e8rement con\u00e7ue et fabriqu\u00e9e au Qu\u00e9bec, avec la mission d&#039;offrir une mode locale accessible et un service de proximit\u00e9.", "site_name": "Marilou Design"}
\ No newline at end of file
added data/enrich_cache/martindessert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "martindessert.com", "logo_url": "https://martindessert.com/cdn/shop/files/favicon-md.png?crop=center&height=32&v=1721075290&width=32", "cover_url": "http://martindessert.com/cdn/shop/files/LOGO-MDES-01_5_c69d5411-f082-485d-8543-4a3318b8d7f4.png?height=628&pad_color=ffffff&v=1707798229&width=1200", "description_meta": "Martin Dessert", "site_name": "Martin Dessert"}
\ No newline at end of file
added data/enrich_cache/masdelinc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "masdelinc.com", "logo_url": "https://www.masdelinc.com/cdn/shop/files/Favicon-Masdel-2026_32x32.svg?v=1775070449", "cover_url": "http://www.masdelinc.com/cdn/shop/files/Masdel-logo_1200x628_fc29500a-c1ce-42b1-984f-70420bf97874.png?v=1722971677", "description_meta": "Se sentir beau, voyager, demeurer en forme et se dorloter.", "site_name": "Masdel"}
\ No newline at end of file
added data/enrich_cache/masso1452.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "masso1452.com", "logo_url": "https://masso1452.com/wp-content/uploads/2023/12/cropped-masso-1452-1-180x180.png", "cover_url": "https://masso1452.com/wp-content/uploads/2024/01/b95e426d-60a3-41b4-9812-b2b6df6441e8.jpeg", "description_meta": "D\u00e9couvrez le pouvoir du massage th\u00e9rapeutique et de l&#039;hypnoth\u00e9rapie avec Masso 1452. Nos s\u00e9ances personnalis\u00e9es combinent l&#039;art du massage pour soulager les tensions et l&#039;hypnose pour une d\u00e9tente profonde, offrant un \u00e9quilibre parfait pour votre bien-\u00eatre physique et mental.", "site_name": "Masso 1452"}
\ No newline at end of file
added data/enrich_cache/matelasavanti.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "matelasavanti.com", "logo_url": "https://matelasavanti.com/cdn/shop/files/Artboard_10_8279fd14-5b8f-4c5f-b819-5633ab38e918_32x32.png?v=1613515038", "cover_url": "http://matelasavanti.com/cdn/shopifycloud/storefront/assets/no-image-2048-a2addb12_1024x.gif", "description_meta": "Chez Avanti, nous sommes une entreprise qu\u00e9b\u00e9coise sp\u00e9cialis\u00e9e dans la fabrication de matelas, bases de lit ajustables, oreillers et literie. Visitez-nous.", "site_name": "Avanti"}
\ No newline at end of file
added data/enrich_cache/matelasbonheur.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "matelasbonheur.ca", "logo_url": "https://www.matelasbonheur.ca/apple-touch-icon.png?v=1786554478", "cover_url": "https://www.matelasbonheur.ca/wp-content/uploads/2022/11/MB_SHARE.jpg", "description_meta": "Matelas Bonheur - Entreprise familiale qu\u00e9b\u00e9coise depuis 1986. D\u00e9couvrez nos 18 magasins ou magasinez en ligne avec les conseils de nos experts en sommeil.", "site_name": "Matelas Bonheur"}
\ No newline at end of file
added data/enrich_cache/matelibre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "matelibre.com", "logo_url": "https://matelibre.com/cdn/shop/t/25/assets/apple-touch-icon.png?v=63373535538480006571693502355", "cover_url": "http://matelibre.com/cdn/shop/files/Meta-OG_d7ce0b32-144c-4a69-a26e-3e406229c641.png?v=1693506527", "description_meta": "A better energy. Plant-based. Super Antioxidant. We create the best functional yerba mate drinks, low in sugar and perfectly balanced. Buy online today!", "site_name": "Mate Libre"}
\ No newline at end of file
added data/enrich_cache/materiauxsml.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "materiauxsml.com", "logo_url": "https://static.wixstatic.com/ficons/84a992_f4b45e0d1da246e1b67167b60efcb5b9%7Emv2.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mathieublanchard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mathieublanchard.ca", "logo_url": "https://mathieublanchard.ca/cdn/shop/files/Petit_logo_B_noir_vecto_32x32.svg?v=1681957380", "cover_url": "http://mathieublanchard.ca/cdn/shop/files/La_joaillerie_plus_simplement_png.webp?v=1743435312", "description_meta": "Discover the world of Mathieu Blanchard Jewelry, where each piece is a unique work of art. Specializing in custom creations and timeless designs, our workshop combines artisanal expertise and passion to offer you exceptional jewelry. Explore our collections and bring your personalized projects to life.", "site_name": "Mathieu Blanchard Joaillerie"}
\ No newline at end of file
added data/enrich_cache/mathpiquant.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mathpiquant.com", "logo_url": "https://www.mathpiquant.com/public/media/favicon/android-icon-192x192.png?v=110826080837", "cover_url": null, "description_meta": null, "site_name": "Math Piquant"}
\ No newline at end of file
added data/enrich_cache/mathsport.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mathsport.ca", "logo_url": "https://mathsport.ca/wp-content/uploads/2022/08/cropped-math-sport-favocin-180x180.png", "cover_url": "https://mathsport.ca/wp-content/uploads/2026/02/modern-running-shoes.png", "description_meta": "Faites un choix \u00e9clair\u00e9 en mati\u00e8re de chaussures de sport gr\u00e2ce \u00e0 notre guide qui met l&#039;accent sur le confort, la qualit\u00e9 et la durabilit\u00e9.", "site_name": "Le monde des chaussures de sport"}
\ No newline at end of file
added data/enrich_cache/matpel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "matpel.ca", "logo_url": "https://matpel.ca/wp-content/uploads/2018/10/favicon.png", "cover_url": "https://matpel.ca/wp-content/uploads/2018/10/icones-sur-mesure-gris.png", "description_meta": "MATPEL peut r\u00e9aliser votre projet d&#039;\u00e9b\u00e9nisterie sur mesure, r\u00e9sidentiel ou commercial. Vous cherchez un \u00e9b\u00e9niste haut de gamme \u00e0 Montr\u00e9al? Ne cherchez plus.", "site_name": "Matpel"}
\ No newline at end of file
added data/enrich_cache/matsheshucreations.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "matsheshucreations.com", "logo_url": "https://matsheshucreations.com/cdn/shop/files/292403310_411227187692350_3938171915723338327_n.jpg?crop=center&height=32&v=1773875155&width=32", "cover_url": "https://matsheshucreations.com/cdn/shop/files/kit-perlage-diy-autochtone-ambiance-mains-perles-matsheshu.jpg?v=1773928205&width=300", "description_meta": "D\u00e9couvrez l&#39;artisanat autochtone avec Matsheshu Cr\u00e9ations : bijoux perl\u00e9s, chandails oranges et ensemble de perlage pour s&#39;initier. Profitez d&#39;un savoir-faire innu, \u00e0 porter ou \u00e0 cr\u00e9er soi-m\u00eame.", "site_name": "Matsheshu Cr\u00e9ations"}
\ No newline at end of file
added data/enrich_cache/maturin.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "maturin.ca", "logo_url": "https://www.maturin.ca/favicon.png", "cover_url": "https://www.maturin.ca/assets/admin/images/newLogoLight.png", "description_meta": "March\u00e9 fermier et \u00e9picerie en ligne d", "site_name": "Maturin"}
\ No newline at end of file
added data/enrich_cache/mcauslan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mcauslan.com", "logo_url": "https://mcauslan.com/wp-content/uploads/2024/06/Favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mechouidesappalaches.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mechouidesappalaches.ca", "logo_url": "https://www.mechouidesappalaches.ca/favicon.png", "cover_url": "https://www.mechouidesappalaches.ca/og-image.jpg", "description_meta": "M\u00c3\u00a9choui des Appalaches \u00e2\u0080\u0094 porc fum\u00c3\u00a9 au bois, demi-poulet, poutines et produits locaux sans gluten. Camion de rue \u00c3\u00a0 Berthier-sur-Mer et traiteur m\u00c3\u00a9choui pour vos \u00c3\u00a9v\u00c3\u00a9nements.", "site_name": "M\u00c3\u00a9choui des Appalaches"}
\ No newline at end of file
added data/enrich_cache/media-nova.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "media-nova.ca", "logo_url": "https://media-nova.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/medicom.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "medicom.com", "logo_url": "https://medicom.com/wp-content/uploads/2020/05/cropped-loader-180x180.png", "cover_url": "https://medicom.com/wp-content/uploads/2024/04/medicom-image.jpg", "description_meta": "35 years of providing peace of mind through leadership in quality infection prevention and control solutions", "site_name": "Medicom"}
\ No newline at end of file
added data/enrich_cache/melanielaplante.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "melanielaplante.com", "logo_url": "https://www.melanielaplante.com/cdn/shop/files/accent-transparent.png?crop=center&height=32&v=1768929043&width=32", "cover_url": "http://www.melanielaplante.com/cdn/shop/files/collier-verre-artisanal-mela-quebec.png?v=1771952193", "description_meta": "Bijoux et objets en verre faits \u00e0 la main au Qu\u00e9bec. Bagues, colliers, assiettes et cr\u00e9ations lumineuses sign\u00e9es M\u00e9lanie Laplante \u2013 Atelier M\u00c9LA.", "site_name": "M\u00c9LA \u2013 M\u00e9lanie Laplante"}
\ No newline at end of file
added data/enrich_cache/melissacharette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "melissacharette.com", "logo_url": "https://www.melissacharette.com/uploads/b/95e7c100-9dd7-11e9-b68b-03de66ef3901/icon_180x180_ios_MzE1Nz.png?width=180", "cover_url": "https://www.melissacharette.com/uploads/b/95e7c100-9dd7-11e9-b68b-03de66ef3901/20230904_152210%20(1).jpg", "description_meta": "Papeterie, sacs \u00e0 mains et accessoires artisanaux, faits avec une conscience \u00e9co responsable.", "site_name": "Melissa Charette Laganiere - Artiste"}
\ No newline at end of file
added data/enrich_cache/mellonbrasserie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mellonbrasserie.ca", "logo_url": "https://mellonbrasserie.ca/apple-touch-icon.png", "cover_url": "https://mellonbrasserie.ca/assets/mellon/_1200x630_crop_center-center_none/mellon-brasserie.jpg", "description_meta": "Brasserie Mell\u00f6n - L\u2019endroit o\u00f9 d\u00e9guster de bonnes bi\u00e8res entre amis", "site_name": "Mell\u00f6n"}
\ No newline at end of file
added data/enrich_cache/mellonia.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mellonia.ca", "logo_url": "https://static.wixstatic.com/media/89e1a3_a790d2d9dae5413aa6f20f3952d24ece%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/89e1a3_a790d2d9dae5413aa6f20f3952d24ece%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/memphremagogvraiment.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "memphremagogvraiment.com", "logo_url": "https://www.memphremagogvraiment.com/img/favicon.svg", "cover_url": "https://tj.imgix.net/detour-memphre/seo/vm-partage-fr.png?v=1719428819", "description_meta": "Pour ses attraits gourmands, ses sentiers p\u00e9destres, son r\u00e9seau cyclable ou ses paysages culturels, toutes les raisons sont bonnes pour explorer Memphr\u00e9magog.", "site_name": "Vraiment Memphr\u00e9"}
\ No newline at end of file
added data/enrich_cache/menaud.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "menaud.ca", "logo_url": "https://menaud.ca/cdn/shop/files/Menaud_illustration_noir-01_cd6c31d6-d31f-4ba8-860c-3d6e1949e944.png?crop=center&height=32&v=1687790453&width=32", "cover_url": "http://menaud.ca/cdn/shop/files/MEN23_sharing_preview_ca73415d-106c-4a99-a0fa-24ef8878e856.jpg?v=1691694077", "description_meta": "Menaud, la distillerie et brasserie, souhaite revenir \u00e0 la source du ma\u00eetre et fait rena\u00eetre la part artisanale de la distillation et du brassage. En y arrivant, Menaud deviendrait un hommage aux cr\u00e9ateurs modernes et un fervent d\u00e9fenseur de leur libert\u00e9\u00a0; leur savoir-faire.", "site_name": "Menaud"}
\ No newline at end of file
added data/enrich_cache/menuiserie-authentique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "menuiserie-authentique.com", "logo_url": "https://static.wixstatic.com/media/85a569_ce79f9bbb7df432ca1d4bfe18b0f3ca5%7Emv2_d_1920_1953_s_2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/85a569_ce79f9bbb7df432ca1d4bfe18b0f3ca5%7Emv2_d_1920_1953_s_2.png", "cover_url": null, "description_meta": "Menuiserie Authentique cumule une exp\u00e9rience vaste et approfondie dans la reproduction et la restauration de portes, fen\u00eatres et boiseries anciennes. Bas\u00e9e \u00e0 Saint-Jean Port Joli depuis 2002.", "site_name": "Menuiserie"}
\ No newline at end of file
added data/enrich_cache/menuverger.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "menuverger.com", "logo_url": "https://menuverger.com/wp-content/uploads/2021/12/Logo-Le-Menu-Verger-03-500x500.png", "cover_url": "https://menuverger.com/wp-content/uploads/2021/12/Logo-Le-Menu-Verger-03.png", "description_meta": "Le Menu Verger cultive des fruits et noix diversifi\u00e9s et locaux au Saguenay, en\u00a0Zone Bor\u00e9ale, pour une alimentation saine et durable.", "site_name": "Le Menu Verger"}
\ No newline at end of file
added data/enrich_cache/mercilaterrebio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mercilaterrebio.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5e8208ce6cd71b27134644ec/1585583687111-TLQNDIFRMJ5U9MTA58N8/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5e8208ce6cd71b27134644ec/t/641fc3d548d15535e83ecace/1679803349947/merci-la-terre-logo.png?format=1500w", "description_meta": null, "site_name": "merci la terre"}
\ No newline at end of file
added data/enrich_cache/merdeka62tas.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "merdeka62tas.com", "logo_url": "https://merdeka62tas.com/favicon.ico", "cover_url": null, "description_meta": "MERDEKA62 adalah situs game online resmi yang menghadirkan ribuan pilihan game seru dengan peluang kemenangan tinggi. Di sini, semua pemain diberi kebebasan untuk memilih game favorit dan merasakan sensasi kemenangan yang sesungguhnya dengan lisensi resmi, kemenanganmu pasti dibayar sepenuhnya, rasakan sendiri kemeneangan merdeka 62.", "site_name": "MERDEKA62"}
\ No newline at end of file
added data/enrich_cache/meredithjoaillerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "meredithjoaillerie.com", "logo_url": "https://meredithjoaillerie.com/favicon.ico", "cover_url": null, "description_meta": "Meredith Joaillerie", "site_name": "Meredith Joaillerie"}
\ No newline at end of file
added data/enrich_cache/merlaine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "merlaine.com", "logo_url": "https://merlaine.com/boutique/image/catalog/-image/logo/logoron.jpg", "cover_url": null, "description_meta": "Pour une literie r\u00e9confortante, les produits Merlaine vous combleront! Atelier de confection de literie qui utilise la laine du Qu\u00e9bec.", "site_name": "Merlaine"}
\ No newline at end of file
added data/enrich_cache/mermax.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mermax.ca", "logo_url": "https://static.wixstatic.com/media/d3588f_51b802e44d704c0a97cad9fd5f0482f4%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d3588f_51b802e44d704c0a97cad9fd5f0482f4%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mesbijouxdefamille.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mesbijouxdefamille.ca", "logo_url": "https://www.mesbijouxdefamille.ca/img/favicon.ico?1700947537", "cover_url": null, "description_meta": "Bijoux personnalis\u00e9s avec gravures et pierres de naissance pour toute la famille. Collier pr\u00e9nom, Bracelet et bague.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/metalico.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "metalico.ca", "logo_url": "https://metalico.ca/wp-content/uploads/2024/02/conduits-lot-300x300.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/metamorphoseonaturel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "metamorphoseonaturel.ca", "logo_url": "https://metamorphoseonaturel.ca/boutique/image/catalog/-DS-IMAGES/-LOGO/M\u00e9tamorphose-O-Naturel--5--200X200.jpg", "cover_url": null, "description_meta": "Metamorphose O Naturel - Naturopathie - yoga - cours nutrition - retraite sant\u00e9 - traiteur", "site_name": "MetamoprhoseONaturel"}
\ No newline at end of file
added data/enrich_cache/meteore.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "meteore.ca", "logo_url": "https://meteore.ca/wp-content/uploads/2023/11/cropped-favicon-cuisine-fusion-meteore-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/metrodb.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "metrodb.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/657b06ad1d44ed6d047b85ab/2224ccef-67dd-4c52-a698-d0fc3199de81/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/657b06ad1d44ed6d047b85ab/t/65ddf142739e680a6b42240a/1709044034496/logopastille.png?format=1500w", "description_meta": "\u00c9picerie metro o\u00f9 la qualit\u00e9 et la fra\u00eecheur rencontrent un excellent service \u00e0 la client\u00e8le. Aliments frais, repas pr\u00eats et plus encore...", "site_name": "Metro DB"}
\ No newline at end of file
added data/enrich_cache/meubleshochelaga.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "meubleshochelaga.com", "logo_url": "https://meubleshochelaga.com/favicon.ico", "cover_url": "https://seb.tfmdev.com/wp-content/uploads/2020/11/meuble-sur-mesure-scaled.jpg", "description_meta": "Meubles Hochelaga, Fabricant de Meuble Antique et Contemporain. Boutique en ligne. \u00c9b\u00e9nisterie offrant des meubles et cr\u00e9ations en bois faits \u00e0 la main avec des techniques de fabrication et de finition d\u2019antan.", "site_name": "STEFI &amp; SEB par Meubles Hochelaga"}
\ No newline at end of file
added data/enrich_cache/meyeur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "meyeur.com", "logo_url": "https://www.meyeur.com/cdn/shop/files/favicon.png?crop=center&height=32&v=1756493574&width=32", "cover_url": null, "description_meta": "Marque qu\u00e9b\u00e9coise de jeux de conversation et outils d&#39;introspection.", "site_name": "MEYEUR"}
\ No newline at end of file
added data/enrich_cache/mia-bijoux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mia-bijoux.ca", "logo_url": "https://mia-bijoux.ca/cdn/shop/files/mia572CP_HQ_32x32.jpg?v=1613542927", "cover_url": null, "description_meta": "Shop non toxic &amp; made to last jewelry and watches for women. MIA make premium quality pieces for women who want jewelry safe for their sensitive skin, tarnish free and more affordable than gold jewelry. Canadian company from Quebec City.", "site_name": "Mia Bijoux"}
\ No newline at end of file
added data/enrich_cache/miboty.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "miboty.com", "logo_url": "https://miboty.com/cdn/shop/files/miboty1_1.png?crop=center&height=32&v=1685230251&width=32", "cover_url": null, "description_meta": "Cosm\u00e9tiques naturels canadiens. Soins corps &amp; cheveux formul\u00e9s sans perturbateurs endocriniens, \u00e0 base d&#39;ingr\u00e9dients v\u00e9g\u00e9taux. Livraison gratuite d\u00e8s 100 $.", "site_name": "MIBOTY"}
\ No newline at end of file
added data/enrich_cache/michaparrita.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "michaparrita.com", "logo_url": "https://michaparrita.com/img/icon-alexistogel.webp", "cover_url": "https://michaparrita.com/img/togel-cambodia-alexistogel.png", "description_meta": "ALEXISTOGEL menyediakan keluaran Kamboja hari ini lengkap dengan result live draw togel Cambodia tercepat dan akurat. Dapatkan pengeluaran terbaru Sydney Pools, data result harian, dan update angka togel terpercaya setiap hari.", "site_name": "TOGEL CAMBODIA"}
\ No newline at end of file
added data/enrich_cache/michelecourtemanche.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "michelecourtemanche.ca", "logo_url": "https://michelecourtemanche.ca/boutique/image/catalog/-Boutique/Carte-de-visite-Mich\u00e8le-Courtemanche-detail.jpg", "cover_url": null, "description_meta": "Mich\u00e8le Courtemanche fabrique \u00e0 la main, au Qu\u00e9bec, des bijoux hypoallerg\u00e8nes en Argentium : colliers, cha\u00eenes, boucles d\u2019oreilles, bracelets, bagues.", "site_name": "Mich\u00e8le Courtemanche, artiste bijouti\u00e8re"}
\ No newline at end of file
added data/enrich_cache/micheljodoin.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "micheljodoin.ca", "logo_url": "https://www.micheljodoin.ca/cdn/shop/files/favicon_32x32.png?v=1614313020", "cover_url": "https://cdn.shopify.com/s/files/1/0278/7927/6678/files/logo_53e001f2-0568-46dc-834c-3b5dd764e9b0.png?height=628&pad_color=fff&v=1614305245&width=1200", "description_meta": "D\u00e9couvrez nos cidres et spiritueux \u00e0 base de pommes, en nous visitant \u00e0 notre cidrerie de Rougemont en Mont\u00e9r\u00e9gie. De pommes en fils depuis 1901.", "site_name": "Cidrerie Michel Jodoin"}
\ No newline at end of file
added data/enrich_cache/michellekempjewelry.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "michellekempjewelry.com", "logo_url": "https://michellekempjewelry.com/cdn/shop/files/Logo_jpg.jpg?crop=center&height=32&v=1736350759&width=32", "cover_url": "http://michellekempjewelry.com/cdn/shop/files/Clust_3.jpg?v=1732037765", "description_meta": "Quebec artisan: delicate handmade jewelry, birth flowers, and custom creations. Services: restoration, repair, recycling.", "site_name": "Michelle Kemp Joailli\u00e8re"}
\ No newline at end of file
added data/enrich_cache/microbrasserie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasserie.com", "logo_url": "https://microbrasserie.com/favicon.ico", "cover_url": null, "description_meta": "La MicroBrasserie Charlevoix cr\u00e9e des bi\u00e8res savoureuses Qu\u00e9b\u00e9coises depuis 25 ans. Que vous soyez un d\u00e9butant ou un expert, nous avons LA bi\u00e8re qui vous plaira", "site_name": "MicroBrasserie Charlevoix"}
\ No newline at end of file
added data/enrich_cache/microbrasserie.stpancrace.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasserie.stpancrace.com", "logo_url": "https://microbrasserie.stpancrace.com/wp-content/uploads/2021/04/cropped-Capture-decran-le-2021-04-23-a-11.54.42-180x180.png", "cover_url": "https://microbrasserie.stpancrace.com/wp-content/uploads/2022/09/IMG_20210905_110507-scaled.jpg", "description_meta": "\u00c0 la Microbrasserie St-Pancrace, chacune de nos bi\u00e8res a sa l\u00e9gende. Brass\u00e9es \u00e0 Baie-Comeau, elles sont inspir\u00e9es du territoire de la C\u00f4te-Nord.", "site_name": "Microbrasserie St-Pancrace | LA C\u00d4TE-NORD \u00c0 BOIRE"}
\ No newline at end of file
added data/enrich_cache/microbrasseriecoaticook.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasseriecoaticook.ca", "logo_url": "https://microbrasseriecoaticook.ca/wp-content/uploads/2024/10/cropped-coaticook_logo_blanc-180x180.png", "cover_url": null, "description_meta": "HORAIRE Lundi\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a011 h 30 \u00e0 21 h Mardi\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a011 h 30 \u00e0 21 h Mercredi\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a011 h 30 \u00e0 21 h Jeudi\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a011 h 30 \u00e0 21 h Vendredi\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a011 h 30 \u00e0 21 h Samedi\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 11 h 30 \u00e0 21 h Dimanche\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 11 h 30 \u00e0 21 h RESTAURANT \u00a0 (819) 804-1234 info@microbrasse", "site_name": "Microbrasserie de Coaticook"}
\ No newline at end of file
added data/enrich_cache/microbrasseriedebellechasse.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasseriedebellechasse.ca", "logo_url": "https://microbrasseriedebellechasse.ca/wp-content/uploads/2025/06/cropped-haut-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/microbrasseriedescantons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasseriedescantons.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/628c3dbd05c6ca4ac8f5f8b6/8ee3855d-f45d-43f2-9d2a-4cf20b3a1e5e/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/628c3dbd05c6ca4ac8f5f8b6/t/628ecd6b180c5321ed3b422d/1653525867114/Logo-DesCantons-Microbrasserie_Blanc.png?format=1500w", "description_meta": null, "site_name": "Des Cantons Microbrasserie"}
\ No newline at end of file
added data/enrich_cache/microbrasserieequinoxe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasserieequinoxe.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/f0fbecbd-19b7-4f5b-805c-2dc7c40a5964/Resto%201%202025.jpg", "description_meta": "D\u00e9couvrez le restaurant Mansonville, Microbrasserie \u00c9quinoxe, o\u00f9 savourez une cuisine locale authentique et des bi\u00e8res artisanales exceptionnelles.", "site_name": "Microbrasserie \u00c9quinoxe"}
\ No newline at end of file
added data/enrich_cache/microbrasserielamemphre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasserielamemphre.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/63320ddbc51abb2dfd18ff19/d78d6ea3-7c22-4fc6-82b4-6b94ec29a1d0/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/63320ddbc51abb2dfd18ff19/t/637bd7594a36654be94a4160/1669060441158/Logo_signature_beige_Plan+de+travail+1.png?format=1500w", "description_meta": null, "site_name": "Microbrasserie la Memphr\u00e9"}
\ No newline at end of file
added data/enrich_cache/microbrasserielardoise.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasserielardoise.com", "logo_url": "https://microbrasserielardoise.com/wp-content/uploads/2023/05/ardoise-favicon.svg", "cover_url": "https://microbrasserielardoise.com/wp-content/uploads/2023/05/ardoise-terrasse.jpg", "description_meta": "L\u2019Ardoise est un projet de microbrasserie locale qui propose des bi\u00e8res artisanales de la plus haute qualit\u00e9 ainsi qu\u2019un lieu de rencontre convivial.", "site_name": "L&#039;ardoise"}
\ No newline at end of file
added data/enrich_cache/microbrasserielashed.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasserielashed.com", "logo_url": "https://microbrasserielashed.com/favicon.ico?603d046c9a6fdfbb", "cover_url": null, "description_meta": "Microbrasserie artisanale qu\u00c3\u00a9b\u00c3\u00a9coise. Bi\u00c3\u00a8res de caract\u00c3\u00a8re, bouffe locale et ambiance chaleureuse dans un d\u00c3\u00a9cor rustique et accueillant.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/microbrasserienouvellefrance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microbrasserienouvellefrance.com", "logo_url": "https://microbrasserienouvellefrance.com/wp-content/themes/cognitif-starter/assets/favicons/apple-touch-icon.png", "cover_url": "https://microbrasserienouvellefrance.com/wp-content/uploads/2017/04/og-img.png", "description_meta": "Mettez-vous dans la peau des premiers colombs qui ont d\u00e9couvert ce qui est aujourd\u2019hui notre pays. Faites la d\u00e9couverte de la Nouvelle France", "site_name": "Microbrasserie Nouvelle France"}
\ No newline at end of file
added data/enrich_cache/microdulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microdulac.com", "logo_url": "https://microdulac.com/ressources/images/favicon/light/android-icon-192x192.png", "cover_url": "https://microdulac.com/uploads/og-image.png", "description_meta": "Premi\u00e8re microbrasserie du Lac St-Jean, la Micro du Lac cr\u00e9e des bi\u00e8res uniques depuis 2007 et offre un menu bistrot aux saveurs r\u00e9gionales l", "site_name": "Microbrasserie du Lac St-Jean"}
\ No newline at end of file
added data/enrich_cache/microdulievre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microdulievre.com", "logo_url": "https://microdulievre.com/images/mdl-logo-noir.png", "cover_url": "https://microdulievre.com/images/headers/header_keg2-min.jpg", "description_meta": "La Microbrasserie du Li\u00e8vre, situ\u00e9e \u00e0 Mont-Laurier, offre des bi\u00e8res artisanales tr\u00e8s diversifi\u00e9es", "site_name": null}
\ No newline at end of file
added data/enrich_cache/microdupav.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microdupav.ca", "logo_url": "https://microdupav.ca/ressources/images/favicon/android-icon-192x192.png", "cover_url": "https://microdupav.ca/uploads/og-image.png", "description_meta": "Venez go\u00fbter les meilleures bi\u00e8res du Saguenay \u00e0 la microbrasserie du pavillon noir \u00e0 La Baie.", "site_name": "Microbrasserie du Pavillon Noir"}
\ No newline at end of file
added data/enrich_cache/microhermite.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microhermite.com", "logo_url": "https://microhermite.com/owebo-votresite/sites/default/files/images/52434284_1819733984798985_2910648213503475712_n.jpg", "cover_url": "https://microhermite.com/sites/default/files/images/52434284_1819733984798985_2910648213503475712_n.jpg", "description_meta": "D\u00e9m\u00e9nag\u00e9 dans l&#039;\u00e9difice Piroli du\u00a0centre-ville de Victoriaville depuis maintenant 1 an, le resto-pub de la Microbrasserie l&#039;Hermite vous invite \u00e0 d\u00e9couvrir une\u00a0vaste gamme de bi\u00e8res artisanales, de Scotchs Single Malt et de Gins qu\u00e9b\u00e9cois\u00a0ainsi qu&#039;un menu vari\u00e9 mettant en valeur les produits du terroir.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/microlacompagnie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microlacompagnie.com", "logo_url": "https://microlacompagnie.com/wp-content/uploads/2021/06/Fichier-1lacie.svg", "cover_url": "https://www.microlacompagnie.com/wp-content/uploads/2021/11/sliderhome-micro-4.jpg", "description_meta": "La Compagnie est une microbrasserie situ\u00e9e \u00e0 Sept-\u00celes, o\u00f9 l&#039;on brasse des bi\u00e8res inspir\u00e9es de l&#039;h\u00e9ritage industrielle de la ville.", "site_name": "Microbrasserie Lacompagnie"}
\ No newline at end of file
added data/enrich_cache/microlaveillee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microlaveillee.com", "logo_url": "https://microlaveillee.com/wp-content/uploads/2021/10/cropped-logo-anthracite_web-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/microlecoureurdesbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microlecoureurdesbois.com", "logo_url": "https://microlecoureurdesbois.com/app/themes/la_web_shop/favicon.png", "cover_url": null, "description_meta": "Brass\u00e9es au Lac-St-Jean, nos bi\u00e8res bor\u00e9ales artisanales et nos bi\u00e8res sans alcool sont disponibles dans notre bistro, notre usine et chez nos distributeurs.", "site_name": "Microbrasserie le Coureur des bois"}
\ No newline at end of file
added data/enrich_cache/microleprospecteur.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microleprospecteur.ca", "logo_url": "https://microleprospecteur.ca/wp-content/uploads/2017/01/favicon-1.png", "cover_url": "https://microleprospecteur.ca/wp-content/uploads/2021/06/salle-manger-prospecteur-restaurant-bouffe.jpg", "description_meta": "La microbrasserie Le Prospecteur est une brasserie artisanale situ\u00e9e \u00e0 Val-d&#039;Or en Abitibi-T\u00e9miscamingue, nos bi\u00e8res sont brass\u00e9es sur place.", "site_name": "Microbrasserie Le Prospecteur"}
\ No newline at end of file
added data/enrich_cache/microlionbleu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microlionbleu.com", "logo_url": "https://cdn.prod.website-files.com/652d59ea6e9ebb96ea19a64d/65313091553e832c2013ca28_lion-favicon-256.png", "cover_url": "https://cdn.prod.website-files.com/652d59ea6e9ebb96ea19a64d/6536ac1d4cfc99ac3d29958f_lion-og-80.jpg", "description_meta": "Le Lion Bleu est bien plus qu&#x27;une microbrasserie. Nous sommes des chasseurs de saveurs pr\u00eats \u00e0 conqu\u00e9rir vos papilles avec nos bi\u00e8res artisanales et nos plats savoureux. Venez vivre une exp\u00e9rience gustative exceptionnelle.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/microorleans.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microorleans.com", "logo_url": "https://microorleans.com/wp-content/uploads/2021/02/cropped-te\u0301le\u0301chargement-1-180x180.png", "cover_url": "https://microorleans.com/wp-content/uploads/2024/04/SiteAcceuil_2024-02-1024x913.png", "description_meta": "Explore The Colourful World A Wonderful Gift Learn More &#8220;Fuerat aestu carentem habentia spectent tonitrua mutastis locavit liberioris.&#8221; &#8211; Adam Sendler Upcoming Events Everest Camp Trek Fuerat aestu carentem habentia spectent tonitrua mutastis locavit liberioris inistra possedit. Learn More Walking Holidays Fuerat aestu carentem habentia spectent tonitrua mutastis locavit liberior", "site_name": "Microbrasserie de l&#039;\u00cele d\u2019Orl\u00e9ans"}
\ No newline at end of file
added data/enrich_cache/micropoussesetcie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "micropoussesetcie.ca", "logo_url": "https://micropoussesetcie.ca/favicon.ico", "cover_url": "https://micropoussesetcie.ca/images/micro-pousses-st-fulgence-saguenay-lac-saint-jean.webp", "description_meta": "Producteur de micro-pousses \u00e0 St-Fulgence. Boostez votre sant\u00e9 avec nos vari\u00e9t\u00e9s riches en vitamines, min\u00e9raux et antioxydants. Culture locale sans produits chimiques disponible pour toute la r\u00e9gion Saguenay-Lac-Saint-Jean.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/microriverbend.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microriverbend.com", "logo_url": "https://www.microriverbend.com/images/favicon.png", "cover_url": "https://www.datocms-assets.com/5012/1537814845-1528861614791432621202633556179168724355340o.jpg", "description_meta": "Notre philosophie, allier des m\u00e9thodes brassicoles ancestrales \u00e0 un contenant contemporain et avec des ingr\u00e9dients locaux.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/microruisseaunoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microruisseaunoir.com", "logo_url": "https://microruisseaunoir.com/cdn/shop/files/logo-RN-noir-CLEANED_32x32.jpg?v=1620234411", "cover_url": "http://microruisseaunoir.com/cdn/shop/files/logo_2_1200x1200.png?v=1634228680", "description_meta": "D\u00e9couvrez l&#39;univers brassicole unique de la Microbrasserie Ruisseau Noir. Savourez nos bi\u00e8res artisanales de qualit\u00e9 sup\u00e9rieure, brass\u00e9es avec passion et cr\u00e9ativit\u00e9.", "site_name": "Microbrasserie Ruisseau Noir - Boutique"}
\ No newline at end of file
added data/enrich_cache/microsauceriepikopeppers.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microsauceriepikopeppers.com", "logo_url": "https://microsauceriepikopeppers.com/favicon.ico", "cover_url": null, "description_meta": "Sauces piquantes faits \u00e0 la main \u00e0 Montr\u00e9al", "site_name": "Microsaucerie Piko peppers"}
\ No newline at end of file
added data/enrich_cache/microstho.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microstho.com", "logo_url": "https://microstho.com/ressources/images/favicon/android-icon-192x192.png", "cover_url": "https://microstho.com/ressources/images/resultats-recherche-google.png", "description_meta": "La Microbrasserie Saint-Honor\u00e9 est un projet familial lanc\u00e9 par des passionn\u00e9s de bi\u00e8res et d", "site_name": "Microbrasserie Saint-Honor\u00e9"}
\ No newline at end of file
added data/enrich_cache/microtadoussac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microtadoussac.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": null, "description_meta": "D\u00e9couvrez la Microbrasserie Tadoussac, o\u00f9 les bi\u00e8res artisanales rencontrent des ingr\u00e9dients locaux pour une exp\u00e9rience unique en plein c\u0153ur de Tadoussac.", "site_name": "Microbrasserie Tadoussac"}
\ No newline at end of file
added data/enrich_cache/microverdure.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "microverdure.ca", "logo_url": "https://static.wixstatic.com/media/cf3fd2_4a1616be2105402087115fa698c7a091%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/cf3fd2_4a1616be2105402087115fa698c7a091%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/midi34.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "midi34.ca", "logo_url": "https://midi34.ca/wp-content/uploads/2024/05/apple-touch-icon.png", "cover_url": "https://midi34.ca/wp-content/uploads/2024/01/midi34_shareimage.png", "description_meta": "D\u00e9couvrez la boutique de bijoux minimalistes fabriqu\u00e9s \u00e0 la main. Des bijoux minimalistes exclusifs, d&#039;origine locale, con\u00e7us pour inspirer. Achetez d\u00e8s maintenant chez Midi34 !", "site_name": "Midi34"}
\ No newline at end of file
added data/enrich_cache/midigopresto.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "midigopresto.ca", "logo_url": "https://midigopresto.ca/apple-touch-icon.png", "cover_url": "https://customer-assets.emergentagent.com/job_midigo-nextgen/artifacts/k4v6z3zq_Logo%20MidiGO.jpg", "description_meta": "MidiGo Presto \u00e2\u0080\u0094 Sandwicherie, Traiteur & M\u00c3\u00a9choui \u00c3\u00a0 Victoriaville. Cuisine maison, fra\u00c3\u00aecheur et g\u00c3\u00a9n\u00c3\u00a9rosit\u00c3\u00a9 pour vos midis, \u00c3\u00a9v\u00c3\u00a9nements et grandes occasions.", "site_name": "MidiGo Presto"}
\ No newline at end of file
added data/enrich_cache/mieetcie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mieetcie.com", "logo_url": "https://mieetcie.com/cdn/shop/t/2/assets/favicon.png?v=148496663308924429921769804769", "cover_url": "http://mieetcie.com/cdn/shop/files/MC-OG.jpg?v=1769804390", "description_meta": "Mie et Cie\ud83c\udd6a, une nouvelle gamme de pains arrive au Qu\u00e9bec, \u00e9labor\u00e9e avec des ingr\u00e9dients choisis et un go\u00fbt vrai. Une nouvelle option savoureuse et r\u00e9confortante se joint aux marques \u00e9tablies comme St-M\u00e9thode pour offrir plus de choix de qualit\u00e9 aux Qu\u00e9b\u00e9cois.", "site_name": "Mie et Cie"}
\ No newline at end of file
added data/enrich_cache/mielabitemis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielabitemis.com", "logo_url": "https://mielabitemis.com/images/misc/favicon.png", "cover_url": null, "description_meta": "Site Web officiel Miel Abit&eacute;mis, entreprise originaire de l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/mielboreal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielboreal.com", "logo_url": "https://www.mielboreal.com/favicon.ico", "cover_url": "https://www.mielboreal.com/wp-content/uploads/2022/01/Logo_rond_2.5po.png", "description_meta": "D\u00e9couvrez un miel naturel du terroir bor\u00e9al dans son \u00e9tat le plus brut possible, comme si vous le d\u00e9gustiez directement dans la ruche !", "site_name": "Miel Bor\u00e9al"}
\ No newline at end of file
added data/enrich_cache/mielbrut.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielbrut.com", "logo_url": "https://mielbrut.com/cdn/shop/files/Favicon_2.png?crop=center&height=32&v=1729528483&width=32", "cover_url": "http://mielbrut.com/cdn/shop/files/Favicon_1.png?height=628&pad_color=ffffff&v=1729528755&width=1200", "description_meta": "Le miel brut du Qu\u00e9bec, directement de la ruche. Miel artisanal, baumes naturels &amp; cadeaux personnalis\u00e9s pour vos \u00e9v\u00e9nements. Petits lots limit\u00e9s \u2014 commandez d\u00e8s aujourd&#39;hui.", "site_name": "Mielbrut.com"}
\ No newline at end of file
added data/enrich_cache/mielchateaublanc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielchateaublanc.com", "logo_url": "https://mielchateaublanc.com/favicon.ico", "cover_url": null, "description_meta": "Miellerie Le Ch\u00e2teau Blanc", "site_name": "Miellerie Le Ch\u00e2teau Blanc"}
\ No newline at end of file
added data/enrich_cache/mieldelaferme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mieldelaferme.com", "logo_url": "https://www.mieldelaferme.com/uploads/b/7d8a3df0-bcc3-11ea-9681-7912c3e7d653/icon_180x180_ios_NzQ5Mz.png?width=180", "cover_url": "https://www.mieldelaferme.com/uploads/b/7d8a3df0-bcc3-11ea-9681-7912c3e7d653/119975992_168781221523758_8000541040407003259_o.jpg", "description_meta": "La Ferme apicole Levac-Joubert est fi\u00e8re d&#039;offrir une gamme de produits faits \u00e0 partir de miel pur \u00e0 100% au go\u00fbt exceptionnel.", "site_name": "Miellerie Nector"}
\ No newline at end of file
added data/enrich_cache/mieldubreuil.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mieldubreuil.com", "logo_url": "https://mieldubreuil.com/favicon.ico", "cover_url": "https://mieldubreuil.com/wp-content/uploads/2018/10/og-img.jpg", "description_meta": "Fond\u00e9 par Lucien Dubreuil en 1930, Miel Dubreuil se sp\u00e9cialise dans l\u2019apiculture, les grandes cultures, les travaux \u00e0 forfaits et le service de d\u00e9neigement.", "site_name": "Miel Dubreuil"}
\ No newline at end of file
added data/enrich_cache/mieletco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mieletco.com", "logo_url": "data:;base64,iVBORw0KGgo=", "cover_url": null, "description_meta": "Chez Miel&amp;Co. nous mettons toute notre passion et notre savoir-faire \u00e0 d\u00e9velopper, vendre et distribuer des produits d\u00e9lice et mieux-\u00eatre issus de nos ruches. Le tout en pratiquant l\u2019Apiculture synergique, la communion parfaite entre l\u2019abeille, les plantes et votre bien-\u00eatre.", "site_name": "Miel &amp; Co"}
\ No newline at end of file
added data/enrich_cache/mielgardner.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielgardner.com", "logo_url": "https://mielgardner.com/favicon.ico", "cover_url": null, "description_meta": "Miel Gardner, une entreprise apicole situ\u00e9e \u00e0 Saint-Norbert-d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/mielgrandeourse.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielgrandeourse.com", "logo_url": "https://mielgrandeourse.com/wp-content/uploads/2019/02/cropped-miellerie_profil_Dav_Fav-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mielle.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielle.ca", "logo_url": "https://mielle.ca/cdn/shop/files/Favicon.png?crop=center&height=32&v=1620670136&width=32", "cover_url": "http://mielle.ca/cdn/shop/files/logo_1.png?height=628&pad_color=ffffff&v=1616437117&width=1200", "description_meta": "Produits pour la peau naturels, huiles nettoyantes et hydratantes, cr\u00e8mes sans allerg\u00e8nes \u00e0 base d&#39;ingr\u00e9dients biologiques. Fabriqu\u00e9s au Qu\u00e9bec.", "site_name": "Mi\u00eblle Cosm\u00e9tiques Naturels"}
\ No newline at end of file
added data/enrich_cache/mielleriedelestrie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielleriedelestrie.com", "logo_url": "https://mielleriedelestrie.com/apple-icon-76x76.png", "cover_url": "https://www.mielestrie.com/index_htm_files/opengraph.jpg", "description_meta": "Miellerie de L&#39;Estrie - Plusieurs sortes de Miel sur place, ruche d&#39;observation/abeilles vivantes, mat\u00c3\u00a9riel et \u00c3\u00a9quipements apicoles, Apiculteurs sur place pour vos questions.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/miellerieking.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "miellerieking.com", "logo_url": "https://static.wixstatic.com/media/65aa6d_c3940c09e6cb43159897ee48c64b252d%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/65aa6d_c3940c09e6cb43159897ee48c64b252d%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/miellerielunedemiel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "miellerielunedemiel.com", "logo_url": "https://www.miellerielunedemiel.com/images/favicon/apple-touch-icon.png", "cover_url": "https://www.miellerielunedemiel.com/wp-content/uploads/2022/09/interpretation-abeilles-musee-edited-1-scaled.webp", "description_meta": "Producteur de miel, boutique en ligne, visites guid\u00e9es et centre d&#039;interpr\u00e9tation situ\u00e9 \u00e0 Stoke dans la r\u00e9gion de Sherbrooke Cantons-de-l\u2019Est.", "site_name": "Miellerie Lune de Miel"}
\ No newline at end of file
added data/enrich_cache/mielletedore.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielletedore.com", "logo_url": "https://www.mielletedore.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5db9a8de76ee282379681704/t/65172f921678cb2d831f7dab/1696018322428/Abeille+retravaill%C3%A9e+par+JC+pour+web.jpg?format=1500w", "description_meta": "Entreprise familiale apicole ,de Woburn et Saint-Denis-sur-Richelieu,produisant du miel pure et plusieurs produits transform\u00e9s issus de la ruche. Nous vendons aussi des reines abeilles et nuclei.", "site_name": "Miel l"}
\ No newline at end of file
added data/enrich_cache/mielnature.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielnature.com", "logo_url": "https://mielnature.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mielpicard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielpicard.com", "logo_url": "https://mielpicard.com/cdn/shop/files/miel-picard-petit-logo.jpg?crop=center&height=32&v=1650811793&width=32", "cover_url": null, "description_meta": "Go\u00fbtez \u00e0 notre miel naturel non pasteuris\u00e9 fabriqu\u00e9 avec amour au Saguenay-Lac-Saint-Jean au Qu\u00e9bec. Ce miel brut con\u00e7u artisanalement depuis 1929 saura s\u00e9duire vos papilles!", "site_name": "mielpicard"}
\ No newline at end of file
added data/enrich_cache/mielpurdelice.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielpurdelice.com", "logo_url": "https://static.wixstatic.com/media/acd012_f882e780c491437c961d945071531d83%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/acd012_f882e780c491437c961d945071531d83%7Emv2.png", "cover_url": null, "description_meta": "Chez Miel Pur D\u00e9lice: vous d\u00e9couvrirez une boutique de miel et centre d\u2019interpr\u00e9tation de l\u2019abeille. Une attraction touristique unique dans les Cantons-de-l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/miels-liaison.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "miels-liaison.ca", "logo_url": "https://miels-liaison.ca/cdn/shop/files/MielsLiaison_Symbole_RVB.png?v=1675954747&width=96", "cover_url": null, "description_meta": "Collection de miels s\u00e9lectionn\u00e9s du Qu\u00e9bec pour accompagner vos fromages I Vivez l\u2019exp\u00e9rience avec nos ensembles de d\u00e9gustation I Rayons de miel I Miels purs, naturels et non-pasteuris\u00e9s I Apiculture durable I Du rucher \u00e0 votre table", "site_name": "LIAISON"}
\ No newline at end of file
added data/enrich_cache/mielsdanicet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mielsdanicet.com", "logo_url": "https://mielsdanicet.com/img/favicon/favicon-196x196.png", "cover_url": "https://mielsdanicet.com/app/uploads/2024/09/anicet-reseaux-sociaux-0014-accueil.jpg", "description_meta": "Go\u00fbtez la nature mellif\u00e8re du jardin sauvage de Miels d&#039;Anicet. Miels 100% extraits au Qu\u00e9bec dans le respect des abeilles.", "site_name": "Miels d&#039;Anicet"}
\ No newline at end of file
added data/enrich_cache/miett.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "miett.ca", "logo_url": "https://miett.ca/favicon.ico?v=1", "cover_url": "https://cms.miett.ca/uploads/_AUTOxAUTO_crop_center-center_80_none_ns/miett_meta-image.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/millebois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "millebois.com", "logo_url": "https://static.wixstatic.com/media/d789ab_b3c692807c684cc5b35e84d1a2512334%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d789ab_b3c692807c684cc5b35e84d1a2512334%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/milleetunenoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "milleetunenoix.ca", "logo_url": "https://www.milleetunenoix.ca/cdn/shop/files/main-logo_32x32.png?v=1669759979", "cover_url": "http://www.milleetunenoix.ca/cdn/shop/files/main-logo.png?v=1669759979", "description_meta": "Mille et Une Noix cr\u00e9e avec soin et passion des beurres cr\u00e9meux et des m\u00e9langes exquis qui mettent en valeur la splendeur des meilleures noix du monde.", "site_name": "Mille et Une Noix"}
\ No newline at end of file
added data/enrich_cache/mimiandaugust.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mimiandaugust.com", "logo_url": "https://mimiandaugust.com/cdn/shop/files/mimi_august_square_logoinsta.jpg?crop=center&height=180&v=1663031366&width=180", "cover_url": "http://mimiandaugust.com/cdn/shop/files/logo2021_2_1bdc1a2a-d836-4bbb-bae6-3b8df5536ab5.jpg?crop=center&height=1200&v=1770220013&width=1200", "description_meta": "Hand-poured candles, handmade ceramics, illustrated stationery &amp; greeting cards. Eco-friendly, vegan &amp; reusable. Designed and crafted in Quebec, Canada.", "site_name": "Mimi &amp; August"}
\ No newline at end of file
added data/enrich_cache/minigrange.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "minigrange.ca", "logo_url": "https://www.minigrange.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/minitipi.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "minitipi.ca", "logo_url": "https://www.minitipi.ca/cdn/shop/files/Favicon_1.png?crop=center&height=32&v=1726234555&width=32", "cover_url": "http://www.minitipi.ca/cdn/shop/files/MINITIPI-LOGO-BLACK-Rnobackground.png?height=628&pad_color=fff&v=1707318734&width=1200", "description_meta": "MINI TIPI designs, creates and sells accesories for the home and family using Indigenous authentic designs. To learn more, visit our website www.minitipi.ca", "site_name": "MINI TIPI"}
\ No newline at end of file
added data/enrich_cache/minuitmetal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "minuitmetal.com", "logo_url": "https://static.wixstatic.com/media/9c2695_d0596688cb614a62954ea645101b7bd2%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/9c2695_d0596688cb614a62954ea645101b7bd2%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/9c2695_44c4ad19386c4066a74800acde57d860~mv2.jpg/v1/fill/w_2500,h_3750,al_c/9c2695_44c4ad19386c4066a74800acde57d860~mv2.jpg", "description_meta": "Minuit is a collection of jewelry handcrafted by Julie Williston in Montreal. Minuit uses precious metals to catch light onto imaginative organic shapes, via small series production and one of a kind art jewelry pieces.", "site_name": "Minuit Metal"}
\ No newline at end of file
added data/enrich_cache/mirabuches.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mirabuches.com", "logo_url": "https://static.wixstatic.com/media/e3cf99_30913b9452894d378d82d99fdfb2b4c9%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/e3cf99_30913b9452894d378d82d99fdfb2b4c9%7Emv2.png", "cover_url": null, "description_meta": "Mirab\u00fbches manufacture des b\u00fbches \u00e9cologiques et des granules de chauffage faites de bois compress\u00e9, 100% naturel et sans additif. Nous distribuons \u00e9galement plusieurs autres produits de chauffage, tel que des b\u00fbches traditionnelles, du bois d", "site_name": "Mirabuches"}
\ No newline at end of file
added data/enrich_cache/mirakydesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mirakydesign.com", "logo_url": "https://www.mirakydesign.com/cdn/shop/files/favicon.b_32x32.jpg?v=1644505642", "cover_url": "http://www.mirakydesign.com/cdn/shop/files/1e-page_copy_170d3d91-e4c6-4836-9084-dd0483f3bb18_1200x1200.jpg?v=1616613625", "description_meta": "Instruments d&#39;\u00e9criture fait \u00e0 la main. Stylo, stylet, crayon, plume, encre, cadeaux corporatifs. Fait \u00e0 la main \u00e0 Montr\u00e9al.", "site_name": "Miraky Design"}
\ No newline at end of file
added data/enrich_cache/mishkafab.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mishkafab.ca", "logo_url": "https://mishkafab.ca/wp-content/uploads/2024/07/cropped-Verres-pleins_SA-180x180.png", "cover_url": "https://mishkafab.ca/wp-content/uploads/2025/03/DSC_8565.jpg", "description_meta": "D\u00e9couvrez Mishka, une entreprise qu\u00e9b\u00e9coise qui cr\u00e9e des fruits \u00e0 boire croquants : l&#039;ajout id\u00e9al pour des cocktails ou des breuvages uniques!", "site_name": "Mishka - Fruits \u00e0 boire"}
\ No newline at end of file
added data/enrich_cache/missiska.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "missiska.com", "logo_url": "https://missiska.com/sites/default/files/favicon_missiska_0.png", "cover_url": null, "description_meta": "Fabriqu\u00e9s avec \u00ab la cr\u00e8me du lait \u00bb, sans agents de conservation ajout\u00e9s, nos fromages jerseys fondent dans la bouche. Vous succomberez \u00e0 leurs ar\u00f4mes et \u00e0 leur texture! D\u00e9couvrez aussi nos autres produits : un lait non homog\u00e9n\u00e9is\u00e9 et des yogourts.", "site_name": "Bienvenue chez Missiska, la cr\u00e8me du lait"}
\ No newline at end of file
added data/enrich_cache/missmarmelades.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "missmarmelades.com", "logo_url": "https://www.missmarmelades.com/wp-content/themes/miss-marmelade/images/favicon//android-icon-192x192.png", "cover_url": null, "description_meta": "G\u00e2tez-vous avec nos produits du terroir et r\u00e9gionaux gourmands. Une boutique de produits du terroir locale qu\u00e9b\u00e9coise. Livraison rapide.", "site_name": "Miss Marmelades"}
\ No newline at end of file
added data/enrich_cache/missmarmite.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "missmarmite.com", "logo_url": "https://missmarmite.com/cdn/shop/files/marmite_-_loader_-_square.gif?crop=center&height=32&v=1668261121&width=32", "cover_url": "http://missmarmite.com/cdn/shop/files/missmarmite_-_preview_shared.jpg?v=1709825548", "description_meta": "Parfumerie botanique et rituels olfactifs \u00e0 base de plantes du Qu\u00e9bec cueillies \u00e0 la main. Cr\u00e9ations sensibles, ancestrales et vivantes.", "site_name": "Miss Marmite - Herboristerie et Aromath\u00e9rapie"}
\ No newline at end of file
added data/enrich_cache/mjb.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mjb.ca", "logo_url": "https://static.wixstatic.com/media/78dfcb_98871d391fb94bfcbe48b11b6397070a%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/78dfcb_98871d391fb94bfcbe48b11b6397070a%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mlatelierdecouture.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mlatelierdecouture.com", "logo_url": "https://mlatelierdecouture.com/boutique/image/catalog/Siganture-Finale.jpg", "cover_url": null, "description_meta": "Mgarno par M l\u2019atelier de couture cr\u00e9e des v\u00eatements et des accessoires textiles, o\u00f9 esth\u00e9tisme et originalit\u00e9 se marient avec qualit\u00e9, confort et durabilit\u00e9. Fi\u00e8rement con\u00e7us et fabriqu\u00e9s au Qu\u00e9bec, les articles sont produits \u00e0 partir de tissus revaloris\u00e9s, recycl\u00e9s ou \u00e9cologiques, le tout dans le respect de l\u2019environnement, de la communaut\u00e9 et des clients.", "site_name": "M Garno par M l"}
\ No newline at end of file
added data/enrich_cache/mllecafe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mllecafe.com", "logo_url": "https://mllecafe.com/favicon.ico", "cover_url": "https://mllecafe.com/wp-content/uploads/2022/11/BrulerieMlleCafe-Logo-1.png", "description_meta": "Br\u00fblerie Mlle Caf\u00e9, torr\u00e9facteur \u00e0 Montr\u00e9al, offre des m\u00e9langes uniques de caf\u00e9 fra\u00eechement torr\u00e9fi\u00e9. D\u00e9couvrez une exp\u00e9rience caf\u00e9 unique et m\u00e9morable.", "site_name": "Br\u00fblerie Mlle Caf\u00e9"}
\ No newline at end of file
added data/enrich_cache/mmelovary.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mmelovary.com", "logo_url": "https://mmelovary.com/cdn/shop/files/MO_LogoTache_22_1_cc396c42-0bb0-4e97-aa33-df2b7091a895_32x32.png?v=1668092693", "cover_url": "http://mmelovary.com/cdn/shop/files/claudine-shorty_reveal-dos2.jpg?v=1699910741", "description_meta": "Adieu tampons et serviettes! Mme L&#39;Ovary est une entreprise \u00e9thique d&#39;ici qui offre des culottes menstruelles con\u00e7ues pour vivre le meilleur de votre cycle.", "site_name": "Mme L&#39;Ovary"}
\ No newline at end of file
added data/enrich_cache/mobilierurbain.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mobilierurbain.ca", "logo_url": "https://mobilierurbain.ca/wp-content/uploads/2026/05/icone-1.png", "cover_url": "https://mobilierurbain.ca/wp-content/uploads/2023/07/AgencesdelEst-PJ-3214PJ-7215-min-scaled-e1690385327772.jpeg", "description_meta": "Fi\u00e8rement fait au Qu\u00e9bec. Les Agences de l\u2019Est P.J. fabrique du mobilier urbain sur mesure correspondant \u00e0 vos exigences et vos id\u00e9es. Une \u00e9quipe qualifi\u00e9e.", "site_name": "Les Agences de L&#039;Est - 30 ans de mobilier urbain sur mesure. Bas\u00e9e \u00e0 Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/modechoc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "modechoc.ca", "logo_url": "https://www.modechoc.ca/cdn/shop/files/favicon.png?crop=center&height=32&v=1771021534&width=32", "cover_url": "http://www.modechoc.ca/cdn/shop/files/0R1A8310rs3.jpg?v=1771169493", "description_meta": "Boutique de v\u00eatements et d\u00e9coration pour habiller votre quotidien de mani\u00e8re abordable. V\u00eatements pour femmes, hommes, enfants, ados et b\u00e9b\u00e9s. D\u00e9coration et literie tendance. Marques exclusives seulement disponible chez Mode Choc.", "site_name": "Mode Choc"}
\ No newline at end of file
added data/enrich_cache/moidabord.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moidabord.ca", "logo_url": "https://moidabord.ca/cdn/shop/files/icone_fleurpleine_nom__framboise_blush_large_5cc6dea2-cc34-412e-bc81-9329509cc8e3.png?crop=center&height=32&v=1694667852&width=32", "cover_url": "http://moidabord.ca/cdn/shop/files/banniere_web_-_fete_des_meres_3_b871bb69-5e5b-460c-9f16-cb44d9cfdcd4.jpg?v=1761247111", "description_meta": "Moi d\u2019abord est une entreprise qu\u00e9b\u00e9coise ax\u00e9e sur le bien-\u00eatre, le cocooning et l\u2019art de prendre soin de soi, un moment doux \u00e0 la fois \ud83e\udd0d Que ce soit nos bougies de soja, nos produits pour le bain, nos tasses, nos pyjamas ou nos matchas, chaque produit que nous cr\u00e9ons est pens\u00e9 pour inspirer un mode de vie doux.", "site_name": "Moi d&#39;abord"}
\ No newline at end of file
added data/enrich_cache/moissondor.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moissondor.ca", "logo_url": "https://moissondor.ca/wp-content/uploads/2019/10/favicon.png", "cover_url": "https://moissondor.ca/wp-content/uploads/2019/11/Moisson_dor.jpg", "description_meta": "Chez Moisson d&#039;or, il n\u2019est qu\u2019un seul pain possible: le bon, le vrai, l\u2019authentique, celui qui est confectionn\u00e9 \u00e0 l\u2019ancienne, selon les r\u00e8gles.", "site_name": "Moisson d&#039;or"}
\ No newline at end of file
added data/enrich_cache/moissonslsj.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moissonslsj.org", "logo_url": "https://moissonslsj.org/wp-content/uploads/2023/06/MSLSJ_Sigle_Bleu04.png", "cover_url": null, "description_meta": null, "site_name": "Moisson SLSJ"}
\ No newline at end of file
added data/enrich_cache/mokatoutoumusical.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mokatoutoumusical.ca", "logo_url": "https://mokatoutoumusical.ca/cdn/shop/files/apple-icon-180x180_32x32.png?v=1613561860", "cover_url": "http://mokatoutoumusical.ca/cdn/shop/files/photo_carres_Jessica_Samyn_-_2_1200x1200.jpg?v=1646687100", "description_meta": "Toutou musical fait \u00e0 partir de vrais instruments de musique classique! Laissez-vous bercer par la douce m\u00e9lodie du violon, violoncelle et du piano! Compositions originales, \u00e9crites, interpr\u00e9t\u00e9es et enregistr\u00e9es \u00e0 Montr\u00e9al. Certification ASTM F963", "site_name": "mokatoutoumusical"}
\ No newline at end of file
added data/enrich_cache/mollenhauer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mollenhauer.com", "logo_url": "https://www.mollenhauer.com/android-icon-192x192.png", "cover_url": null, "description_meta": "Hersteller von Blockfl\u00f6ten in einer gro\u00dfen Auswahl f\u00fcr verschiedene Musikepochen und Designs. Von Garklein- bis Gro\u00dfbassblockfl\u00f6ten und der Elody-Blockfl\u00f6te", "site_name": null}
\ No newline at end of file
added data/enrich_cache/momentomrefugesnature.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "momentomrefugesnature.com", "logo_url": "https://momentomrefugesnature.com/wp-content/uploads/2021/07/cropped-MOM-tente-_noir-e1626205828408-180x180.png", "cover_url": "https://momentomrefugesnature.com/wp-content/uploads/2024/06/MomentomRefugesNature.jpg", "description_meta": "Moment\u00f4m Refuges Nature: h\u00e9bergements de glamping dans Charlevoix. De fabuleux mini-chalets pour deux personnes avec spa priv\u00e9!", "site_name": "Moment\u00f4m Refuges Nature"}
\ No newline at end of file
added data/enrich_cache/momentspa.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "momentspa.ca", "logo_url": "https://momentspa.ca/wp-content/themes/amerispa-momentspa-child/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mon-hypotheque.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mon-hypotheque.ca", "logo_url": "https://mon-hypotheque.ca/favicon.ico", "cover_url": null, "description_meta": "Mon hypoth\u00e8que est un courtier en pr\u00eats hypoth\u00e9caires proposant les meilleurs taux et conditions hypoth\u00e9caires, Courtier hypoth\u00e9caire \u00e0 Beauharnois", "site_name": "Courtier hypoth\u00e9caire, Mon-hypotheque.ca"}
\ No newline at end of file
added data/enrich_cache/mon-microsite.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mon-microsite.com", "logo_url": "https://mon-microsite.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mon-resto.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mon-resto.ca", "logo_url": "https://mon-resto.ca/wp-content/uploads/2018/10/cropped-favicon-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/monadressecivique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monadressecivique.com", "logo_url": "https://monadressecivique.com/favicon.ico", "cover_url": "http://monadressecivique.com/cdn/shop/files/MAC-ETE-2021--057.jpg?v=1762886244", "description_meta": "Mon Adresse Civique con\u00e7oit et fabrique au Qu\u00e9bec des num\u00e9ros de porte, bo\u00eetes aux lettres, adresses lumineuses et signal\u00e9tique int\u00e9rieure. Alliant design, qualit\u00e9 et simplicit\u00e9, nos produits rehaussent le style des maisons et b\u00e2timents tout en rendant chaque adresse unique.", "site_name": "Mon Adresse Civique"}
\ No newline at end of file
added data/enrich_cache/monasteredebethleem.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monasteredebethleem.ca", "logo_url": "https://monasteredebethleem.ca/boutique/image/catalog/favicon-boutique.png", "cover_url": null, "description_meta": "Poterie / Vaisselle", "site_name": "Magasin du Monast\u00e8re de Bethl\u00e9em"}
\ No newline at end of file
added data/enrich_cache/monasterevmc.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monasterevmc.org", "logo_url": "https://www.monasterevmc.org/cdn/shop/files/Logo_BLACK_transparent_32x32.png?v=1688239555", "cover_url": "http://www.monasterevmc.org/cdn/shop/files/logo_burgundy.png?v=1688412734", "description_meta": "Visit the Greek Orthodox Monastery of the Virgin Mary the Consolatory in Lachute, Quebec. Open daily for prayer, reflection, and guided tours.", "site_name": "monasterevmc.org"}
\ No newline at end of file
added data/enrich_cache/moncharlevoix.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moncharlevoix.net", "logo_url": "https://moncharlevoix.net/icons/apple-touch-icon.png", "cover_url": "https://moncharlevoix.net/assets/meta/_1200x630_crop_center-center_none_ns/MON-CHARLEVOIX-1200x630-metadone.jpg", "description_meta": "Charlevoix par ses gens, ses entreprises, sa beaut\u00e9. Le reflet d&#039;une collectivit\u00e9.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/mondou.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mondou.com", "logo_url": "https://www.mondou.com/on/demandware.static/Sites-Mondou_CA-Site/-/default/dwb01ed32c/images/favicons/favicon-192x192.png", "cover_url": "https://www.mondou.com/on/demandware.static/Sites-Mondou_CA-Site/-/default/dw324e3b40/images/favicons/favicon-192x192.png", "description_meta": "Les meilleurs produits pour animaux : nourriture pour chat et chien, jouets, g&acirc;teries, arbres &agrave; chat, cages, laisses, liti&egrave;res et plus!", "site_name": "Mondou"}
\ No newline at end of file
added data/enrich_cache/monhomard.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monhomard.ca", "logo_url": "https://monhomard.ca/wp-content/uploads/2020/04/fav_homard.png", "cover_url": null, "description_meta": "D\u00e9couvrez le savoureux homard gasp\u00e9sien du RPPSG, dont la p\u00eacherie est certifi\u00e9e durable et bien g\u00e9r\u00e9e par le Marine Stewardship Council (MSC).", "site_name": "Homard de la Gasp\u00e9sie - origine garantie !"}
\ No newline at end of file
added data/enrich_cache/monicia.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monicia.ca", "logo_url": "https://monicia.ca/wp-content/uploads/2025/01/cropped-favicon-4-180x180.png", "cover_url": "https://monicia.ca/wp-content/uploads/2025/02/Groupe-55.png", "description_meta": "Ic\u00efa, la solution num\u00e9rique intelligente pens\u00e9e pour rendre les entreprises locales plus visibles et accessibles.", "site_name": "ic\u00efa"}
\ No newline at end of file
added data/enrich_cache/monokiini.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monokiini.com", "logo_url": "https://monokiini.com/cdn/shop/files/Creation_sans_titre_1_27fa73f3-10d4-41da-95c7-2bca07035ea2.png?v=1773762014&width=180", "cover_url": "http://monokiini.com/cdn/shop/files/Creation_sans_titre_008b5d2f-0227-44dc-a64b-a4e335c05222.png?v=1773761947&width=2048", "description_meta": "MONOKIINI is a Montreal-based brand of handcrafted ceramics. Each piece is carefully designed to combine aesthetics and functionality, reflecting a passion for local and sustainable craftsmanship.", "site_name": "MONOKIINI"}
\ No newline at end of file
added data/enrich_cache/monpanierbio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monpanierbio.com", "logo_url": "https://www.monpanierbio.com/favicon.ico", "cover_url": null, "description_meta": "Fruits et l\u00e9gumes biologiques cultiv\u00e9s avec soin dans Lanaudi\u00e8re. Livr\u00e9s chez vous, sans contrat, 100% personnalisables.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/monparcours.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monparcours.ca", "logo_url": "https://monparcours.ca/apple-touch-icon.png", "cover_url": "https://monparcours.ca/og-image.jpg", "description_meta": "OBNL \u00c3\u00a0 Victoriaville aidant les personnes handicap\u00c3\u00a9es (d\u00c3\u00a9ficience physique, intellectuelle, TSA) \u00c3\u00a0 d\u00c3\u00a9velopper leur autonomie par le travail adapt\u00c3\u00a9 et l", "site_name": "Parcours"}
\ No newline at end of file
added data/enrich_cache/monporcbio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monporcbio.com", "logo_url": "https://monporcbio.com/favicon.ico", "cover_url": "https://monporcbio.com/wp-content/uploads/2023/11/logo_rose-01-1.png", "description_meta": "Notre entreprise de Porc bio en agriculture biologique est d\u00e9di\u00e9e \u00e0 l&#039;\u00e9levage de porcs \u00e9lev\u00e9s de mani\u00e8re responsable.", "site_name": "Ferme Villoise"}
\ No newline at end of file
added data/enrich_cache/monsieur-cocktail.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monsieur-cocktail.com", "logo_url": "https://cdn.prod.website-files.com/693c2a53c9383138f73db1f4/69444413a8c9e6a25fe146cc_Webclip.png", "cover_url": "https://cdn.prod.website-files.com/693c2a53c9383138f73db1f4/695bd1bfce139f78afc5547b_LCBO-lifestyle-tasting.webp", "description_meta": "The best syrups and mixes for home and pro bartenders. 100% natural, small batches and lovingly handcrafted in Canada.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/monsieurchalets.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monsieurchalets.com", "logo_url": "https://www.monsieurchalets.com/favicon.png", "cover_url": "https://www.monsieurchalets.com/images/home-hero.jpg", "description_meta": "Location de chalets au Qu\u00e9bec \u2014 s\u00e9lection inspect\u00e9e \u00e0 la main dans 17 r\u00e9gions. Charlevoix, Laurentides, Mauricie et plus. 4.8/5 \u00b7 +600 000 voyageurs accueillis. R\u00e9servez en ligne.", "site_name": "monsieurchalets.com"}
\ No newline at end of file
added data/enrich_cache/monsieurerable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monsieurerable.com", "logo_url": "https://monsieurerable.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/monsieurlimonade.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monsieurlimonade.com", "logo_url": "https://sp-ao.shortpixel.ai/client/to_webp,q_glossy,ret_img,w_180,h_180/https://monsieurlimonade.com/wp-content/uploads/2020/03/Untitled-design.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/monsieursable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monsieursable.com", "logo_url": "https://monsieursable.com/favicon.ico", "cover_url": "http://localhost:3000/opengraph-image?2a916e528ee218b0", "description_meta": "Bienvenue sur la page d&#x27;accueil du site web radioactif, Monsieur Sabl\u00e9!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/mont-cafe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mont-cafe.com", "logo_url": "https://mont-cafe.com/favicon.ico", "cover_url": null, "description_meta": "Br\u00fblerie et comptoir \u00e0 caf\u00e9 - Cap-au-Renard - Qu\u00e9bec.", "site_name": "Mont-Caf\u00e9 | Br\u00fblerie &amp; cafeti\u00e8re"}
\ No newline at end of file
added data/enrich_cache/mont-echo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mont-echo.com", "logo_url": "https://mont-echo.com/cdn/shop/files/Favicon_Mont_Echo_32x32.png?v=1677776044", "cover_url": "https://cdn.shopify.com/s/files/1/0280/4917/8733/files/trousse_soleil_photo_2.jpg?v=1745337884", "description_meta": "100% Canadian Sea Buckthorn natural skincare and beauty products of Canadian origin manufactured according to the highest standards in efficacy with respect for environmental best practices and sustainability.", "site_name": "Mont-Echo"}
\ No newline at end of file
added data/enrich_cache/montadstock.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montadstock.ca", "logo_url": "https://montadstock.ca/wp-content/uploads/2023/11/cropped-A-montagne-1-180x180.png", "cover_url": "https://montadstock.ca/wp-content/uploads/2024/01/arrow-down.svg", "description_meta": "Explorez notre montagne pr\u00c3\u00a9f\u00c3\u00a9r\u00c3\u00a9 pour pratiquer le ski, la planche \u00c3\u00a0 neige, le v\u00c3\u00a9lo de montagne, le golf, la randonn\u00c3\u00a9e alpine et plusieurs autres sports dans une r\u00c3\u00a9gion riche en paysages et bons vivants.", "site_name": "Mont Adstock"}
\ No newline at end of file
added data/enrich_cache/montbec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montbec.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5e7e390c9327941b943c17a0/1585594809447-R70F67KX5AC9Z9ZXA3E8/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5e7e390c9327941b943c17a0/t/5e82420875646950dadf1b22/1585594891510/Logo+Mont-Bec+-+nouveau+-+AI+partage+-01.png?format=1500w", "description_meta": null, "site_name": "Les Confiseries Montbec"}
\ No newline at end of file
added data/enrich_cache/montbois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montbois.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/60833ca378d9475b9e405a95/f48e25bc-b6b0-4a02-8d18-5367fa0500b5/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/60833ca378d9475b9e405a95/t/622c062a190f55635ef1a67b/1647052338714/MontBois_Banniere_v02_20211121_ld-01.png?format=1500w", "description_meta": "Une diversit\u00e9 de produits d", "site_name": "Mont Bois \ud83c\udf42"}
\ No newline at end of file
added data/enrich_cache/montcafebistro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montcafebistro.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Mont Caf\u00e9 Bistro, le nouvel incontournable de Saint-Sim\u00e9on ! Les meilleurs caf\u00e9s sp\u00e9cialis\u00e9s servis avec le plus grand des sourires !\nD\u00e9gustez notre menu \u00e9volutif frais et convivial, en famille ou entre amis. Sirotez une bi\u00e8re en regardant le fleuve Saint-Laurent.\nMont Caf\u00e9 Bistro est le p\u2019tit plus que vous recherchez !", "site_name": "Montcafebistro"}
\ No newline at end of file
added data/enrich_cache/montellier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montellier.ca", "logo_url": "https://montellier.ca/wp-content/themes/imedia/dist/img/favicon/apple-touch-icon.png", "cover_url": "https://montellier.ca/wp-content/uploads/2026/05/og-img.jpg", "description_meta": "D\u00e9couvrez Montellier, une eau p\u00e9tillante naturelle 100% qu\u00e9b\u00e9coise aux saveurs rafra\u00eechissantes, parfaite seule ou en mocktail.", "site_name": "Montellier"}
\ No newline at end of file
added data/enrich_cache/montgrandfonds.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montgrandfonds.com", "logo_url": "https://montgrandfonds.com/media/image/montgrandfondsb2c/cms/media/logo/Symbole_MGF_black.png", "cover_url": null, "description_meta": "Station de ski dans la r&eacute;gion de Charlevoix, le Mont Grand Fonds est une station de ski id&eacute;ale pour vos activit&eacute;s hivernales &amp; estivales.", "site_name": "Forfaits de ski - Vente en Ligne Officielle - Achat Rechargement"}
\ No newline at end of file
added data/enrich_cache/montpak.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montpak.ca", "logo_url": "https://www.montpak.ca/app/uploads/2025/06/favicon-aures.svg", "cover_url": "https://www.montpak.ca/app/uploads/2026/02/og-image-montpak.jpg", "description_meta": "Expert en transformation de viande du Canada, Montpak International offre des produits de veau, b\u0153uf et agneau de qualit\u00e9 sup\u00e9rieure pour le d\u00e9tail et l&#039;export.", "site_name": "Montpak International"}
\ No newline at end of file
added data/enrich_cache/montrealenhistoires.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montrealenhistoires.com", "logo_url": "https://www.montrealenhistoires.com/wp-content/uploads/2017/04/sousMenuMaison.png", "cover_url": null, "description_meta": "Application mobile Parcours techno-historiques D\u00e9couvrez Cit\u00e9 M\u00e9moire Jouer avec l&#039;histoire Joignez-vous \u00e0 une visite guid\u00e9e Zone scolaire R\u00e9alit\u00e9 Virtuelle", "site_name": "Montr\u00e9al en Histoires"}
\ No newline at end of file
added data/enrich_cache/montsetmarees.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "montsetmarees.com", "logo_url": "https://montsetmarees.com/wp-content/uploads/2025/07/NEW-FAVICON-1-300x300.png", "cover_url": "https://montsetmarees.com/wp-content/uploads/2025/05/LOGO-NOIR-ET-BLANC.webp", "description_meta": "Centre \u00c3\u00a9questre \u00c3\u00a0 Charlevoix : cours d\u00e2\u0080\u0099\u00c3\u00a9quitation, randonn\u00c3\u00a9es, pension pour chevaux, entra\u00c3\u00aenement et activit\u00c3\u00a9s \u00c3\u00a9questres pour tous les \u00c3\u00a2ges.", "site_name": "Les \u00c3\u0089curies Entre Monts et Mar\u00c3\u00a9es"}
\ No newline at end of file
added data/enrich_cache/monturesfanieleyewear.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "monturesfanieleyewear.com", "logo_url": "https://monturesfanieleyewear.com/favicon.ico", "cover_url": "https://monturesfanieleyewear.com/wp-content/uploads/2025/04/3-2.jpg", "description_meta": "D\u00e9couvrez Faniel Eyewear : des montures artisanales et uniques, fabriqu\u00e9es au Qu\u00e9bec \u00e0 partir de mat\u00e9riaux recycl\u00e9s.", "site_name": "Lunettes - Montures Faniel | Faniel Eyewear"}
\ No newline at end of file
added data/enrich_cache/moodgie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moodgie.ca", "logo_url": "https://moodgie.ca/favicon.ico", "cover_url": "https://moodgie.ca/cdn/shop/files/Moodgie_social.png?v=1717700530", "description_meta": "We are a Montreal company specializing in the manufacture of natural soy candles, made only from caring ingredients.Founded to promote the importance of indi...", "site_name": "Moodgie"}
\ No newline at end of file
added data/enrich_cache/moozco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moozco.ca", "logo_url": "https://moozco.ca/cdn/shop/files/favicon_db026656-2d9e-4905-b304-ba71bce90a7a_32x32.png?v=1771616946", "cover_url": null, "description_meta": "Shop MOOZ aluminum-free natural deodorant. Science-backed, probiotic-enhanced, and up to 72h effective. Professional body odor management made in Canada.", "site_name": "MOOZ"}
\ No newline at end of file
added data/enrich_cache/morehousefoods.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "morehousefoods.ca", "logo_url": "https://morehousefoods.ca/wp-content/uploads/2024/04/cropped-faviron-1-180x180.png", "cover_url": "https://morehousefoods.ca/wp-content/uploads/2024/08/photo-accueil-1.jpg", "description_meta": "With a rich heritage spread over decades, we have earned a reputation for manufacturing condiments that will spice up your business", "site_name": "Morehouse Foods"}
\ No newline at end of file
added data/enrich_cache/morellimobilierurbain.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "morellimobilierurbain.com", "logo_url": "https://morellimobilierurbain.com/wp-content/uploads/2022/06/cropped-Plan-de-travail-1-180x180.png", "cover_url": null, "description_meta": "Concepteur et fabricant de mobilier INNOVANT ET UNIQUE \u00e0 Montr\u00e9al pour valoriser les am\u00e9nagements urbains et commerciaux empreints d&#039;\u00e9motion!", "site_name": "Morelli mobilier urbain"}
\ No newline at end of file
added data/enrich_cache/morinipasta.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "morinipasta.com", "logo_url": "https://morinipasta.com/favicon.ico", "cover_url": "https://morinipasta.com/wp-content/uploads/2025/11/logo.png", "description_meta": "D\u00e9couvrez Morini Pasta : p\u00e2tes fra\u00eeches artisanales, raviolis faits \u00e0 la main, sauces maison et mets pr\u00e9par\u00e9s simples et savoureux. Entr\u00e9es, soupes, pizzas gourmets et produits compl\u00e9mentaires. Qualit\u00e9, fra\u00eecheur et savoir-faire.", "site_name": "Morini Pasta - Fabrique de p\u00e2tes fraiches"}
\ No newline at end of file
added data/enrich_cache/mostimondiale.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mostimondiale.com", "logo_url": "https://mostimondiale.com/wp-content/uploads/2019/02/logos-mosti-solid-k.jpg", "cover_url": null, "description_meta": "We are committed to creating premium winemaking kits made with the highest quality grape musts and inspired by our timeless winemaking tradition.", "site_name": "Mosti Mondiale"}
\ No newline at end of file
added data/enrich_cache/motel-lagentilhommiere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "motel-lagentilhommiere.com", "logo_url": "https://static.wixstatic.com/media/7a788b_dcefe5ae78ff4dc585d7fb16aabcfde2%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7a788b_dcefe5ae78ff4dc585d7fb16aabcfde2%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/motelboutiquehygge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "motelboutiquehygge.com", "logo_url": "https://cdn.prod.website-files.com/67b76056af4e4c3342b93f4a/6800f4a2a9e308d216fa2208_motel-256.ico", "cover_url": "https://cdn.prod.website-files.com/67b76056af4e4c3342b93f4a/681357dca43c63384ac9823f_Motel-Sharing.avif", "description_meta": "R\u00e9servez une chambre au Motel-Boutique Hygge, votre h\u00e9bergement \u00e0 Charlevoix.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/moteldescascades.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moteldescascades.com", "logo_url": "https://static.wixstatic.com/media/b9815e_e135a47efc6b4a51b0bdde25fb7c449a%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/b9815e_e135a47efc6b4a51b0bdde25fb7c449a%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/motelfraser.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "motelfraser.com", "logo_url": "https://motelfraser.com/favicon.ico", "cover_url": null, "description_meta": "Situ\u00e9 \u00e0 Chandler, en Gasp\u00e9sie, le Motel Fraser vous offre 30 unit\u00e9s d\u2019h\u00e9bergement alliant espace et confort, et le d\u00e9licieux restaurant Le Sieur de Pabos.", "site_name": "Motel Fraser"}
\ No newline at end of file
added data/enrich_cache/motelpointdevue.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "motelpointdevue.com", "logo_url": "https://www.motelpointdevue.com/wp-content/uploads/2024/06/cropped-favicon-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/moulin-charlevoix.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moulin-charlevoix.net", "logo_url": "https://www.moulin-charlevoix.net/favicon.ico", "cover_url": null, "description_meta": "Moulin de Charlevoix produit des farines de haute qualit\u00e9 au moyen de meules de pierre de silex. Nos produits valorisent toute la fili\u00e8re du pain au Qu\u00e9bec.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/moulin7.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moulin7.com", "logo_url": "https://moulin7.com/wp-content/uploads/2022/11/Moulin7-Logo-chariot-noir.svg", "cover_url": null, "description_meta": "Bi\u00e8res et boutique Restaurant et pub", "site_name": "Microbrasserie Moulin 7"}
\ No newline at end of file
added data/enrich_cache/moulindescedres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moulindescedres.com", "logo_url": "https://static.wixstatic.com/ficons/e15fca_cceb13969d34aeebc850dda75baf63b0_fi.ico", "cover_url": null, "description_meta": null, "site_name": "Moulin des C\u00e8dres"}
\ No newline at end of file
added data/enrich_cache/moulinmichel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moulinmichel.com", "logo_url": "https://moulinmichel.com/app/themes/Acolyte/src/img/favicon/apple-touch-icon.png", "cover_url": "https://moulinmichel.com/app/uploads/2023/05/accueil_01.jpg", "description_meta": "Le Moulin Michel de Gentilly, situ\u00e9 \u00e0 B\u00e9cancour, vous propose une panoplie d", "site_name": "Moulin Michel de Gentilly"}
\ No newline at end of file
added data/enrich_cache/moulinsdesoulanges.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moulinsdesoulanges.com", "logo_url": "https://moulinsdesoulanges.com/wp-content/uploads/2019/02/map.png", "cover_url": null, "description_meta": null, "site_name": "Les Moulins De Soulanges"}
\ No newline at end of file
added data/enrich_cache/moulinstgeorgesmills.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moulinstgeorgesmills.com", "logo_url": "http://www.moulinstgeorgesmills.com/favicon.ico", "cover_url": "http://www.moulinstgeorgesmills.com/wp-content/uploads/2015/08/null.png", "description_meta": "Moulin St-Georges Mills is a family owned &amp; operated Quebec corn mill selling Canada made top quality custom dry milled cornmeal, corn flour &amp; grits.", "site_name": "moulinstgeorgesmills.com"}
\ No newline at end of file
added data/enrich_cache/mounttrail.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mounttrail.com", "logo_url": "https://mounttrail.com/cdn/shop/files/Logo_-_google_admin_32x32.png?v=1613753972", "cover_url": "http://mounttrail.com/cdn/shop/files/Test_10_1200x630.jpg?v=1613735387", "description_meta": "Mount Trail offre de l&#39;\u00e9quipement de plein air et de randonn\u00e9e ultral\u00e9ger, \u00e9coresponsable et produit localement: Dyneema Composite Fabric / Cuben Fiber tente, tarps, sac \u00e0 dos, sacs de couchage, v\u00eatements en laine de m\u00e9rinos, imperm\u00e9ables, \u00e9quipements de pluie, sacs de rangement, voyage, kayak, escalade et p\u00eache.", "site_name": "Mount Trail"}
\ No newline at end of file
added data/enrich_cache/moussecafe.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moussecafe.ca", "logo_url": "https://moussecafe.ca/cdn/shop/files/MousseCafe_normal-fi2125029x272.png?crop=center&height=32&v=1721159354&width=32", "cover_url": null, "description_meta": "Bienvenue au Mousse Caf\u00e9, coop\u00e9rative de solidarit\u00e9 \u00e0 Baie-Saint-Paul dans Charlevoix! Nous souhaitons vous offrir une gamme de produits qu\u00e9b\u00e9cois qui encouragent l\u2019\u00e9conomie locale, en plus de permettre aux gens de cr\u00e9er des liens dans un espace convivial et agr\u00e9able.", "site_name": "Mousse Caf\u00e9 coop de solidarit\u00e9"}
\ No newline at end of file
added data/enrich_cache/moutonnoirresto.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moutonnoirresto.com", "logo_url": "https://static.wixstatic.com/media/129b73_54ac76e1de01444db0ad5b50cbf95de1%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/129b73_54ac76e1de01444db0ad5b50cbf95de1%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/129b73_54ac76e1de01444db0ad5b50cbf95de1%7Emv2.png/v1/fit/w_2500,h_1330,al_c/129b73_54ac76e1de01444db0ad5b50cbf95de1%7Emv2.png", "description_meta": "Depuis 1976 - Cuisine du terroir de Charlevoix servie dans un bistro rustique et chaleureux, avec une magnifique terrasse en bordure de rivi\u00e8re.", "site_name": "mouton-noir-resto"}
\ No newline at end of file
added data/enrich_cache/mouvementmalte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mouvementmalte.com", "logo_url": "https://mouvementmalte.com/cdn/shop/files/Malte_logo_vert_favicon_b87e9d49-d2a1-4334-9a08-c06445281f2b.png?crop=center&height=32&v=1626983719&width=32", "cover_url": "http://mouvementmalte.com/cdn/shop/files/seo-social-sharing-mouvement-malte_1.png?v=1756404824", "description_meta": "Connais-tu les bienfaits de la bi\u00e8re pour tes cheveux et ton corps? Nous les avons recr\u00e9\u00e9 SANS l&#39;odeur avec du malte recycl\u00e9! D\u00e9couvre une gamme de produits naturels issus de l&#39;\u00e9conomie circulaire.", "site_name": "Mouvement Malt\u00e9"}
\ No newline at end of file
added data/enrich_cache/moxmocktail.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "moxmocktail.com", "logo_url": "https://moxmocktail.com/cdn/shop/files/favicon_1112ec80-bade-4590-bbbc-4f921b85337b_32x32.png?v=1686924972", "cover_url": "http://moxmocktail.com/cdn/shop/files/MOX5_SHOOT_16_4a1b1bac-3c57-4cdc-b748-3e25665be67f.jpg?v=1765378558", "description_meta": "Discover MOX, the ultimate non-alcoholic mocktails experience. Crafted with passion and natural ingredients, our drinks offer a perfect blend of unique flavors. Taste the difference with MOX \u2013 the preferred brand for the discerning mocktail enthusiast!", "site_name": "MOX"}
\ No newline at end of file
added data/enrich_cache/mr-farms.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mr-farms.com", "logo_url": "https://mr-farms.com/wp-content/uploads/2025/01/cropped-MR-farms.jpg", "cover_url": "https://mr-farms.com/wp-content/uploads/2025/02/brush-300x38.jpg", "description_meta": "For over 40 years the Riendeau family has been growing and distributing quality produce for the Canadian, United States and Mexican markets.", "site_name": "MR Farms"}
\ No newline at end of file
added data/enrich_cache/mrcbm.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrcbm.qc.ca", "logo_url": "https://www.mrcbm.qc.ca/img/favicon.png", "cover_url": "https://tj.imgix.net/mrcbm/seo/Une-region-a-faire-rever.-Des-gens-passionnes.png?v=1687796402&w=1200&h=630&fm=jpg&fit=crop", "description_meta": "D\u00e9couvrez la MRC Brome-Missisquoi : une r\u00e9gion \u00e0 faire r\u00eaver, des gens passionn\u00e9s. Un milieu naturel habit\u00e9, dynamique et innovant sur toute la ligne!", "site_name": "MRC Brome-Missisquoi"}
\ No newline at end of file
added data/enrich_cache/mrccharlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrccharlevoix.ca", "logo_url": "https://www.mrccharlevoix.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mrccharlevoixest.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrccharlevoixest.ca", "logo_url": "https://mrccharlevoixest.ca/wp-content/uploads/2023/10/cropped-icon-180x180.png", "cover_url": "https://mrccharlevoixest.ca/wp-content/uploads/2023/10/q1l.jpg", "description_meta": "La MRC de Charlevoix-Est vous offre des services municipaux complets pour les citoyens et entreprises : am\u00e9nagement, \u00e9valuation, d\u00e9veloppement r\u00e9gional, mati\u00e8res r\u00e9siduelles.", "site_name": "MRC de Charlevoix-Est"}
\ No newline at end of file
added data/enrich_cache/mrcdecoaticook.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrcdecoaticook.qc.ca", "logo_url": "https://mrcdecoaticook.qc.ca/images/shortcut.png", "cover_url": null, "description_meta": "La MRC de Coaticook, situ\u00e9 en Estrie au Qu\u00e9bec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/mrcdessources.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrcdessources.com", "logo_url": "https://mrcdessources.com/wp-content/uploads/2021/01/MRC_des_Sources.png", "cover_url": "https://mrcdessources.com/wp-content/uploads/2021/02/MRCdesSources-slider-01-v2.jpg", "description_meta": "La MRC est responsable de l&#039;am\u00e9nagement et du d\u00e9veloppement \u00e9conomique et social de la r\u00e9gion des Sources (Estrie / Cantons-de-l&#039;Est).", "site_name": "MRC des Sources"}
\ No newline at end of file
added data/enrich_cache/mrcgranit.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrcgranit.qc.ca", "logo_url": "https://www.mrcgranit.qc.ca/images/icones/apple_touch_57.png", "cover_url": "https://www.mrcgranit.qc.ca/fichiersUploadOpt/1200-0-0-0-1200-630-d921eb861f771aef65c3ceeb8966921e755ad912444492896/20231214135210-facebook.png", "description_meta": "Offrir des services efficients et adapt\u00e9s qui favorisent le d\u00e9veloppement harmonieux de la collectivit\u00e9 sur le plan \u00e9conomique, social et culturel ainsi que la mise en valeur de son patrimoine naturel.", "site_name": "MRC du Granit"}
\ No newline at end of file
added data/enrich_cache/mrchsf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrchsf.com", "logo_url": "https://mrchsf.com/wp-content/uploads/2026/02/cropped-MRC-HSF_Icone_Couleurs.png", "cover_url": "https://mrchsf.com/wp-content/uploads/2026/04/1200-x-630-_logo-mrc.png", "description_meta": "D\u00e9couvrez la MRC du Haut-Saint-Fran\u00e7ois, un lieu id\u00e9al pour \u00e9lever une famille, faire des affaires et profiter d&#039;activit\u00e9s de plein air, tout en pr\u00e9servant l&#039;environnement.", "site_name": "MRC Le Haut-Saint-Fran\u00e7ois"}
\ No newline at end of file
added data/enrich_cache/mrcmaskoutains.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrcmaskoutains.qc.ca", "logo_url": "https://static.wixstatic.com/media/ee45e1_5e6597a7c8724505a86f139ed39456ce%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/ee45e1_5e6597a7c8724505a86f139ed39456ce%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mrcmemphremagog.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mrcmemphremagog.com", "logo_url": "https://www.mrcmemphremagog.com/img/favicon.png", "cover_url": "https://tj.imgix.net/mrcmemphre/seo/mrcmm-image-partage.png?v=1682367751&w=1200&h=630&fm=jpg&fit=crop", "description_meta": "Avec une vision engag\u00e9e, audacieuse et dynamique de son territoire, la MRC de Memphr\u00e9magog a \u00e0 c\u0153ur le patrimoine d&#039;hier, d&#039;aujourd&#039;hui et de demain.", "site_name": "MRC de Memphr\u00e9magog"}
\ No newline at end of file
added data/enrich_cache/mreno.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mreno.com", "logo_url": "https://mreno.com/wp-content/uploads/2021/11/reno-favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mstainc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mstainc.com", "logo_url": "https://mstainc.com/wp-content/uploads/2020/01/apple-touch-icon-114x114-1.png", "cover_url": null, "description_meta": null, "site_name": "Saint-Arneault"}
\ No newline at end of file
added data/enrich_cache/mthell.shop.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mthell.shop", "logo_url": "https://mthell.shop/favicon.ico", "cover_url": "http://mthell.shop/cdn/shop/files/IMG_8505.jpg?v=1772502296", "description_meta": "Sauces Piquantes de qualit\u00e9 et autres produits - Quality Hot Sauces and other spicy products Montr\u00e9al, Qu\u00e9bec", "site_name": "LES SAUCES PIQUANTES MTHELL"}
\ No newline at end of file
added data/enrich_cache/mtlbboard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mtlbboard.com", "logo_url": "https://mtlbboard.com/cdn/shop/t/23/assets/icon-for-mobile.png?v=116338895864750402931785886832", "cover_url": "http://mtlbboard.com/cdn/shop/t/23/assets/logo.png?v=7330", "description_meta": "MTL Balance Board - Handmade with Recycled Wood", "site_name": "MTL Balance Board"}
\ No newline at end of file
added data/enrich_cache/multi-eco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "multi-eco.com", "logo_url": "https://multi-eco.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/multibrosses.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "multibrosses.com", "logo_url": "https://multibrosses.com/wp-content/uploads/2020/12/MultiBrosses_favicon-01.jpg", "cover_url": "https://multibrosses.com/wp-content/uploads/2017/05/logo-facebook.jpg", "description_meta": "Manufacturier canadien offrant une gamme compl\u00e8te d&#039;outils d&#039;entretien m\u00e9nager : balais, brosses, vadrouilles, manches et accessoires.", "site_name": "Multi brosses"}
\ No newline at end of file
added data/enrich_cache/municipalitecloridorme.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "municipalitecloridorme.ca", "logo_url": "https://municipalitecloridorme.ca/wp-content/uploads/2024/10/cropped-favicon-180x180.png", "cover_url": "https://municipalitecloridorme.ca/wp-content/uploads/2024/06/mairesse-Nancy-Cloutier.jpeg", "description_meta": "Entre mer et montagnes, la municipalit\u00e9 de Cloridorme d\u00e9roule son ruban de paysages d\u2019une grande beaut\u00e9.", "site_name": "Municipalit\u00e9 de Cloridorme"}
\ No newline at end of file
added data/enrich_cache/municipaliteiac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "municipaliteiac.ca", "logo_url": "https://www.municipaliteiac.ca/images/icones/apple_touch_57.png", "cover_url": "https://www.municipaliteiac.ca/fichiersUploadOpt/1200-0-0-0-1200-630-bd6f5cdb3f021825bca3364ce2405fb932424eacdaf55893b/20250321123100-partage-facebook.png", "description_meta": "-", "site_name": "Municipalit\u00e9 de L"}
\ No newline at end of file
added data/enrich_cache/murmura.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "murmura.ca", "logo_url": "https://murmura.ca/favicon.ico", "cover_url": null, "description_meta": "Des murales pens\u00e9es pour leur lieu et ceux qui le fr\u00e9quentent. Cr\u00e9ation sur mesure, restauration, environnements th\u00e9rapeutiques. Partout au Qu\u00e9bec. Peintes \u00e0 la main.", "site_name": "MUR MURA"}
\ No newline at end of file
added data/enrich_cache/murraybayprotestantchurch.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "murraybayprotestantchurch.com", "logo_url": "https://www.murraybayprotestantchurch.com/favicon.ico", "cover_url": null, "description_meta": "Vous \u00eates tous invit\u00e9s \u00e0 la Brasserie Chez Pierre! Avec un menu de bi\u00e8res all\u00e9chants et un menu app\u00e9tissant, ce design de brasserie fran\u00e7aise fera un malheur!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/museedecharlevoix.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "museedecharlevoix.qc.ca", "logo_url": "https://static.wixstatic.com/media/606d47_d186747e4d2647e4ba4f57d27696a5e6%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/606d47_d186747e4d2647e4ba4f57d27696a5e6%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/museedelacotenord.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "museedelacotenord.ca", "logo_url": "https://museedelacotenord.ca/wp-content/uploads/2024/10/Logo.svg", "cover_url": "https://museedelacotenord.ca/wp-content/uploads/2025/01/museedelacotenord-share.jpg", "description_meta": "Bienvenue au Mus\u00e9e de la C\u00f4te-Nord, un lieu embl\u00e9matique d\u00e9di\u00e9 aux arts visuels, au patrimoine et \u00e0 l&#039;histoire nord-c\u00f4ti\u00e8re. D\u00e9couvrez nos expositions uniques et plongez dans une exp\u00e9rience culturelle enrichissante \u00e0 Sept-\u00celes.", "site_name": "Mus\u00e9e de la C\u00f4te-Nord"}
\ No newline at end of file
added data/enrich_cache/museemaritime.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "museemaritime.com", "logo_url": "https://museemaritime.com/favicon.ico", "cover_url": null, "description_meta": "Revivez l\u2019\u00e9pop\u00e9e des go\u00e9lettes au Mus\u00e9e maritime de Charlevoix: visite du chantier et bateaux historiques, expos et activit\u00e9s familiales au bord du fleuve.", "site_name": "Mus&eacute;e Maritime de Charlevoix"}
\ No newline at end of file
added data/enrich_cache/museevieillefromagerie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "museevieillefromagerie.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/mushup.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mushup.ca", "logo_url": "https://mushup.ca/cdn/shop/files/icone_32x32.png?v=1613777601", "cover_url": "http://mushup.ca/cdn/shop/files/logo_vert_grande.jpg?v=1613778347", "description_meta": "MushUp produces, locally and ethically, premium quality coffees enriched with medicinal mushrooms known for their health benefits.", "site_name": "MushUp"}
\ No newline at end of file
added data/enrich_cache/mxoconseil.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mxoconseil.com", "logo_url": "https://mxoconseil.com/hubfs/web-app-manifest-512x512.png", "cover_url": "https://mxoconseil.com/hubfs/mxo_design_conceptual_editorial_illustration_of_a_person_seen_i_182b0475-d650-432e-b01e-7a9acc01c3c7.png", "description_meta": "MXO est un cabinet de conseil strat\u00e9gique qui aide les dirigeants \u00e0 clarifier leurs priorit\u00e9s, \u00e0 aligner leurs \u00e9quipes et \u00e0 cr\u00e9er davantage de valeur.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/myeldesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "myeldesign.com", "logo_url": "https://myeldesign.com/cdn/shop/t/35/assets/favicon.png?v=106078771381131708921700590770", "cover_url": "https://cdn.shopify.com/s/files/1/0201/5188/files/Catalogue_Myel_207_bague_Nocta_copy_10a95d9a-e1e0-4cb1-9236-d7fef965c6a8.jpg?v=1782917615", "description_meta": "Shop MYEL&#39;s collections of fine jewelry including wedding and engagement rings set with ethical gemstones and handcrafted in Montr\u00e9al. Shop our high end jewelry online now or visit our boutique in Montreal.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/mygreenbag.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mygreenbag.ca", "logo_url": "https://mygreenbag.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/myni.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "myni.ca", "logo_url": "https://myni.ca/cdn/shop/files/Favicon_Myni_32x32.png?v=1725144775", "cover_url": "http://myni.ca/cdn/shop/files/Logo_noir_470646bd-5030-47e1-8312-f06ea768ec6d.png?v=1728785169", "description_meta": "Embrace a more sustainable lifestyle with Myni! We make cleaning tablets &amp; personal care powders to fill reusable bottles. Good for you &amp; the planet. Made in Canada", "site_name": "MYNI"}
\ No newline at end of file
added data/enrich_cache/mystea.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "mystea.ca", "logo_url": "https://mystea.ca/cdn/shop/files/favicon_ff1eda54-2e49-4b65-922b-23ed084595b7.png?v=1709570562&width=180", "cover_url": "http://mystea.ca/cdn/shop/files/lien_web.jpg?v=1738777602&width=2048", "description_meta": "Mystea, boutique de th\u00e9 sherbrookoise, offre th\u00e9s, tisanes, et matchas 100% naturels. D\u00e9couvrez nos Bubble Tea et Chai faits maison, pr\u00eats-\u00e0-boire d\u00e9licieux, et accessoires pour amateurs de th\u00e9. Entreprise qu\u00e9b\u00e9coise \u00e9coresponsable d\u00e9di\u00e9e au bien-\u00eatre!", "site_name": "MysTea"}
\ No newline at end of file
added data/enrich_cache/nadineblanchette.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nadineblanchette.ca", "logo_url": "https://nadineblanchette.ca/wp-content/uploads/2023/10/NadineBlanchette_Logo_Favicon.png", "cover_url": "https://nadineblanchette.ca/wp-content/uploads/2023/10/Papeterie-Nadine-Blanchette-scaled.png", "description_meta": "D\u00e9couvrez Papeterie Nadine Blanchette, une papeterie qu\u00e9b\u00e9coise cr\u00e9ative offrant carnets illustr\u00e9s, agendas, blocs-notes et outils de planification con\u00e7us au Qu\u00e9bec.", "site_name": "Nadine Blanchette"}
\ No newline at end of file
added data/enrich_cache/nahak.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nahak.ca", "logo_url": "https://cdn.nahak.ca/wp-content/uploads/2022/07/cropped-nahak.png?strip=all&#038;resize=180%2C180", "cover_url": "https://nahak.ca/wp-content/uploads/2024/09/Hannahsept24-1-1024x576.webp", "description_meta": "Partez \u00e0 l&#039;aventure avec votre chien ! D\u00e9couvrez notre vaste gamme de produits de haute performance | Livraison gratuite d\u00e8s 119$ d&#039;achat", "site_name": "Nahak"}
\ No newline at end of file
added data/enrich_cache/nalkanutrition.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nalkanutrition.ca", "logo_url": "https://nalkanutrition.ca/favicon.ico", "cover_url": "http:Liquid error (snippets/social-meta-tags line 8): invalid url input", "description_meta": "Nourrissez votre corps, simplement. N\u00e4lk\u00e4 cr\u00e9e des boissons bio, v\u00e9ganes et faites au Qu\u00e9bec. De vrais ingr\u00e9dients pour une \u00e9nergie durable, sans ballonnement. Commandez en ligne.", "site_name": "N\u00e4lk\u00e4 Nutrition"}
\ No newline at end of file
added data/enrich_cache/nanocinco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nanocinco.com", "logo_url": "https://nanocinco.com/wp-content/uploads/2022/08/favicon.png", "cover_url": "https://nanocinco.com/wp-content/uploads/2022/08/Beers-scaled-e1660231933203.jpg", "description_meta": "Nano Cinco est une microbrasserie situ\u00e9e dans le quartier populaire de Limoilou, \u00e0 Qu\u00e9bec.", "site_name": "Nano Cinco"}
\ No newline at end of file
added data/enrich_cache/nanukcases.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nanukcases.ca", "logo_url": "https://nanukcases.ca/cdn/shop/files/favicon-nanuk.png?v=1745946293&width=180", "cover_url": "http://nanukcases.ca/cdn/shop/files/nanuk-social.jpg?v=1697640921&width=2048", "description_meta": "Discover NANUK hard cases in various sizes and colors, perfect for drones, cameras, medical equipment, and more. Made in Canada for ultimate protection.", "site_name": "NANUK Canada"}
\ No newline at end of file
added data/enrich_cache/nasdrow.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nasdrow.com", "logo_url": "https://nasdrow.com/favicon.ico", "cover_url": "https://pub-bb2e103a32db4e198524a2e9ed8f35b4.r2.dev/530d0f93-c9dd-49e9-8ded-09caeb700a95/id-preview-7c2f7a18--099eca2b-1c7e-4fcf-b9cc-be6692a5ffc3.lovable.app-1786029282089.png", "description_meta": "Crafted mocktails, 100% natural ingredients, made to share.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/natartjuvenile.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "natartjuvenile.com", "logo_url": "https://natartjuvenile.com/wp-content/uploads/2017/03/Natart-favicon.jpg", "cover_url": "https://natartjuvenile.com/wp-content/uploads/2017/06/Natart-slider-rustico-slide-1.jpg", "description_meta": "Natart Juvenile is the largest manufacturer of high-end baby and kids furniture in Canada. Convertible cribs, furniture and more.", "site_name": "Natart Juvenile"}
\ No newline at end of file
added data/enrich_cache/nathaliesamson.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nathaliesamson.com", "logo_url": "https://cdn.myportfolio.com/d0c676aee882754a280316dad4d994a3/beb8a8e5-1152-4a6c-b657-c58f491d534a_carw_1x1x180.png?h=6cde199ad7deb9326fcaf9206a6ae23a", "cover_url": "https://cdn.myportfolio.com/d0c676aee882754a280316dad4d994a3/6970fac5-e4ea-4e0d-be39-5d39f4807aef_rw_600.png?h=937a499fb6ad1fbf986c59cf7f323a19", "description_meta": "Design, Illustrations and digital art from Nathalie Samson, for institutional, editorial, advertising or corporate publication.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/natuku.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "natuku.com", "logo_url": "https://natuku.com/cdn/shop/files/avatar_96x96.png?v=1617633126", "cover_url": "http://natuku.com/cdn/shop/files/natuku_accueil_header_e851e95c-e833-494b-a473-d94c377b9e3b.jpg?v=1728551379", "description_meta": "A range of unique beauty products, in perfect harmony with the elements, which tones the skin and revitalizes energy thanks to the power of nature.", "site_name": "Natuku"}
\ No newline at end of file
added data/enrich_cache/natura.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "natura.ca", "logo_url": "https://natura.ca/wp-content/uploads/2024/05/cropped-Artboard-1logosite-180x180.png", "cover_url": "https://natura.ca/wp-content/uploads/2024/05/Natura-Logo-RGB-BIL.png", "description_meta": "D\u00e9couvrez les boissons de soya, de riz, d\u2019amandes et d\u2019avoine Natura, des alternatives v\u00e9g\u00e9tales \u00e9quilibr\u00e9es et d\u00e9licieuses.", "site_name": "Natura"}
\ No newline at end of file
added data/enrich_cache/natureetpinceaux.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "natureetpinceaux.qc.ca", "logo_url": "https://natureetpinceaux.qc.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/naturehike.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "naturehike.ca", "logo_url": "https://naturehike.ca/cdn/shop/files/Creation_sans_titre_5_copie_32x32.png?v=1686098150", "cover_url": "http://naturehike.ca/cdn/shop/files/NATUREHIKE.CA_1.png?v=1701051124", "description_meta": "Entreprise de plein air offrant des tentes et de l\u2019\u00e9quipement de plein air au MEILLEUR RAPPORT QUALIT\u00c9-PRIX. Profitez de la LIVRAISON GRATUITE* et RAPIDE partout au Canada. Pr\u00e9parez-vous \u00e0 des exp\u00e9riences inoubliables sans compromettre votre budget. Distributeur officiel \u00e0 travers le Canada.", "site_name": "Naturehike"}
\ No newline at end of file
added data/enrich_cache/naturoney.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "naturoney.com", "logo_url": "https://www.naturoney.com/favicon.ico", "cover_url": "http://www.naturoney.com/static/public/img/share/facebook_generic.jpg", "description_meta": "Naturoney offre des miels pasteuris\u00e9s et non pasteuris\u00e9s, et des produits de la ruche de qualit\u00e9.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/naya.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "naya.com", "logo_url": "https://naya.com/favicon.ico", "cover_url": "https://naya.com/images/naya-og.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/neka.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "neka.ca", "logo_url": "https://neka.ca/cdn/shop/files/logo_transparent_fixed.png?crop=center&height=48&v=1739391599&width=48", "cover_url": "http://neka.ca/cdn/shop/files/NEKA-Romy_Margot-5536_3000px_-_LUMINOSITE_1200x1200.jpg?v=1717776008", "description_meta": "Neka est une entreprise canadienne avec plus de 20 ans d&#39;expertise dans la cr\u00e9ation de produits sains de haute qualit\u00e9 pour toute la famille. Achetez nos coussins d&#39;allaitement, oreillers pour enfants et coussins de m\u00e9ditation rembourr\u00e9s d&#39;\u00e9cales de sarrasin pour un confort exceptionnel.", "site_name": "nekacanada"}
\ No newline at end of file
added data/enrich_cache/nektar.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nektar.ca", "logo_url": "https://nektar.ca/cdn/shop/files/favicon_3x_66602940-5a46-446d-bef4-26428e4ed160_194x194_crop_center.png?v=1614295152", "cover_url": "http://nektar.ca/cdn/shop/files/nektar-horaire-et-contact_1200x1200.png?v=1617038711", "description_meta": "D\u00e9couvrez le monde du caf\u00e9 de sp\u00e9cialit\u00e9 ! Notre passion en tant que torr\u00e9facteurs : r\u00e9v\u00e9ler les ar\u00f4mes qui se cachent dans chaque grain de caf\u00e9, de chaque terroir et soutenir les caf\u00e9iculteurs.trices. Explorer, avec respect.", "site_name": "Nektar Torr\u00e9facteur / Coffee Roasters"}
\ No newline at end of file
added data/enrich_cache/nemracstyle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nemracstyle.com", "logo_url": "https://www.nemracstyle.com/favicon.ico", "cover_url": "https://cdn.shopify.com/s/files/1/0821/3751/files/NEMRAC_logo.jpg?height=628&pad_color=ffffff&v=1613171986&width=1200", "description_meta": "Nemrac offre des collections de qualit\u00e9 sup\u00e9rieure pour ses clientes. Chaque pi\u00e8ce refl\u00e8te la versatilit\u00e9 de la femme polyvalente d&#39;aujourd&#39;hui. Nous proposons des collections feminines, intemporelles et sophistiqu\u00e9es \u00e0 travers une vision de innovante de la mode, de l&#39;\u00e9l\u00e9gance et du raffinement, faites \u00e0 Montr\u00e9al.", "site_name": "Nemrac Style Inc."}
\ No newline at end of file
added data/enrich_cache/neochips.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "neochips.ca", "logo_url": "https://neochips.ca/cdn/shop/files/Renard-croque-chip_6e5376e8-723c-4641-af58-66656cbfa5d3.png?v=1690151457&width=32", "cover_url": "http://neochips.ca/cdn/shop/files/NeoChips_vert_h.png?height=628&pad_color=fff&v=1679001005&width=1200", "description_meta": "D\u00e9couvrez nos chips de fruits sans additifs, gluten ni huile. Collations saines et d\u00e9licieuses. Achetez maintenant!", "site_name": "N\u00e9o Chips"}
\ No newline at end of file
added data/enrich_cache/neodrinks.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "neodrinks.ca", "logo_url": "https://static.wixstatic.com/media/aadca2_4522e195025a476eb24c7a5fd31402c5%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/aadca2_4522e195025a476eb24c7a5fd31402c5%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/newswire.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "newswire.ca", "logo_url": "https://www.newswire.ca/content/dam/cision/icons/favicon.png", "cover_url": "https://www.newswire.ca/content/dam/newswire-ca/logos/cnw_en_facebook_sharing_logo.png", "description_meta": "Press release distribution platform - the best online PR distribution service in Canada: get your story heard with Newswire&#39;s powerful paid press release...", "site_name": null}
\ No newline at end of file
added data/enrich_cache/nextchance.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nextchance.ca", "logo_url": "https://www.nextchance.ca/cdn/shop/files/SMH_Next_Chance_Logotype_Brown_RBG_LR.png?crop=center&height=32&v=1697226939&width=32", "cover_url": "http://www.nextchance.ca/cdn/shop/files/Next_Chance_Social_Sharing.png?v=1733145837", "description_meta": "Emballages cadeaux r\u00e9utilisables et d\u00e9corations pour la maison faits au Qu\u00e9bec de tissus rescap\u00e9s.", "site_name": "Next Chance"}
\ No newline at end of file
added data/enrich_cache/ni-corporation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ni-corporation.com", "logo_url": "https://ni-corporation.com/cdn/shop/files/Logo_-_Favicon.png?crop=center&height=32&v=1747156302&width=32", "cover_url": null, "description_meta": "Ni Corporation", "site_name": "Ni Corporation"}
\ No newline at end of file
added data/enrich_cache/niconico.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "niconico.ca", "logo_url": "https://www.niconico.ca/favicon.png", "cover_url": "https://www.niconico.ca/wp-content/uploads/2020/03/jeu-strategie.png", "description_meta": "L\u2019atelier de conception et de fabrication de jeux en bois Niconico cr\u00e9e des jeux de soci\u00e9t\u00e9 en bois tel que le cribbage, pour ceux qui aiment s\u2019amuser.", "site_name": "NicoNico"}
\ No newline at end of file
added data/enrich_cache/ninajanvier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ninajanvier.com", "logo_url": "https://www.ninajanvier.com/cdn/shop/files/NinaJanvier_-_Logo_picto_noir_sur_fond_transparent_32x32.png?v=1668555264", "cover_url": "http://www.ninajanvier.com/cdn/shop/files/NinaJanvier_-_Logo_carre-test_site_62799eb7-1947-49c2-a2dd-4addba4d4c84.png?v=1669046570", "description_meta": "Official website and online shop of french designer Nina Janvier. Shop modern and original jewelry made by Nina Janvier in her Montreal based workshop.", "site_name": "NINA JANVIER Atelier Boutique"}
\ No newline at end of file
added data/enrich_cache/nival.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nival.ca", "logo_url": "https://www.nival.ca/cdn/shop/files/logo_header_228x228.png?v=1613519123", "cover_url": "https://www.nival.ca/cdn/shopifycloud/storefront/assets/no-image-2048-a2addb12_1200x.gif", "description_meta": "Le Domaine du Nival fa\u00e7onne des vins uniques en repoussant les limites du possible. D\u00e9couvrez notre vignoble situ\u00e9 en bordure de la Yamaska, apprenez-en plus sur notre savoir-faire et procurez-vous nos vins sur notre boutique en ligne.", "site_name": "Domaine du Nival"}
\ No newline at end of file
added data/enrich_cache/no900.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "no900.com", "logo_url": "https://no900.com/cdn/shop/files/900_full_logo_FR_32x32.png?v=1686679707", "cover_url": "http://no900.com/cdn/shop/files/2023_07_PIZZA_MARINARA_3_1.jpg?v=1694614226", "description_meta": "Une v\u00e9ritable pizza napolitaine, pr\u00e9par\u00e9e dans les r\u00e8gles de l&#39;art et cuite en 90 secondes, elle transforme les standards de la restauration rapide. La pizza NO.900 est une v\u00e9ritable pizza napolitaine certifi\u00e9e AVPN. Votre pizz\u00e9ria de quartier. On s&#39;occupe de votre pizza-party avec notre four mobile.", "site_name": "Pizzeria no.900"}
\ No newline at end of file
added data/enrich_cache/nobaanimal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nobaanimal.com", "logo_url": "https://nobaanimal.com/cdn/shop/files/logo_nac_notx.png?v=1715786727&width=180", "cover_url": "http://nobaanimal.com/cdn/shop/files/YOUTUBE_PROFILE.png?v=1724779110&width=2048", "description_meta": "Noba Animal manufactures high-end cat products in Canada. Discover our ranges of hygiene and wellness products, cat trees, scratchers, and cabins.", "site_name": "Noba Animal Co."}
\ No newline at end of file
added data/enrich_cache/noblebean.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "noblebean.com", "logo_url": "https://static.wixstatic.com/media/351c7a_bd65057801b44cf4a1bf66c0ec1fc2c6%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/351c7a_bd65057801b44cf4a1bf66c0ec1fc2c6%7Emv2.png", "cover_url": null, "description_meta": "Noble Bean Tempeh | Organic Plant-Based Protein | Made in Canada\nNoble Bean produces organic, non-GMO tempeh made in Montr\u00e9al using traditional fermentation.", "site_name": "Noble Bean"}
\ No newline at end of file
added data/enrich_cache/noctem.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "noctem.ca"}
\ No newline at end of file
added data/enrich_cache/nodo.eco.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nodo.eco", "logo_url": "https://nodo.eco/favicon.ico", "cover_url": null, "description_meta": "Chez NODO, nous cr\u00e9ons des destructeurs d\u2019odeurs naturels avec du mordant\u2009! Profitez de nos ar\u00f4mes rafraichissants soigneusement \u00e9labor\u00e9s pendant que les micro-organismes d\u00e9truisent les bact\u00e9ries qui causent les mauvaises odeurs.", "site_name": "NODO"}
\ No newline at end of file
added data/enrich_cache/noemiah.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "noemiah.com", "logo_url": "https://noemiah.com/cdn/shop/files/noemiah-logo_32x32.png?v=1698064743", "cover_url": "https://noemiah.com/cdn/shop/files/noemiah-noemie-vaillancourt-atelier_1204x630.jpg?v=1758141628", "description_meta": "Welcome to No\u00e9miah, Laurentians&#39; designer of high-end custom bridal gowns and dresses. Come and discover our poetic, elegant, and sophisticated collections.", "site_name": "No\u00e9miah"}
\ No newline at end of file
added data/enrich_cache/noire-et-blanche.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "noire-et-blanche.ca", "logo_url": "https://noire-et-blanche.ca/wp-content/uploads/2017/02/cropped-Favicon-netb-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/norbleu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "norbleu.com", "logo_url": "https://cdn.prod.website-files.com/66c39036c8c6a27530890600/66c78854a9da61da2d95f6e2_favicon-256.png", "cover_url": "https://cdn.prod.website-files.com/66c39036c8c6a27530890600/66c78981ecfe374f9b72aaca_og.png", "description_meta": "Notre entreprise familiale cultive, transforme et commercialise vos produits frais et de confiserie au Saguenay -- Lac-Saint-Jean.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/nord-bio.coop.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nord-bio.coop", "logo_url": "https://nord-bio.coop/image/nordbio/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": "Nord Bio , une coop\u00e9rative de plus de 50 producteurs et transformateurs d\u00e9di\u00e9s au bio au Saguenay-Lac-Saint-Jean. Ensemble, consommons responsable.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/nordexpe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nordexpe.com", "logo_url": "https://nordexpe.com/wp-content/uploads/2019/06/cropped-favicon-180x180.png", "cover_url": "https://nordexpe.com/wp-content/uploads/2019/06/default-og-img.png", "description_meta": "Randonn\u00e9e, location de c\u00f4te \u00e0 c\u00f4te et VTT \u00e0 Qu\u00e9bec, offrez vous un moment hors du temps cet \u00e9t\u00e9 avec Nord Exp\u00e9.", "site_name": "Nord Expe"}
\ No newline at end of file
added data/enrich_cache/nordik.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nordik.ca", "logo_url": "https://nordik.ca/cdn/shop/files/Nordik_flaticon.svg?crop=center&height=32&v=1751897598&width=32", "cover_url": "http://nordik.ca/cdn/shop/files/1_dee69daa-293c-432e-9d8b-44b1454bd6c0.png?v=1734398492", "description_meta": "Torr\u00e9facteur situ\u00e9 \u00e0 Blainville, Caf\u00e9 de sp\u00e9cialit\u00e9, lait v\u00e9g\u00e9tal et brunch disponible sur place. Vin Nature, et produit Qu\u00e9b\u00e9cois. Magasinez en ligne aujourd&#39;hui\u00a0!", "site_name": "Nordik"}
\ No newline at end of file
added data/enrich_cache/norfish.fish.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "norfish.fish", "logo_url": "https://norfish.fish/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/norterafoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "norterafoods.com", "logo_url": "https://www.norterafoods.com/_nuxt/icons/icon_512x512.75e041.png", "cover_url": "https://www.datocms-assets.com/85733/1681222357-2022-08-03_09102545_photo_by_jimmy_hamelin-3.jpg?w=1200", "description_meta": "Nortera se sp\u00e9cialise dans la transformation et la commercialisation de l\u00e9gumes en conserve et surgel\u00e9s. Plus de 260 produits pour aider nos clients.", "site_name": "Nortera"}
\ No newline at end of file
added data/enrich_cache/northhatley.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "northhatley.org", "logo_url": "https://www.northhatley.org/wp-content/uploads/2016/06/cropped-Logo-North-Hatley-180x180.jpg", "cover_url": "http://www.northhatley.org/wp-content/uploads/2013/03/bg-page-mobile.jpg", "description_meta": "Notre charmant village se d\u00e9marque par ses ses boutiques originales, ses bistros et caf\u00e9s, ses \u00e9glises historiques et ses parcs au bord de l\u2019eau.", "site_name": "Village de North Hatley"}
\ No newline at end of file
added data/enrich_cache/northhatleyproducts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "northhatleyproducts.com", "logo_url": "https://www.northhatleyproducts.com/favicon.ico", "cover_url": null, "description_meta": "An enterprise known for excellence in maple products since 1998! With over 68 maple syrup products, the company has also become a must for all gourmet lovers of maple.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/northleaf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "northleaf.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/597ba42b725e25118d0e1d71/1553891995621-2UPP5K39YSZVQ9Q1VHF9/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/597ba42b725e25118d0e1d71/t/5c4b4e7a4d7a9c9ad4325af0/1548439173660/Asset+3%4020x.png?format=1500w", "description_meta": "Fournisseur d", "site_name": "Northleaf"}
\ No newline at end of file
added data/enrich_cache/noscabanes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "noscabanes.com", "logo_url": "https://www.noscabanes.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/581101a4893fc05b4111dc28/t/58d14101db29d660e47e2ec2/1490108675460/Duo_Sirop_Nos_Cabane.jpg?format=1500w", "description_meta": "Sirop d", "site_name": "Nos Cabanes"}
\ No newline at end of file
added data/enrich_cache/nosforetsepicees.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nosforetsepicees.com", "logo_url": "https://static.wixstatic.com/media/3d1b88_795011b0e155437c9e6d689246591d0c%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/3d1b88_795011b0e155437c9e6d689246591d0c%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/notredamedesmonts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "notredamedesmonts.com", "logo_url": "https://static.wixstatic.com/media/802047_9c66bf064bce45f9b465211aac9b4117%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/802047_9c66bf064bce45f9b465211aac9b4117%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/05ccb8_67b6913d88c847bd87cffaa69b0b8f39%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/05ccb8_67b6913d88c847bd87cffaa69b0b8f39%7Emv2.jpg", "description_meta": "Que vous soyez citoyen ou visiteur, en naviguant sur notre site, il vous sera facile de trouver toute l\u2019information pertinente concernant la municipalit\u00e9 (membre du conseil, avis publics, proc\u00e8s-verbaux, r\u00e8glements, etc).", "site_name": "MunNDDM"}
\ No newline at end of file
added data/enrich_cache/notrevraienature.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "notrevraienature.com", "logo_url": "https://notrevraienature.com/wp-content/uploads/2025/03/cropped-Logo-nouvelle-version-180x180.png", "cover_url": "https://notrevraienature.com/wp-content/uploads/2022/09/P1080165-scaled-e1668035106602.jpg", "description_meta": "Mode de vie durable, jardinage \u00e9cologique, compostage, gestion du sol, gestion de l&#039;eau, \u00e9cosyst\u00e8me cultiv\u00e9, transition \u00e9cologique...", "site_name": "Notre vraie Nature"}
\ No newline at end of file
added data/enrich_cache/nouvelleorleans.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nouvelleorleans.ca", "logo_url": "https://static.wixstatic.com/media/e2b7ff_48f32f7244a247f7a6fa17a01ce0d164%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/e2b7ff_48f32f7244a247f7a6fa17a01ce0d164%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/nova-pharma.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nova-pharma.com", "logo_url": "https://nova-pharma.com/cdn/shop/files/NEW_NP_N_gradient_favicon.png?crop=center&height=180&v=1694016484&width=180", "cover_url": "http://nova-pharma.com/cdn/shop/files/NEW_NP_PLAIN_GRAY_73a85a05-93f9-4bfc-a131-73f5329f8302.png?crop=center&height=1200&v=1747936859&width=1200", "description_meta": "High-quality Canadian supplements / Third-party tested for heavy metals. Clean marine collagen, hormonal balance support &amp; vegan protein. Natural, lab-verified formulas. Free shipping $99+.", "site_name": "Nova Pharma"}
\ No newline at end of file
added data/enrich_cache/nuancesdegrains.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nuancesdegrains.com", "logo_url": "https://static.wixstatic.com/media/f930df_042c511fa89e4d5ca58d921b628a7055%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/f930df_042c511fa89e4d5ca58d921b628a7055%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/nurish.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nurish.ca", "logo_url": "https://nurish.ca/cdn/shop/files/nurish-fav.png?v=1707492637&width=180", "cover_url": "http://nurish.ca/cdn/shop/files/nurish13-4185_WEB_2fa13192-d4ae-4051-9150-118e527ac410.jpg?v=1765891615&width=2048", "description_meta": "D\u00e9couvrez NURISH : l\u2019alliance parfaite entre cosm\u00e9tique et nutrition. D\u00e9couvrez nos soins naturels et collag\u00e8ne fabriqu\u00e9 au Qu\u00e9bec.", "site_name": "NU\u2022RISH"}
\ No newline at end of file
added data/enrich_cache/nuspace.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nuspace.ca", "logo_url": "https://www.nuspace.ca/cdn/shop/files/favicon_32x32.png?v=1642609743", "cover_url": "http://www.nuspace.ca/cdn/shop/files/logo-checkout.png?v=1642609858", "description_meta": "N\u00fcspace, your go-to design destination in Canada: modern furniture, sofa, lighting, and trendy decor accessories. Shop online or in-store.", "site_name": "N\u00fcspace"}
\ No newline at end of file
added data/enrich_cache/nutra-fruit.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nutra-fruit.com", "logo_url": "https://cdn.prod.website-files.com/686d61af657579a4de58013b/686d61af657579a4de58016a_Nutra-Fruit-Webclip.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/nutrifrance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nutrifrance.com", "logo_url": "https://www.nutrifrance.com/wp-content/themes/Mxo/img/metas/228x228.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/nutrinor.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nutrinor.com", "logo_url": "https://www.nutrinor.com/app/uploads/2023/02/cropped-Logo-Cooperative-rgb-carre-Copie-180x180.jpg", "cover_url": "https://www.nutrinor.com/app/uploads/2021/09/Spec_Nutrinor_HR-5-scaled-e1633025831788.jpg", "description_meta": "Situ\u00e9e au Saguenay-Lac-Saint-Jean, Nutrinor est l\u2019une des plus importantes coop\u00e9ratives alimentaires du Qu\u00e9bec. Comptant 936 membres agriculteurs, cette coop\u00e9rative offre une grande vari\u00e9t\u00e9 de services.", "site_name": "Nutrinor coop\u00e9rative"}
\ No newline at end of file
added data/enrich_cache/nutriscuit.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nutriscuit.com", "logo_url": "https://nutriscuit.com/cdn/shop/files/favicon_228x228.png?v=1697140277", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/nutterie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nutterie.com", "logo_url": "https://nutterie.com/cdn/shop/files/Asset_7_32x32.png?v=1633702765", "cover_url": "http://nutterie.com/cdn/shop/files/logo_1200x1200.png?v=1633700604", "description_meta": "The ultimate destination for 1KG of nuts, dried fruits, seeds, mixes and alternative flours. We import direct, allowing us to skip the middleman offering the best prices and freshness. Shipping from our certified warehouse to clients all over Canada.", "site_name": "Nutterie"}
\ No newline at end of file
added data/enrich_cache/nuvola-pizza.order-online.ai.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "nuvola-pizza.order-online.ai", "logo_url": "https://nuvola-pizza.order-online.ai/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/oasisdugrandfond.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oasisdugrandfond.com", "logo_url": "https://static.wixstatic.com/media/6ee9ca_2fb3651eb2fb1cef0cf935a358bc75f8.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/6ee9ca_2fb3651eb2fb1cef0cf935a358bc75f8.jpg", "cover_url": "https://static.wixstatic.com/media/6ee9ca_2fb3651eb2fb1cef0cf935a358bc75f8.jpg/v1/fit/w_2500,h_1330,al_c/6ee9ca_2fb3651eb2fb1cef0cf935a358bc75f8.jpg", "description_meta": "Location de chalets pour maximum 4 personnes,\nface au parc r\u00e9gional du Mont Grand-Fonds, une destination 4 saisons dans Charlevoix, \u00e0 15 minutes du centre-ville de La Malbaie.", "site_name": "Oasis du grand fond"}
\ No newline at end of file
added data/enrich_cache/oberson.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oberson.com", "logo_url": "https://oberson.com/cdn/shop/files/Oberson_N_noir.png?crop=center&height=32&v=1694103587&width=32", "cover_url": "http://oberson.com/cdn/shop/files/OBERSON_335e8d55-748f-4c5a-98bc-0c5117d145f7.png?v=1694104777&width=1080", "description_meta": "Entreprise familiale sp\u00e9cialis\u00e9e dans les \u00e9quipements de sports de plein air depuis 1963. Livraison partout au Canada incluse sur les achats de 75$ et +", "site_name": "Oberson"}
\ No newline at end of file
added data/enrich_cache/ochampignon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ochampignon.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/61b22cba75412740fc25e218/a4bc8bf6-7c07-404e-9240-464fe65b6382/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/61b22cba75412740fc25e218/t/620fc06c0cac9a0ef2e34d6d/1645199468305/Logo+O%CC%82+Champignon+brun.png?format=1500w", "description_meta": "\u00d4 Champignon - Champignonni\u00e8re urbaine Qu\u00e9bec, pour les professionnels, restaurants et les particuliers. Pleurote blanc, noir, bleu et king, hydne h\u00e9risson, Pholiote adipeuse, Pioppino.", "site_name": "\u00d4 Champignon"}
\ No newline at end of file
added data/enrich_cache/octavemicro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "octavemicro.com", "logo_url": "https://octavemicro.com/wp-content/uploads/2025/07/cropped-OCT_favicon_02-180x180.png", "cover_url": "https://octavemicro.com/wp-content/uploads/2024/12/OCT_SEO_FB.jpg", "description_meta": "Vous \u00eates amateur de bi\u00e8res, de bouffe de pub, de musique? Vous \u00eates un nostalgique? Venez \u00e0 la microbrasserie Octave et profitez d&#039;accords parfaits!", "site_name": "Octave Microbrasserie"}
\ No newline at end of file
added data/enrich_cache/octeaujoaillier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "octeaujoaillier.com", "logo_url": "https://www.octeaujoaillier.com/wp-content/uploads/2018/03/cropped-favicon-e1521076919212-180x180.png", "cover_url": "https://www.octeaujoaillier.com/wp-content/uploads/2018/03/ban03_bl.jpg", "description_meta": "Octeau Joaillier et Horloger est une entreprise familiale travaillant dans la bijouterie et l&#039;horlogerie depuis 2008. Situ\u00e9 \u00e0 Sainte-Julie, Montr\u00e9al.", "site_name": "Octeau Joaillier et Horloger"}
\ No newline at end of file
added data/enrich_cache/odayawellness.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "odayawellness.com", "logo_url": "https://www.odayawellness.com/cdn/shop/files/Odaya_Icone_Gmail_180x.jpg?v=1638809278", "cover_url": "https://cdn.shopify.com/s/files/1/0605/8475/5447/files/Odaya_Icone_Gmail_320x120px_f85e110b-35eb-4656-992d-e2b45d066f73.jpg?v=1669296432", "description_meta": "ODAYA Water &amp; Plant-Based Personal Lubricant Gel Made with organic hemp oil 100% Natural | Vegan | Paraben-free", "site_name": "ODAYA Wellness"}
\ No newline at end of file
added data/enrich_cache/odfnutra.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "odfnutra.com", "logo_url": "https://odfnutra.com/wp-content/uploads/2025/09/favicon-300x300.png", "cover_url": "https://odfnutra.com/wp-content/uploads/2026/04/accueil-header.jpg", "description_meta": "D\u00e9couvrez notre technologie de films orosolubles (oral strips) \u00e0 dissolution rapide : pratique, s\u00e9curitaire et certifi\u00e9e selon les plus hautes normes de l\u2019industrie.", "site_name": "ODF Nutra"}
\ No newline at end of file
added data/enrich_cache/odwyer.biz.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "odwyer.biz", "logo_url": "https://i0.wp.com/odwyer.biz/wp-content/uploads/2025/09/cropped-odwr_favicon.png?fit=180%2C180&#038;ssl=1", "cover_url": "http://odwyer.biz/wp-content/uploads/2025/10/MINIATURE-accueil-SOCIAL-1-scaled.png", "description_meta": "Distillerie artisanale Gasp\u00e9sie O\u2019Dwyer : gin, whisky et liqueurs uniques, inspir\u00e9s du terroir gasp\u00e9sien et de l\u2019innovation.", "site_name": "O&#039;Dwyer Micro-Distillerie Gasp\u00e9sienne Inc."}
\ No newline at end of file
added data/enrich_cache/oeufdecaille.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oeufdecaille.ca", "logo_url": "https://oeufdecaille.ca/templates/yoo_shelf/apple_touch_icon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ogelato.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ogelato.com", "logo_url": "https://ogelato.com//templates/ogelato/images/com/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/oggifoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oggifoods.com", "logo_url": "https://www.oggifoods.com/wp-content/uploads/2023/06/cropped-Oggi_Favicon-180x180.jpg", "cover_url": "https://www.oggifoods.com/wp-content/uploads/2023/05/Oggi-White.svg", "description_meta": "Sapori Di Oggi - Pizza Oggi is a pioneer in producing gourmet and authentic gluten-free Italian pizzas and frozen pasta.", "site_name": "Sapori Di Oggi - Pizza Oggi"}
\ No newline at end of file
added data/enrich_cache/ohbio.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ohbio.ca", "logo_url": "https://ohbio.ca/apple-touch-icon.png", "cover_url": "https://ohbio.ca/wp-content/uploads/Oh-Bio-11-1024x576.jpg", "description_meta": "Ferme 100 % biologique \u00e0 l\u2019\u00cele d\u2019Orl\u00e9ans, autocueillette de fraises et terrasse avec vue sur le fleuve. Venez profiter d\u2019un moment gourmand chez OhBio : petits fruits, l\u00e9gumes frais et produits locaux.", "site_name": "OhBio-Ferme Jean-Pierre Plante"}
\ No newline at end of file
added data/enrich_cache/ohmailmail.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ohmailmail.ca", "logo_url": "https://ohmailmail.ca/apple-touch-icon.png", "cover_url": null, "description_meta": "Produits \u00e0 base d&#x27;ail du Qu\u00e9bec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/okassava.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "okassava.com", "logo_url": "https://okassava.com/favicon.ico", "cover_url": "http://okassava.com/cdn/shop/files/OKASSAVA_LOGO.png?height=628&pad_color=ffffff&v=1765178354&width=1200", "description_meta": "Discover O&#39;Kassava, gluten-free cassava products, including atti\u00e9k\u00e9. An alternative to rice, quinoa, and couscous, ready in 10 minutes. Delivery across Canada and the United States.", "site_name": "O\u2019Kassava"}
\ No newline at end of file
added data/enrich_cache/okocreations.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "okocreations.ca", "logo_url": "https://okocreations.ca/cdn/shop/files/favicone_OKO_CREATIONS_Pomme.png?crop=center&height=32&v=1704827336&width=32", "cover_url": "http://okocreations.ca/cdn/shop/files/LOGO_OKO_CREATIONS_Rectangle_01.png?height=628&pad_color=ffffff&v=1705000184&width=1200", "description_meta": "\u00d6ko Cr\u00e9ations specializes in reusable menstrual and urinary leakage products. Discover our range of washable cloth pads and period underwear made from hemp and organic cotton, manufactured in Quebec. A wide selection of sizes available!", "site_name": "\u00d6ko Cr\u00e9ations"}
\ No newline at end of file
added data/enrich_cache/oldharry-heritagesite.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oldharry-heritagesite.com", "logo_url": "https://oldharry-heritagesite.com/cdn/shop/files/cami.png?crop=center&height=32&v=1678976807&width=32", "cover_url": "http://oldharry-heritagesite.com/cdn/shop/files/37050587375_2cf234d87b_b.jpg?v=1716551288", "description_meta": "SRE-Cami", "site_name": "SRE-Cami"}
\ No newline at end of file
added data/enrich_cache/oli-soja.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oli-soja.com", "logo_url": "https://oli-soja.com/cdn/shop/files/Oli_Soja-LOGO-officiel_32x32.png?v=1636677035", "cover_url": "http://oli-soja.com/cdn/shop/files/CL106359-_Format_WEB.jpg?v=1760366427", "description_meta": "Offrez-vous la douceur d\u2019Oli &amp; Soja : chandelles de soja, soins corporels et eaux de linge faits \u00e0 la main au Qu\u00e9bec, v\u00e9ganes et sans cruaut\u00e9 animale", "site_name": "Oli &amp; Soja"}
\ No newline at end of file
added data/enrich_cache/olieve.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "olieve.ca", "logo_url": "https://olieve.ca/favicon.ico", "cover_url": "http://olieve.ca/cdn/shop/files/Banniere_WEB_Oli_EVE_8e52cbd3-24bd-4c0e-ac85-4f64470447b7_1200x1200.jpg?v=1745896100", "description_meta": "Entreprise montr\u00e9alaise sp\u00e9cialis\u00e9e dans la cr\u00e9ation de produits d\u2019ambiance. Bougies en cire de soya naturelle et diffuseurs \u00e0 roseaux parfum\u00e9s.", "site_name": "OLI &amp; EVE"}
\ No newline at end of file
added data/enrich_cache/olishishtaouk.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "olishishtaouk.com", "logo_url": "https://olishishtaouk.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/olivesetgourmandises.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "olivesetgourmandises.com", "logo_url": "https://olivesetgourmandises.com/cdn/shop/files/Favicon-round-background.png?crop=center&height=32&v=1701804722&width=32", "cover_url": "http://olivesetgourmandises.com/cdn/shop/files/OLIVES-2290-1100x733.jpg?v=1687378369&width=1024", "description_meta": "Nous offrons \u00e0 notre client\u00e8le de l&#39;huile d&#39;olive vierge extra de qualit\u00e9, des huiles d&#39;olive et des vinaigres balsamiques aromatis\u00e9es naturellement, des m\u00e9langes d&#39;\u00e9pices exclusifs ainsi que des accessoires-cuisines. Nous avons aussi \u00e9norm\u00e9ment de recettes sur notre site pour vous aider \u00e0 cuisiner avec nos produits.", "site_name": "Olives et gourmandises"}
\ No newline at end of file
added data/enrich_cache/olofee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "olofee.com", "logo_url": "https://www.olofee.com/web/image/website/1/favicon?unique=64338aa", "cover_url": "https://fermeolofee.odoo.com/web/image/website/1/logo?unique=7ab749e", "description_meta": "This is the homepage Depuis 1974, la Ferme Olof\u00e9e cultive et transforme des c\u00e9r\u00e9ales avec passion. De la terre \u00e0 l\u2019assiette, nous produisons de l\u2019avoine pour nourrir les humains et les animaux du Qu\u00e9bec.of the website", "site_name": "Ferme Olof\u00e9e"}
\ No newline at end of file
added data/enrich_cache/olymel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "olymel.com", "logo_url": "https://www.olymel.com/favicon/apple-touch-icon.png", "cover_url": "https://a-ca.storyblok.com/f/2000580/1080x1080/108b997309/assiette_05-2x.png/m/1200x630/smart", "description_meta": "Pour des repas prot\u00c3\u00a9in\u00c3\u00a9s et nutritifs, les viandes Olymel sont le meilleur choix. D\u00c3\u00a9couvrez notre gamme de produits et laissez-vous inspirer par nos recettes!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/omdumassif.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "omdumassif.com", "logo_url": "https://static.wixstatic.com/media/2d8f7f_2eff7ccf51154a72b8fd4bed600353e7%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/2d8f7f_2eff7ccf51154a72b8fd4bed600353e7%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/omerto.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "omerto.com", "logo_url": "https://omerto.com/wp-content/uploads/2017/05/cropped-icon-180x180.png", "cover_url": "https://omerto.com/wp-content/uploads/2017/04/O4.png", "description_meta": "NOS PRODUITS OMERTO en Bouche ! NOS RECETTES Omerto en Cuisine ! NOS NOUVELLES O\u00f9 d\u00e9couvrir nos PRODUITS Saviez-vous qu&rsquo;il y a plusieurs fa\u00e7ons de vous procurer les produits Omerto? En ligne, \u00e0 la SAQ et chez certains \u00e9piciers de votre r\u00e9gion. En savoir plus On parle de NOUS Omerto a gagn\u00e9 les plus fins&hellip;", "site_name": "Omerto"}
\ No newline at end of file
added data/enrich_cache/omycosmetics.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "omycosmetics.com", "logo_url": "https://omycosmetics.com/cdn/shop/files/favicon_32x32.png?v=1684962123", "cover_url": null, "description_meta": "Personalized skincare tailored to your skin\u2019s unique needs, with visible results in 28 days. Dermatologist tested and made in Canada.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ondesign.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ondesign.ca", "logo_url": "https://ondesign.ca/css/img/favicon.png", "cover_url": "https://ondesign.ca/css/img/facebook-img.jpg", "description_meta": "La Cr\u00e9ation \u00e0 Votre Service\u00a0! LUMINAIRE SUR MESURE AVEC VOTRE IMAGE ET FORME !! \u00a0 WRAPPING\u00a0 \u00a0 \u00c9clairer votre image au DEL\u00a0!\u00a0 VOUS POUVEZ FAIRE IMPRIMER VOTRE PROPRE IMAGE ! \u00a0 Murale grand format d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/onibi.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "onibi.ca", "logo_url": "https://onibi.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/onquata.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "onquata.com", "logo_url": "https://onquata.com/cdn/shop/files/ONQUATA_stamp_noir_32x32.png?v=1664636800", "cover_url": "http://onquata.com/cdn/shop/files/logo1_1200x1200.jpg?v=1657846592", "description_meta": "Entre plein air, d\u00e9cor et tradition, le duo m\u00e8re-fille passionn\u00e9 d&#39;Onquata cr\u00e9e des pagaies inspir\u00e9es \u00e0 la fois de l&#39;art autochtone et de la nature dans un design tout \u00e0 fait contemporain.", "site_name": "Onquata"}
\ No newline at end of file
added data/enrich_cache/onyxsurlefleuve.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "onyxsurlefleuve.com", "logo_url": "https://l.icdbcdn.com/oh/73d69f62-367d-4d4d-801d-92e30eedda1a.png?w=32&amp;h=32&amp;mode=crop&amp;f=32&amp;type=favicon", "cover_url": "https://l.icdbcdn.com/oh/1fd77a44-0047-49ca-a8cb-f6fcd1962a46.jpg?w=1200", "description_meta": "ONYX-SUR-LE-FLEUVE | Chalet \u00c3\u00a0 louer avec spa Charlevoix", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ooyainfusions.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ooyainfusions.com", "logo_url": "https://static.wixstatic.com/media/f11037_59c7ad05040949dba372d530af7dc91c%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/f11037_59c7ad05040949dba372d530af7dc91c%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/opanier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "opanier.com", "logo_url": "https://opanier.com/cdn/shop/files/PANIER_O_PANIER_noir_22.png?crop=center&height=32&v=1689191016&width=32", "cover_url": "http://opanier.com/cdn/shop/files/LOGO_O_PANIER_noir-22.png?height=628&pad_color=ffffff&v=1685110318&width=1200", "description_meta": "O! PANIER se sp\u00e9cialise dans la fabrication d&#39;ensembles cadeaux (paniers, bo\u00eetes, coffrets, sacs et baluchons) contenant des produits du terroir.", "site_name": "O! PANIER"}
\ No newline at end of file
added data/enrich_cache/oquaidesbrasseurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oquaidesbrasseurs.com", "logo_url": "https://oquaidesbrasseurs.com/wp-content/themes/starting-point-child/favicon/android-icon-192x192.png", "cover_url": null, "description_meta": "De la bonne bi\u00e8re brass\u00e9e sur place, un resto sympa et d\u00e9contract\u00e9, une terrasse avec vue sur le fleuve, des \u00e9v\u00e9nements qui groovent et nos produits qui sont maintenant disponibles \u00e0 plusieurs points de vente, bref, \u00d4 quai des brasseurs, c\u2019est le paradis quoi!", "site_name": "\u00d4 Quai des Brasseurs"}
\ No newline at end of file
added data/enrich_cache/oralscience.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oralscience.com", "logo_url": "https://oralscience.com/wp-content/uploads/cropped-frame-1-1-180x180.png", "cover_url": null, "description_meta": "Our\u2028Latest Innovations PerioMonitor Rapid, Non-Invasive, Saliva-Based Test Discover Papac\u00e1rie Duo Papain Gel for Caries Removal Discover X-PUR Gummiz Delicious Therapeutic Gummiz Shop Woodpecker PT-B Mini Your New Air Polisher Shop Protocols See all protocols Recommend to your Patients Get your Recommendation Tools Latest news Explore all posts Join our newsletter", "site_name": "Oral Science"}
\ No newline at end of file
added data/enrich_cache/orangebistro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "orangebistro.com", "logo_url": "https://orangebistro.com/wp-content/uploads/2024/04/favicon-meow-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/oravito.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oravito.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/65edf4895d55cd696bea6dc8/cf1df3e5-476d-48a0-b138-037adacb13b0/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/65edf4895d55cd696bea6dc8/t/6a090fd12f25bc70929691a8/1778978769992/logo+rectangle+canva.png?format=1500w", "description_meta": "Savourez des menus brunch gourmands et \u00e9quilibr\u00e9s dans notre restaurant sant\u00e9 \u00e0 L\u00e9vis. O", "site_name": "O"}
\ No newline at end of file
added data/enrich_cache/order.koomi.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "order.koomi.com", "logo_url": "https://order.koomi.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/orera.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "orera.ca", "logo_url": "https://orera.ca/cdn/shop/files/ICONE_orera_couleur_RGB.png?crop=center&height=32&v=1784505032&width=32", "cover_url": "http://orera.ca/cdn/shop/files/orera_light_byline_5913c0ed-a1e1-424f-b1d1-f8ce782e9e98.png?v=1784069075", "description_meta": "Natural eco-luxury face and body care products made in Quebec: natural soaps, shampoo bars, and gentle, eco-responsible, and cruelty-free body care products.", "site_name": "OR\u00c9RA"}
\ No newline at end of file
added data/enrich_cache/originegravure.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "originegravure.ca", "logo_url": "https://originegravure.ca/img/favicon.ico?1686323203", "cover_url": null, "description_meta": "Origine Gravure sp\u00e9cialiste du bijoux personnalis\u00e9s , gravure et choix de pierre de naissance,aper\u00e7u en direct de votre bijou. Que ce soit pour une bague ou un pendentif personnalis\u00e9 venez voir notre boutique..", "site_name": null}
\ No newline at end of file
added data/enrich_cache/orpailleur.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "orpailleur.ca", "logo_url": "https://orpailleur.ca/cdn/shop/files/Favicon_48_x_48_px_0fed8720-0397-4b7b-91e6-af5853f0b8ed.png?crop=center&height=32&v=1731702994&width=32", "cover_url": "http://orpailleur.ca/cdn/shop/files/Vignoble_RGB_8cd94713-f3cc-4eb9-baad-fe854cf742ed.png?height=628&pad_color=ffffff&v=1675796033&width=1200", "description_meta": "PIONNIERS DE LA VITICULTURE AU QU\u00c9BEC Le Vignoble de l\u2019Orpailleur, c\u2019est la grande aventure de quatre passionn\u00e9es qui ont plant\u00e9 leurs racines en 1982 dans le magnifique terroir de Dunham, berceau de la viticulture au Qu\u00e9bec.", "site_name": "Vignoble de l&#39;Orpailleur"}
\ No newline at end of file
added data/enrich_cache/orthofab.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "orthofab.com", "logo_url": "https://orthofab.com/favicon.png", "cover_url": null, "description_meta": "Depuis 1988, Orthofab met \u00e0 votre service une \u00e9quipe multidisciplinaire exp\u00e9riment\u00e9e et d\u00e9di\u00e9e accompagnant vos besoins de mobilit\u00e9, de posture et d&rsquo;aide aux transferts et ce, partout au Qu\u00e9bec. \u00c0 partir de l&rsquo;\u00e9coute de vos besoins jusqu&rsquo;\u00e0 votre enti\u00e8re satisfaction, notre \u00e9quipe vous accompagne dans toutes les \u00e9tapes visant \u00e0 am\u00e9liorer votre qualit\u00e9 de vie.", "site_name": "Orthofab"}
\ No newline at end of file
added data/enrich_cache/orviande.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "orviande.com", "logo_url": "https://www.orviande.com/wp-content/uploads/2020/12/cropped-Orviande_favicon-180x180.png", "cover_url": null, "description_meta": "Fond\u00e9e en 1979, Orviande est la r\u00e9f\u00e9rence en transformation de viande de porc au Qu\u00e9bec. D\u00e9couvrez notre histoire et nos services.", "site_name": "Orviande"}
\ No newline at end of file
added data/enrich_cache/osburn-mfg.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "osburn-mfg.com", "logo_url": "https://www.osburn-mfg.com/assets/Osburn/img/icon/apple-touch-icon.png", "cover_url": null, "description_meta": "D&#233;couvrez notre gamme d&#39;appareils de chauffage de qualit&#233; sup&#233;rieure fabriqu&#233;s au Canada - po&#234;les, encastrables et foyers &#224; bois. Au-del&#224; du feu.", "site_name": "Osburn"}
\ No newline at end of file
added data/enrich_cache/oscar-robotics.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oscar-robotics.com", "logo_url": "https://static.wixstatic.com/media/071ab5_6f4d377ba061452bb03a537fa641cb46%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/071ab5_6f4d377ba061452bb03a537fa641cb46%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/osekb.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "osekb.com", "logo_url": "https://kbcosmetiques.com/cdn/shop/files/logo-kb-icone_32x32.png?v=1614347919", "cover_url": "https://cdn.shopify.com/s/files/1/0445/1840/8346/files/KB_cosmetiques_-_LOGO_Officiel_Carre.png?height=628&pad_color=ffffff&v=1614349892&width=1200", "description_meta": "Produits haut de gamme de soins du visage (SOIE), de maquillage (OSE!) et de soins corporels (SPORTEK), abordables et fabriqu\u00e9es au Canada.", "site_name": "KB Cosmetiques"}
\ No newline at end of file
added data/enrich_cache/otentikfoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "otentikfoods.com", "logo_url": "https://otentikfoods.com/wp-content/uploads/2026/02/cropped-favicon-180x180.png", "cover_url": "https://otentikfoods.com/wp-content/uploads/2024/09/cyrches-bouillon-sauce.jpg", "description_meta": "Depuis plus de 40 ans, Aliments Otentik transforme chaque repas en une exp\u00e9rience culinaire exceptionnelle. Nos produits d\u00e9shydrat\u00e9s sans gluten allient le meilleur du go\u00fbt, de la qualit\u00e9 et de la simplicit\u00e9.", "site_name": "Aliments Otentik"}
\ No newline at end of file
added data/enrich_cache/ouimanon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ouimanon.com", "logo_url": "https://ouimanon.com/cdn/shop/files/Oui-Manon---Favicon_32x32.png?v=1614097545", "cover_url": null, "description_meta": "Pour ta m\u00e8re, ton p\u00e8re, ta cousine, ton fr\u00e8re, ta BFF, les futurs parents, pour d\u00e9clarer ton amour, ou yienque pour dire COUCOU! J\u2019ai plein de belles affaires cuties, funky, des fois un peu nounounes!", "site_name": "Oui Manon"}
\ No newline at end of file
added data/enrich_cache/outlook.live.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "outlook.live.com", "logo_url": "https://outlook.live.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ouwahstore.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ouwahstore.com", "logo_url": "https://img1.wsimg.com/isteam/ip/0e1c8829-7b52-461a-9a1f-9404ab8a868b/Ouwah%20Store%20logo.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/0e1c8829-7b52-461a-9a1f-9404ab8a868b/12771785_1727219754164821_9213950052098305276_.jpg", "description_meta": "Chisasibi QC\n\n\u1516\u1525 \u1410\u1431\u14a1 \u14c2\u146d \u14c5\u146f\u1426\u1456\u14c8\u14d0 \u1491\u1480\u14d0 \u1491 \u148c \u1419\u1419\u1431\u1426\u144e\u14ab\u1484 \u146d\u152e\u1426 \u1491 \u148c \u1405\u144e\u14c2\u1491\u152e\u1484\u166e\n\n\u140a\u1403, \u1450\u1675\u14f1\u148b\u1466.", "site_name": "Ouwah Store"}
\ No newline at end of file
added data/enrich_cache/ovenbakedtradition.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ovenbakedtradition.com", "logo_url": "https://www.ovenbakedtradition.com/wp-content/uploads/2026/06/Favicon_OBT_16X16.svg", "cover_url": "https://www.ovenbakedtradition.com/wp-content/uploads/2021/04/oven-baked-tradition.png", "description_meta": "D\u00e9couvrez Oven-Baked Tradition une entreprise Canadienne qui fabrique la meilleure nourriture pour chiens et chats au Qu\u00e9bec.", "site_name": "Oven-Baked Tradition"}
\ No newline at end of file
added data/enrich_cache/overthehillorchards.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "overthehillorchards.ca", "logo_url": "https://overthehillorchards.ca/wp-content/uploads/2024/01/cropped-OTHO-Fav-180x180.png", "cover_url": null, "description_meta": null, "site_name": "Over the Hill Orchards &amp; Winery"}
\ No newline at end of file
added data/enrich_cache/ovitro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ovitro.com", "logo_url": "https://ovitro.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/owlypacks.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "owlypacks.com", "logo_url": "https://owlypacks.com/favicon.ico", "cover_url": null, "description_meta": "Repoussez les limites de vos exp\u00e9riences voyage avec notre sac-\u00e0-dos modulable et notre tente-hamac. 100% modulables, ils s&#39;int\u00e8grent parfaitement l&#39;un \u00e0 l&#39;autre pour r\u00e9pondre aux besoins de tous types d\u2019aventuriers. La meilleure fa\u00e7on de voyager, c&#39;est la v\u00f4tre! Cr\u00e9ez votre sac \u00e0 dos sur mesure et \u00e9vadez-vous!", "site_name": "Owly Packs"}
\ No newline at end of file
added data/enrich_cache/oxymoremicrobrasserie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "oxymoremicrobrasserie.com", "logo_url": "https://cdn.prod.website-files.com/637d82fa0f1d1857f0ac4571/63c88cd3c9d419ea4d4b277f_Webclip.png", "cover_url": null, "description_meta": "Une entreprise de proximit\u00e9, impliqu\u00e9e et enracin\u00e9e qui revisite des bi\u00e8res classiques d\u2019un peu partout sur le globe avec des ingr\u00e9dients locaux.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ozerosolutions.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ozerosolutions.com", "logo_url": "https://ozerosolutions.com/wp-content/uploads/2022/01/Favicon-Ozero.png", "cover_url": null, "description_meta": "Les stations de lavage libre-service d\u2019Ozero offrent un nettoyage int\u00e9rieur et ext\u00e9rieur complet en moins de 8 minutes, aidant \u00e0 pr\u00e9venir la propagation des esp\u00e8ces aquatiques envahissantes aux rampes de mise \u00e0 l\u2019eau. D\u00e9j\u00e0 adopt\u00e9es par plus de 86 municipalit\u00e9s canadiennes.", "site_name": "Ozero Solutions | Stations de lavage pour bateaux"}
\ No newline at end of file
added data/enrich_cache/pacini.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pacini.com", "logo_url": "https://pacini.com/apple-touch-icon.png", "cover_url": null, "description_meta": "D\u00e9couvrez les restaurants PACINI et savourez une cuisine italienne authentique : pizzas, p\u00e2tes, antipasti et desserts. Une exp\u00e9rience conviviale vous attend.", "site_name": "Restaurants italiens PACINI"}
\ No newline at end of file
added data/enrich_cache/padocacuisine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "padocacuisine.com", "logo_url": "https://padocacuisine.com/cdn/shop/files/favicon_32x32.png?v=1616547036", "cover_url": "https://cdn.shopify.com/s/files/1/0512/8021/6236/files/logo_c8612efa-3dc3-481e-8e89-37916a113f33.png?height=628&pad_color=fdf6f0&v=1616546726&width=1200", "description_meta": "On vous pr\u00e9pare des menus hebdomadaires, avec des plats diff\u00e9rents pour vous offrir des choix int\u00e9ressants et savoureux pour le d\u00eener comme pour le souper. Des recettes simples et cr\u00e9atives. Avec Padoca, vous pouvez mieux planifier votre semaine, manger des produits diff\u00e9rents, \u00e9conomiser du temps et de l\u2019argent.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/paellamarisol.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paellamarisol.com", "logo_url": "https://paellamarisol.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pagproduitsalimentaires.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pagproduitsalimentaires.com", "logo_url": "https://www.pagproduitsalimentaires.com/wp-content/uploads/2026/04/cropped-favicon-180x180.png", "cover_url": "https://www.pagproduitsalimentaires.com/wp-content/uploads/2026/04/tarte-simonne-1.png", "description_meta": "Fabricant qu\u00e9b\u00e9cois de tourti\u00e8res, p\u00e2t\u00e9s, cretons, sauces et tartes traditionnelles. Produits authentiques du Saguenay pour d\u00e9taillants et distributeurs.", "site_name": "Pag"}
\ No newline at end of file
added data/enrich_cache/painatartine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "painatartine.com", "logo_url": "https://painatartine.com/wp-content/uploads/2023/11/cropped-cropped-2019logo-1-180x180.png", "cover_url": "https://painatartine.com/wp-content/uploads/2026/05/PATrichardsuicide.jpeg", "description_meta": "Pain \u00e0 Tartine ou PAT est LA boulangerie P\u00e2tisserie ARTISANALE 100% farines biologiques \u00e0 la Fran\u00e7aise du VILLAGE de Montr\u00e9al.", "site_name": "Pain A Tartine - Une boulangerie p\u00e2tisserie 100% farines bios"}
\ No newline at end of file
added data/enrich_cache/palmyra.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "palmyra.ca", "logo_url": "http://palmyra.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pandoetco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pandoetco.ca", "logo_url": "https://pandoetco.ca/cdn/shop/files/Avec_cercle.png?crop=center&height=32&v=1696422758&width=32", "cover_url": "http://pandoetco.ca/cdn/shop/files/bougie-huile-essentielle-9oz-pando-et-co-19-_1.webp?v=1767814106", "description_meta": "Savourez le bien-\u00eatre avec nos produits tous confectionn\u00e9s \u00e0 la main et au Qu\u00e9bec. Offrez-vous un moment de bien-\u00eatre naturel avec Pando &amp; Co : beurres corporels fouett\u00e9s, lotions, eaux de corps, sels de bain, cr\u00e8mes \u00e0 mains et bougies de soja.", "site_name": "Pando &amp; co"}
\ No newline at end of file
added data/enrich_cache/panier.erabliere-cheminduroy.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "panier.erabliere-cheminduroy.qc.ca", "logo_url": "https://panier.erabliere-cheminduroy.qc.ca/wp-content/uploads/2021/02/12744009_1257184980977484_7388457974074599787_n.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/panierdachat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "panierdachat.com", "logo_url": "https://www.panierdachat.com/wp-content/themes/panierdachat2016/images/favicons/apple-touch-icon.png", "cover_url": "https://www.panierdachat.com/wp-content/uploads/2019/09/lgo1.png", "description_meta": "Cr\u00e9ez votre site e-commerce et commencez \u00e0 vendre en ligne en quelques minutes gr\u00e2ce \u00e0 la plateforme e-commerce qu\u00e9b\u00e9coise Panierdachat.", "site_name": "Panierdachat"}
\ No newline at end of file
added data/enrich_cache/paniernature-lanaudiere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paniernature-lanaudiere.com", "logo_url": "https://paniernature-lanaudiere.com/images/Logos/apple-touch-icon.png", "cover_url": "http://paniernature-lanaudiere.com/images/Logos/LOGO-ferme236x100.png", "description_meta": "Panier Nature offre des cours et ateliers afin de favoriser la sant\u00e9, pr\u00e9server l", "site_name": "Panier Nature Lanaudi\u00e8re"}
\ No newline at end of file
added data/enrich_cache/paniersbiosaguenay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paniersbiosaguenay.com", "logo_url": "https://paniersbiosaguenay.com/favicon.ico", "cover_url": "https://paniersbiosaguenay.com/wp-content/uploads/2022/01/20210607_141502-scaled.jpg", "description_meta": null, "site_name": "Paniers Bio Saguenay.com"}
\ No newline at end of file
added data/enrich_cache/pantouflemouton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pantouflemouton.com", "logo_url": "https://www.pantouflemouton.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pantouflesgarneau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pantouflesgarneau.com", "logo_url": "https://ateliergarneau.ca/cdn/shop/files/favicon-32x32.png?crop=center&height=194&v=1720470621&width=194", "cover_url": "http://ateliergarneau.ca/cdn/shop/files/Pantoufles_Garneau_J1-41-Edit.jpg?v=1773774376&width=1200", "description_meta": "Achetez les Pantoufles Garneau faites \u00e0 la main au Qu\u00e9bec, Canada. Nos pantoufles et mules de mouton pour femmes, hommes et enfants sont confortables et de haute qualit\u00e9.", "site_name": "Atelier Garneau"}
\ No newline at end of file
added data/enrich_cache/paoma.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paoma.ca", "logo_url": "https://paoma.ca/cdn/shop/files/Paoma_favicon-96x96_32x32.png?v=1613733929", "cover_url": "https://cdn.shopify.com/s/files/1/0028/0697/2475/files/Logo-PAOMA-coul-Texte-Bilingue.png?height=628&pad_color=ffffff&v=1775588821&width=1200", "description_meta": "Le store magn\u00e9tique PAOMA est la solution pour habiller la fen\u00eatre sans devoir la percer. En tissu et compos\u00e9 d\u2019un syst\u00e8me d\u2019aimants, sans corde ni attaches, le store offre un look soign\u00e9 et s\u2019adapte aux dimensions de la fen\u00eatre. D\u00e9couvrez nos stores magn\u00e9tiques, une solution simple et efficace.", "site_name": "Store Magn\u00e9tique Paoma"}
\ No newline at end of file
added data/enrich_cache/paperole.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paperole.com", "logo_url": "https://cdn.shopify.com/s/files/1/1368/1017/files/favicon.png?v=1602365450", "cover_url": "https://cdn.shopify.com/s/files/1/1368/1017/files/Logo-Paperole-200-px.png?v=1614874958", "description_meta": "Paperole is a Montr\u00e9al-based publisher and a gallery shop which highlights contemporary illustration and graphic art through local and international artists. We create playful stationery, posters, paper goods and accessories : greeting cards, postcards, notebooks, t-shirts, bags.", "site_name": "Paperole"}
\ No newline at end of file
added data/enrich_cache/papeteriecie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "papeteriecie.ca", "logo_url": "https://static.wixstatic.com/ficons/ba2cd3_f04720264c974255ac7dec73ad4861d7%7Emv2.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/papeteriesaintgilles.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "papeteriesaintgilles.com", "logo_url": "https://papeteriesaintgilles.com/wp-content/uploads/2021/09/cropped-favicon-180x180.png", "cover_url": "https://papeteriesaintgilles.com/wp-content/uploads/2024/02/PSG-Carriere-1024x1024.png", "description_meta": "La Papeterie Saint-Gilles | \u00c9conomus\u00e9e du papier est une entreprise de fabrication artisanale de papiers fait main \u00e0 visiter dans la r\u00e9gion de Charlevoix.", "site_name": "Papeterie Saint-Gilles"}
\ No newline at end of file
added data/enrich_cache/papieretlatte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "papieretlatte.com", "logo_url": "https://papieretlatte.com/cdn/shop/files/PapierLatteBrandPieces_Legacy-05_32x32.png?v=1614874448", "cover_url": "http://papieretlatte.com/cdn/shop/files/20220227_125054-01_a96340c9-88a3-47d8-aee4-542e8f785e48.webp?v=1744925350", "description_meta": "Organiser son temps, sans le perdre! Papier &amp; Latt\u00e9 est une boutique de papeterie sp\u00e9cialis\u00e9e. Agendas, planificateurs, cahiers, notes, autocollants et tout ce qu&#39;il vous faut pour \u00eatre bien structur\u00e9. Nos produits sont faits en papier recycl\u00e9 \ud83e\udd0d\u2615.", "site_name": "Papier &amp; Latt\u00e9"}
\ No newline at end of file
added data/enrich_cache/papillonc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "papillonc.ca", "logo_url": "https://www.papillonc.ca/wp-content/uploads/2023/03/cropped-favicon512x512-180x180.jpg", "cover_url": "https://www.papillonc.ca/wp-content/uploads/2025/03/MISSION2_800x600.jpg", "description_meta": "Designer graphique \u00e0 Drummondville, Carole Gu\u00e9rard cr\u00e9e logos, brochures et affichage grand format. Appelez pour un appel d\u00e9couverte.", "site_name": "PapillonC"}
\ No newline at end of file
added data/enrich_cache/papoumpapoum.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "papoumpapoum.ca", "logo_url": "https://papoumpapoum.ca/cdn/shop/files/Logo_Papoum_Papoum_-NOIR_32x32.png?v=1679447320", "cover_url": "https://cdn.shopify.com/s/files/1/0044/1997/7288/files/Logo_Papoum-BRUN-Mai2021.png?height=628&pad_color=fff&v=1628513520&width=1200", "description_meta": "Papoum papoum offers a range of handmade bamboo and organic cotton cuddly toys hand-made in Quebec. Smiles and sweetness guaranteed for your baby.", "site_name": "papoumpapoum"}
\ No newline at end of file
added data/enrich_cache/paradisdesfruits.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paradisdesfruits.com", "logo_url": "https://www.paradisdesfruits.com/wp-content/uploads/2021/05/cropped-logo-jpg-PDF-2004-petit-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/paradisdulacnairne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paradisdulacnairne.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/e1a1d8_3b8be466349f4c86ad09af979f7073b0%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/e1a1d8_3b8be466349f4c86ad09af979f7073b0%7Emv2.jpg", "description_meta": "Profitez pleinement des activit\u00e9s de la r\u00e9gion de Charlevoix, et venez vous d\u00e9tendre au Paradis du Lac Nairne! Chalet enti\u00e8rement \u00e9quip\u00e9 pouvant accommoder jusqu\u2019\u00e0 8 personnes.", "site_name": "PARADIS LAC NAIRNE"}
\ No newline at end of file
added data/enrich_cache/paramedic-canada.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paramedic-canada.com", "logo_url": "https://paramedic-canada.com/cdn/shop/files/favicon-32x32.png?v=1772626290&width=32", "cover_url": null, "description_meta": null, "site_name": "Paramedic Canada"}
\ No newline at end of file
added data/enrich_cache/parcelineceramique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "parcelineceramique.com", "logo_url": "https://parcelineceramique.com/cdn/shop/files/Small-pottery-mug-with-handle-handmade-in-Montreal-Canada_32x32.jpg?v=1746811987", "cover_url": "https://parcelineceramique.com/cdn/shop/files/Small-pottery-mug-with-handle-handmade-in-Montreal-Canada_84484b8d-c26e-4153-a2ec-08fe712849cc_1200x800.jpg?v=1740754106", "description_meta": "Pottery objects handmade in Montreal, Canada. Ceramic coffee mugs, bowls, pottery planters... Unique and modern dinnerware for every home.", "site_name": "Parceline"}
\ No newline at end of file
added data/enrich_cache/parcmarin.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "parcmarin.qc.ca", "logo_url": "https://parcmarin.qc.ca/wp-content/uploads/2024/12/cropped-favicon-e1729518452387-300x300.png", "cover_url": "https://parcmarin.qc.ca/wp-content/uploads/2026/01/Perso_PetitRorqual_ThomasCadilhac_modif.jpg", "description_meta": "D\u00e9couvrez le parc marin du Saguenay\u2013Saint-Laurent : activit\u00e9s, observation des baleines, r\u00e9glementation et lieux \u00e0 visiter.", "site_name": "Parc marin du Saguenay\u2013Saint-Laurent"}
\ No newline at end of file
added data/enrich_cache/paruresophelia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "paruresophelia.com", "logo_url": "https://www.paruresophelia.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/67421a1d6ee94460b0b667e9/t/68ed1e9a08f758576997943d/1760370330273/7b44964f-4536-4fb2-b3c9-354451dff6da.jpg?format=1500w", "description_meta": null, "site_name": "Parrures pour Bottes et Bottillons OPH\u00c9LIA"}
\ No newline at end of file
added data/enrich_cache/passion-epicee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "passion-epicee.ca", "logo_url": "https://passion-epicee.ca/assets/favicon.png", "cover_url": "https://passion-epicee.ca/assets/og-image.jpg", "description_meta": "Passion Epic\u00c3\u00a9e | Notre sauce est un m\u00c3\u00a9lange soign\u00c3\u00a9 de piments m\u00c3\u00bbrs, de nectar d", "site_name": "Passion Epic\u00c3\u00a9e"}
\ No newline at end of file
added data/enrich_cache/passiondici.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "passiondici.com", "logo_url": "https://www.passiondici.com/favicon.ico?fv=DBB2E7D8EA19A9C1285F3B44DE6CE6FA", "cover_url": null, "description_meta": "Fier promoteur des produits alimentaires locaux, Passion d\u2019ici repr&#233;sente une vingtaine de producteurs qu&#233;b&#233;cois et nous assurons la distribution de ces produits gourmets dans plus de 700 points de vente, partout au Qu&#233;bec.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/passionherbale.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "passionherbale.ca", "logo_url": "https://passionherbale.ca/cdn/shop/files/logo_fleur1x1_a71e7831-d299-441a-919c-b53615ce5535_32x32.png?v=1615840563", "cover_url": "https://cdn.shopify.com/s/files/1/2410/6821/files/104x41.png?v=1668611240", "description_meta": "Cosm\u00e9tiques 100% naturels fabriqu\u00e9s au Qu\u00e9bec, sans cruaut\u00e9 animale. \u00c0 base d&#39;ingr\u00e9dients biologiques. Produits de haute qualit\u00e9, frais et locaux. V\u00e9gans et naturels.", "site_name": "Passion Herbale Cosm\u00e9tiques naturels"}
\ No newline at end of file
added data/enrich_cache/pastacoloccia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pastacoloccia.com", "logo_url": "https://static.wixstatic.com/media/166149_c8a3e98a55f545b9a1714438b7959c48%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/166149_c8a3e98a55f545b9a1714438b7959c48%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pastadeli.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pastadeli.ca", "logo_url": "https://pastadeli.ca/ws/media-library/d7216c8b20334a2f89f71fd5d8c865a1/pastarond.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pastificio.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pastificio.ca", "logo_url": "https://pastificio.ca/wp-content/uploads/2024/02/cropped-Pastificio-WebTabIcon-180x180.jpg", "cover_url": "https://pastificio.ca/wp-content/uploads/2020/01/nos-pates.jpg", "description_meta": "Pastificio Sacchetto produit chaque jour les sp\u00e9cialit\u00e9s de la maison : ravioli et tortellini au fromage ou \u00e0 la viande, medaglioni farci \u00e0 la ricotta et au veau, et bien plus encore\u2026", "site_name": "Pastificio Sacchetto"}
\ No newline at end of file
added data/enrich_cache/pasumecha.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pasumecha.ca", "logo_url": "https://pasumecha.ca/favicon.ico", "cover_url": "http://pasumecha.ca/cdn/shop/files/Pasumecha_Salsa_Macha_Logo_Packaging_Design_Montreal-2_copy_195d87c2-03a7-498d-96ba-e49fbf582719.jpg?v=1781557608", "description_meta": "Savourez une salsa macha unique inspir\u00e9e du Mexique et fabriqu\u00e9e au Qu\u00e9bec. Disponible en version douce, \u00e9rable et \u00e9pic\u00e9e. Livraison partout au Canada.", "site_name": "Pasumecha"}
\ No newline at end of file
added data/enrich_cache/patatesdolbec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "patatesdolbec.com", "logo_url": "https://patatesdolbec.com/wp-content/uploads/2018/02/logo-300x149.png", "cover_url": null, "description_meta": "Patates Dolbec est une entreprise familiale qui a su se tailler une place dans la culture de la pomme de terre. Un mod\u00e8le d&#039;entreprise.", "site_name": "Patates Dolbec"}
\ No newline at end of file
added data/enrich_cache/pate2000.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pate2000.com", "logo_url": "https://pate2000.com/wp-content/uploads/2017/11/cropped-favicon_512-180x180.png", "cover_url": null, "description_meta": "Les Aliments 2000 offrent une vari\u00e9t\u00e9 de p\u00e2tes pour simplifier la vie des petits et grands chefs. Plusieurs formats de p\u00e2tes \u00e0 tarte ou \u00e0 pizza, ainsi que des sauces \u00e0 pizza sont vendus en supermarch\u00e9 sous le marque P\u00e2tes 2000.", "site_name": "P\u00e2te 2000"}
\ No newline at end of file
added data/enrich_cache/patelin.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "patelin.ca", "logo_url": "https://patelin.ca/owebo-votresite/sites/default/files/images/Patelin-LogoVerticalSansTexture-Noir-RGB.jpg", "cover_url": "https://patelin.ca/sites/default/files/images/Patelin-LogoVerticalAvecTexture-Renverse-RGB.jpg", "description_meta": "Tr\u00e8s en vogue en ce moment, elles sont riches en om\u00e9ga-3 et om\u00e9ga-6, deux bons gras essentiels pour la sant\u00e9 !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/patisserieduquette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "patisserieduquette.com", "logo_url": "https://patisserieduquette.com/wp-content/uploads/2024/06/cropped-duquette-favicon-180x180.png", "cover_url": null, "description_meta": "Choisissez, personnalisez et commandez en ligne! G\u00e2teaux, mousses, entremets, tartes, biscuits, beignes et bien plus encore!", "site_name": "P\u00e2tisserie Duquette"}
\ No newline at end of file
added data/enrich_cache/patisserieladouche.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "patisserieladouche.com", "logo_url": "https://patisserieladouche.com/wp-content/uploads/2020/11/cropped-favicon-v2-192x192.jpg", "cover_url": null, "description_meta": null, "site_name": "P\u00e2tisserie Ladouche"}
\ No newline at end of file
added data/enrich_cache/patisseriestnoel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "patisseriestnoel.com", "logo_url": "https://patisseriestnoel.com/wp-content/uploads/2023/04/Patisserie-St-Noel-Logo.svg", "cover_url": null, "description_meta": "De notre table \u00e0 la v\u00f4tre ! La P\u00e2tisserie St\u2010No\u00ebl est une histoire de famille, qui depuis ses d\u00e9buts en 1981, connait une progression constante qui se perp\u00e9tue dans le temps.Sa mission premi\u00e8re est de produire et d\u2019offrir \u00e0 sa client\u00e8le cinq saveurs de p\u00e2t\u00e9s diff\u00e9rents ainsi que des lasagnes de qualit\u00e9, comme si c\u2019\u00e9tait", "site_name": "P\u00e2tisserie St-No\u00ebl - P\u00e2t\u00e9s, mets pr\u00e9par\u00e9s et desserts"}
\ No newline at end of file
added data/enrich_cache/patrickmorin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "patrickmorin.com", "logo_url": "https://patrickmorin.com/media/favicon/stores/1/favicon-120_2.jpg", "cover_url": null, "description_meta": "Les Centres de R\u00e9novation Patrick Morin: une gamme de plus de 40 000 produits de quincaillerie, r\u00e9novation, d\u00e9coration et mat\u00e9riaux de construction.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/patrolevis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "patrolevis.com", "logo_url": "https://static.wixstatic.com/media/870b12_b298111f31744b64aeaee1e423a96797%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/870b12_b298111f31744b64aeaee1e423a96797%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pattremblayhumoriste.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pattremblayhumoriste.com", "logo_url": "https://pattremblayhumoriste.com/wp-content/uploads/2026/05/cropped-logo-01v2-180x180.png", "cover_url": null, "description_meta": "Patrick Tremblay Conf\u00e9rencier Coach d\u2019humour Auteur J\u2019accompagne les \u00e9quipes et les organisations \u00e0 utiliser l\u2019humour comme un v\u00e9ritable levier de performance, de cr\u00e9ativit\u00e9 et de bien-\u00eatre.\r\nDes conf\u00e9rences dynamiques, interactives et", "site_name": "PATRICK TREMBLAY - Conf\u00e9rencier, coach d&#039;humour, auteur"}
\ No newline at end of file
added data/enrich_cache/pausematic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pausematic.com", "logo_url": "https://cdn.prod.website-files.com/58e3ba3a3ff6c0165602a9ad/59a56f06275ea2000133be1c_256x256.png", "cover_url": "https://cdn.prod.website-files.com/58e3ba3a3ff6c0165602a9ad/59a5b5b9f42ee100010f3a66_pausematic_share.jpg", "description_meta": "Caf\u00e9, collations et machines distributrices pour les entreprises, la restauration et l&#x27;h\u00f4tellerie au Saguenay-Lac-St-Jean. Service hors-pair, essayez-nous!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/pawpat.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pawpat.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/6cf72462-947e-47b5-887c-805b4d4d3ab6/InvisiBOTTE_Header.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/6cf72462-947e-47b5-887c-805b4d4d3ab6/blob-1688d20.png", "description_meta": "PawPat est une pommade naturelle \u00e0 base de cire d&#x27;abeille, de beurre de karit\u00e9 et d&#x27;huiles nutritives, faite pour entretenir et soigner les coussinets chiens.", "site_name": "PawPat"}
\ No newline at end of file
added data/enrich_cache/peabodyfarm.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "peabodyfarm.ca", "logo_url": "https://peabodyfarm.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/5b6cdb5e50a54f72c7621687/t/6a011c6692de6f1bf0f8bb70/1778457702629/Peabody+Farm+logo+v7+final.png?format=1500w", "description_meta": "Peabody Farm raises heritage pigs, hosts seasonal Markets, Farm to Table Dinners and fundraisers for our community.", "site_name": "Ferme Peabody Farm - Pature raised pork"}
\ No newline at end of file
added data/enrich_cache/peachandcream.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "peachandcream.com", "logo_url": "https://peachandcream.com/cdn/shop/files/Logo_pictos-03.png?crop=center&height=32&v=1674857066&width=32", "cover_url": "https://peachandcream.com/cdn/shop/files/peachandcreamfallback.jpg?v=1755036344", "description_meta": "peach & cream: intimate and body care products made in canada. personal lubricants, massage candles, vibrators, and vulva balm. body-safe, fragrance-free, and designed for everyone.", "site_name": "peach and cream \u00ae"}
\ No newline at end of file
added data/enrich_cache/peakbwa.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "peakbwa.com", "logo_url": "https://peakbwa.com/favicon.ico", "cover_url": "http://peakbwa.com/cdn/shop/files/logo-peakbwa_0850eb0b-c7b1-4460-9988-656df8ede80d.png?v=1700767653", "description_meta": "Peakbwa makes sustainable clothes for babies and kids here in Canada. We design our own patterns with Canada&amp;#39;s nature in mind. Our grow with me baby &amp;amp; kids clothes can be worn years saving you lots of money. Our clothes are made with recycled or natural fabrics such as bamboo and organic cotton. Happier moms &amp;a", "site_name": "Peakbwa"}
\ No newline at end of file
added data/enrich_cache/pearsonboutique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pearsonboutique.com", "logo_url": "https://www.pearsonboutique.com/uploads/b/92229d00-dc34-11ea-8a91-7b6b83fa0cbb/icon_180x180_ios_MjI3OT.png?width=180", "cover_url": null, "description_meta": null, "site_name": "Pearson - Comptoir gourmet et chocolats fins"}
\ No newline at end of file
added data/enrich_cache/peasejewelry.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "peasejewelry.com", "logo_url": "https://peasejewelry.com/favicon.ico", "cover_url": "https://media.peasejewelry.com/2026/06/CM-065-scaled.jpg", "description_meta": "Bijoux minimalistes, l\u00e9gers et confortables, fabriqu\u00e9s \u00e0 la main au Qu\u00e9bec. Offrez des bijoux personnalis\u00e9es comme cadeau unique pour elle.", "site_name": "Bijoux Pease | Pease Jewelry"}
\ No newline at end of file
added data/enrich_cache/pecheriemanicouagan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pecheriemanicouagan.com", "logo_url": "https://pecheriemanicouagan.com/favicon.ico", "cover_url": null, "description_meta": "Wholesaler of fish and seafood: Whelks, Stimpson\u2019s Surf Clams, Greenland Turbot, snow crab, etc.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/pecheriesgaspesiennes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pecheriesgaspesiennes.com", "logo_url": "https://pecheriesgaspesiennes.com/wp-content/uploads/favicon-02.png", "cover_url": "https://pecheriesgaspesiennes.com/wp-content/uploads/ImageDePartage-01.jpg", "description_meta": "De la mer \u00e0 votreassiette depuis 1983! Nos produits Poissons Crustac\u00e9s Mollusques L&rsquo;usine https://pecheriesgaspesiennes.com/dev/wp-content/uploads/PlansUsineVisuelWeb-02.mp4 Depuis 1983, \u00e0 Rivi\u00e8re-au-Renard en Gasp\u00e9sie, Les P\u00eacheries Gasp\u00e9siennes est une entreprise familiale ancr\u00e9e dans le domaine de la p\u00eache. L\u2019entreprise assure le d\u00e9barquement, la transformation, le fumage, le salage et le", "site_name": "Les P\u00eacheries Gasp\u00e9siennes"}
\ No newline at end of file
added data/enrich_cache/pechesmoutons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pechesmoutons.com", "logo_url": "https://static.wixstatic.com/media/1819a5_572708de3cbc46baa20993648d8b5306%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1819a5_572708de3cbc46baa20993648d8b5306%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pedaludique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pedaludique.com", "logo_url": "https://pedaludique.com/favicon.ico", "cover_url": "http://pedaludique.com/cdn/shop/files/pedaludique_1200x1200.png?v=1728477783", "description_meta": "D\u00e9couvrez notre s\u00e9lection de tableaux de routine et d&#39;apprentissage de la propret\u00e9, con\u00e7us au Qu\u00e9bec pour favoriser le d\u00e9veloppement de votre enfant. Nouveaut\u00e9: des jeux \u00e9ducatifs en 2025 !", "site_name": "P\u00e9daludique"}
\ No newline at end of file
added data/enrich_cache/peinturelaurentide.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "peinturelaurentide.com", "logo_url": "https://peinturelaurentide.com/wp-content/uploads/2020/10/cropped-peinture_laurentide_favicon-180x180.png", "cover_url": "https://peinturelaurentide.com/wp-content/uploads/2025/10/PL588_PL_GrenatPourpre_SW-scaled.jpg", "description_meta": "Fabricant de peintures depuis plus de 70 ans, Peinture Laurentide est fi\u00e8re d\u2019offrir une expertise in\u00e9gal\u00e9e et des produits de grandes qualit\u00e9s.", "site_name": "Peinture Laurentide"}
\ No newline at end of file
added data/enrich_cache/peinturesmf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "peinturesmf.com", "logo_url": "https://www.peinturesmf.com/wp-content/uploads/2019/03/cropped-favicon1-180x180.png", "cover_url": "https://www.peinturesmf.com/wp-content/uploads/2021/10/mf_image_partage-1.png", "description_meta": "Peintures MF fabrique des peintures au latex, \u00e0 l&#039;epoxy et bien plus. Nos produits sont d\u00e9velopp\u00e9s, fabriqu\u00e9s et distribu\u00e9s au Qu\u00e9bec depuis 1967.", "site_name": "Peintures MF"}
\ No newline at end of file
added data/enrich_cache/penega.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "penega.com", "logo_url": "https://www.penega.com/penega/favicon/apple-touch-icon.png", "cover_url": "https://www.penega.com/penega/images/seo/fr/penega_agence-marketing-communication.jpg", "description_meta": "Nous concevons des images marque fortes. Nous produisons des vid\u00e9os (d)\u00e9tonnantes. Nous d\u00e9veloppons des outils Web intuitifs.", "site_name": "Penega, agence de communication et de marketing"}
\ No newline at end of file
added data/enrich_cache/penelopeclinique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "penelopeclinique.com", "logo_url": "https://penelopeclinique.com/owebo-votresite/sites/default/files/images/P-penelope.png", "cover_url": "https://penelopeclinique.com/sites/default/files/images/PENELOPE_CLINIQUE_DEPUIS_LOGO_VF.png", "description_meta": "Clinique de per\u00e7age et boutique de bijoux corporels \u00e0 Saint J\u00e9r\u00f4me: perceurs exp\u00e9riment\u00e9s, bijoux corporels haut de gamme en or et en titane.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/penseesauvagedestacy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "penseesauvagedestacy.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pepiniereborealis.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pepiniereborealis.com", "logo_url": "https://www.pepiniereborealis.com/favicon.ico", "cover_url": "https://www.pepiniereborealis.com/uploads/2/5/9/6/25960689/published/logo-paint.png?1501026111", "description_meta": "P\u00e9pini\u00e8re Borealis est un entreprise situ\u00e9 sur la rue Mathias \u00e0 Jonqui\u00e8re . Elle est sp\u00e9cialis\u00e9e dans le production et la vente de vivaces, arbres fruitiers, arbustes et petits-fruits. Elle offre de la terre, engrais etc..", "site_name": "P&eacute;pini&egrave;re Borealis"}
\ No newline at end of file
added data/enrich_cache/pepiniereducerneau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pepiniereducerneau.com", "logo_url": "https://pepiniereducerneau.com/assets/images/favicon-96x96.png", "cover_url": "https://pepiniereducerneau.com/content/pepiniereducerneau-share.png", "description_meta": "Arbres &agrave; noix naturalis&eacute;s au Saguenay&ndash;Lac-Saint-Jean r&eacute;pertorier, multiplier, et diss&eacute;miner nos arbres &agrave; noix naturalis&eacute;s au Saguenay-Lac-Saint-Jean demeurent les objectifs premiers de la P&eacute;pini&egrave;re du Cerneau.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/pepinierevilleneuve.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pepinierevilleneuve.com", "logo_url": "https://i0.wp.com/pepinierevilleneuve.com/wp-content/uploads/2025/03/cropped-Icone-site-web.png?fit=180%2C180&#038;ssl=1", "cover_url": null, "description_meta": "Une jardinerie vous offrant une vaste vari\u00e9t\u00e9s de v\u00e9g\u00e9taux, d&#039;accessoires de jardin, accompagn\u00e9 des meilleurs sp\u00e9cialistes dans le domaine.", "site_name": "Jardinerie Villeneuve"}
\ No newline at end of file
added data/enrich_cache/pepsico.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pepsico.ca", "logo_url": "https://www.pepsico.ca/assets/images/icons/favicons/favicon-512.png", "cover_url": "http://www.pepsico.ca/assets/images/logos/pepsico-og-image.png", "description_meta": null, "site_name": "Canada"}
\ No newline at end of file
added data/enrich_cache/perce-verre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "perce-verre.com", "logo_url": "https://www.perce-verre.com/wp-content/uploads/2020/03/favicon.png", "cover_url": "https://www.perce-verre.com/wp-content/uploads/2023/11/www.perce-verre.com-perce-verre-og-image.png", "description_meta": "Cadeaux artisanaux qu\u00e9b\u00e9cois, \u0153uvres d\u00e9coratives, bijoux et cr\u00e9ations en verre fusionn\u00e9 fabriqu\u00e9s \u00e0 la main dans les Laurentides. Des pi\u00e8ces uniques pour r\u00e9pandre la joie et la couleur.", "site_name": "Perc\u00e9-Verre"}
\ No newline at end of file
added data/enrich_cache/perecanuel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "perecanuel.com", "logo_url": "https://www.perecanuel.com/cdn/shop/files/Produits_FPC-09.jpg?crop=center&height=32&v=1761014227&width=32", "cover_url": "http://www.perecanuel.com/cdn/shop/files/banniere-Facebook-Pere-Canuel-1200-X-630_710c8122-0751-4119-9a57-15c78701b4d1.png?v=1761332134", "description_meta": "Contribuer \u00e0 notre autonomie alimentaire de fa\u00e7on \u00e9clat\u00e9, savoureuse et pleine de sens", "site_name": "La fermenterie du p\u00e8re Canuel"}
\ No newline at end of file
added data/enrich_cache/perenormand.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "perenormand.ca", "logo_url": "https://perenormand.ca/owebo-votresite/sites/default/files/images/favicon-votresite.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pero-qc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pero-qc.com", "logo_url": "https://pero-qc.com/cdn/shop/files/Pero_v2.jpg?crop=center&height=32&v=1649343861&width=32", "cover_url": "http://pero-qc.com/cdn/shop/files/88355a15-a15f-4c31-a12e-a0a131e95b0e.jpg?v=1742388019", "description_meta": "Hand painted creations on porcelain, stainless or glass pieces by Pero. Unique and colorful collection created in my workshop in Gatineau, Quebec. Great hostess gift ideas, for retirement, wedding, teacher! A creation to offer yourself or to offer! Also lots of eco-friendly possibilities.", "site_name": "Pero"}
\ No newline at end of file
added data/enrich_cache/perodam.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "perodam.com", "logo_url": "https://static.wixstatic.com/media/1cbcb1_112982c57d634e3bbc0966d995a3fe19%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1cbcb1_112982c57d634e3bbc0966d995a3fe19%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/1cbcb1_1f998108f55544bd960c247fb857a7ef~mv2.jpg/v1/fill/w_2500,h_3750,al_c/1cbcb1_1f998108f55544bd960c247fb857a7ef~mv2.jpg", "description_meta": "Perodam est une microbrasserie solidaire situ\u00e9e \u00e0 l\u2019\u00cele Perrot. Nous brassons au fil des saisons et au gr\u00e9 des r\u00e9coltes pour les insulaires et tou.tes les autres qui passent par l\u00e0.", "site_name": "Perodam"}
\ No newline at end of file
added data/enrich_cache/perrotsweetmaple.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "perrotsweetmaple.com", "logo_url": "https://perrotsweetmaple.com/cdn/shop/files/LogoTransparent_32x32.png?v=1613727810", "cover_url": "http://perrotsweetmaple.com/cdn/shop/files/LogoTransparent_a271f491-60d1-4060-ada8-68a668e02d7e_1200x1200.png?v=1630562415", "description_meta": "Organic maple products and maple sugar stickpacks/packets. Made from pure maple syrup. Produits d&#39;\u00e9rable et sucre d&#39;\u00e9rable de qualit\u00e9 certifi\u00e9s biologiques. Fabriqu\u00e9 \u00e0 partir de sirop d&#39;\u00e9rable pur du Qu\u00e9bec.", "site_name": "Perrot Sweet Maple"}
\ No newline at end of file
added data/enrich_cache/perspective.beer.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "perspective.beer", "logo_url": "https://perspective.beer/wp-content/uploads/2020/12/cropped-iconic-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/peterbilt.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "peterbilt.com", "logo_url": "https://www.peterbilt.com/favicon.ico", "cover_url": null, "description_meta": "Peterbilt manufactures world-class, industry-leading diesel and electric trucks right here in America for every application from long-hauling to local delivery.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/petitbrule.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "petitbrule.ca", "logo_url": "https://petitbrule.ca/apple-touch-icon.png", "cover_url": "https://petitbrule.ca/images/fb-og-default.png", "description_meta": "Petit Br\u00fbl\u00e9 \u2013 Ferme \u00e9cologique propose un retour aux sources moderne pour red\u00e9finir l\u2019agriculture d\u2019aujourd\u2019hui et de demain. Prenez part au mouvement!", "site_name": "Petit Brul\u00e9"}
\ No newline at end of file
added data/enrich_cache/petitchaperonrouge.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "petitchaperonrouge.ca", "logo_url": "https://petitchaperonrouge.ca/wp-content/uploads/2020/11/Petit-Chaperon-Rouge-fav120.png", "cover_url": "https://petitchaperonrouge.ca/wp-content/uploads/2020/12/Facebook_PetitChaperon.png", "description_meta": "Rehaussez le go\u00fbt de vos viandes, charcuteries et fromages avec nos d\u00e9licieux produits. Confits d&#039;oignons, gel\u00e9es, chutneys, confitures et accompagnements.", "site_name": "Produits Le Petit Chaperon Rouge inc."}
\ No newline at end of file
added data/enrich_cache/petite-cabane.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "petite-cabane.com", "logo_url": "https://www.petite-cabane.com/wp-content/uploads/2026/01/illuminati-1-300x300.png", "cover_url": null, "description_meta": "Portal berita teori konspirasi terbaru tentang berita terkini, riset, dan analisis mendalam seputar teori konspirasi di berbagai belahan dunia.", "site_name": "PETITE-CABANE"}
\ No newline at end of file
added data/enrich_cache/petiteriviere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "petiteriviere.com", "logo_url": "https://www.petiteriviere.com/favicon.ico", "cover_url": "https://www.petiteriviere.com/wp-content/uploads/2021/05/Partage-FK.jpg", "description_meta": "La municipalit\u00e9 de Petite-Rivi\u00e8re-Saint-Fran\u00e7ois se donne le mandat d\u2019offrir aux citoyens un milieu de vie de qualit\u00e9 et des services vari\u00e9s en fonction des besoins de ceux-ci. La communaut\u00e9 est plac\u00e9e au centre des pr\u00e9occupations de tous les membres du conseil municipal et de tous les employ\u00e9s municipaux. Elle vise une approche proactive dans la gestion saine de ses diff\u00e9rents projets, dans la di", "site_name": "Petite Rivi\u00e8re Saint-Fran\u00e7ois"}
\ No newline at end of file
added data/enrich_cache/petitmanoirducasino.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "petitmanoirducasino.ca", "logo_url": "https://petitmanoirducasino.ca/wp-content/uploads/2025/07/logo-300x300.png", "cover_url": null, "description_meta": "Vivez Charlevoix autrement ! S\u00e9journez \u00e0 notre h\u00f4tel pr\u00e8s du Casino de Charlevoix avec spa, vue sur le fleuve, forfaits d\u00e9tente et pavillons familiaux.", "site_name": "H\u00f4tel et Pavillons Le Petit Manoir du Casino"}
\ No newline at end of file
added data/enrich_cache/petitsfreresdelacroix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "petitsfreresdelacroix.ca", "logo_url": "https://petitsfreresdelacroix.ca/fraternite-Charles-de-Foucauld_Coeur-87df877ced9042a599591c1323b0f779.gif", "cover_url": "https://assets.api.gamma.app/58lsfm1znnc8aja/screenshots/c1rxu3igbqrep6p/ifr5n7vnewee80b/slide/m-dJujryX7Q-8kBKUSyvNWmohO0", "description_meta": "+Notre famille monastique\n\nSpiritualit\u00e9\n\nVocations \n\nAu c\u0153ur de Charlevoix, un monast\u00e8re vous accueille comme si vous \u00e9tiez de la famille.\n\nH\u00f4tellerie\n\nChalets locatifs Nazareth\n\nQuoi faire ?", "site_name": null}
\ No newline at end of file
added data/enrich_cache/petitsfruitsduclocher.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "petitsfruitsduclocher.com", "logo_url": "https://petitsfruitsduclocher.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pg-m.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pg-m.ca", "logo_url": "https://www.pg-m.ca/favicon.ico", "cover_url": "https://www.pg-m.ca/wp2019/wp-content/uploads/2019/07/pgm-logo-125.png", "description_meta": "Historique\r\nL\u2019entreprise Produits de nos Grand-M\u00e8res N.D. inc. fut fond\u00e9e par Nicolas Dery en 1972. Sa mission \u00e9tait d&#039;offrir des produits alimentaires de boulangerie de qualit\u00e9 au march\u00e9 de d\u00e9tail seulement. Dix ans plus tard, M. Dery a diversifi\u00e9 les activit\u00e9s de son entreprise en y int\u00e9grant une division de conserverie. Ceci a men\u00e9 \u00e0", "site_name": "PGM"}
\ No newline at end of file
added data/enrich_cache/pharmascience.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pharmascience.com", "logo_url": "https://www.pharmascience.com/wp-content/themes/pms/dist/assets/icons/favicons/favicon-310x310.png", "cover_url": "https://www.pharmascience.com/wp-content/uploads/2021/06/PMS-Site-Pharmascience-FR.jpg", "description_meta": "Pharmascience est \u00e0 l&#039;avant-plan du march\u00e9 des m\u00e9dicaments g\u00e9n\u00e9riques, prenant en charge des patients \u00e0 travers le monde.", "site_name": "Pharmascience"}
\ No newline at end of file
added data/enrich_cache/philetfredpizzeria.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "philetfredpizzeria.com", "logo_url": "https://philetfredpizzeria.com/wp-content/uploads/2020/06/philetf_favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/phoenixportablesink.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "phoenixportablesink.com", "logo_url": "https://phoenixportablesink.com/wp-content/uploads/2021/01/Phoenix-Logo-O-avec-goutte-seulement.png", "cover_url": "https://phoenixportablesink.com/wp-content/uploads/2022/01/Group-2-1-sink.jpg", "description_meta": "PORTABLE SINKS HAND-WASH STATIONS SANITATION PRODUCTS PRODUCT IN HIGH DEMAND. ORDER YOURS TODAY! SHIPPING AVAILABLE IMMEDIATELY IN CANADA AND THE USA. FOR OTHER COUNTRIES, PLEASE...", "site_name": "Phoenix"}
\ No newline at end of file
added data/enrich_cache/piaessentials.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "piaessentials.ca", "logo_url": "https://piaessentials.ca/favicon.ico", "cover_url": null, "description_meta": "Explorez nos produits de beaut\u00e9 naturels, alliant efficacit\u00e9 et respect de l&#039;environnement pour sublimer votre routine quotidienne.", "site_name": "Pia Essentials"}
\ No newline at end of file
added data/enrich_cache/pianoew.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pianoew.com", "logo_url": "https://static.wixstatic.com/media/b6686f_ea5ecff23798487ca9cde42fd543d7c4%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/b6686f_ea5ecff23798487ca9cde42fd543d7c4%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/piashti.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "piashti.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/piebraque.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "piebraque.com", "logo_url": "https://piebraque.com/wp-content/uploads/2017/09/cropped-Logo700-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pierresdailleurs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pierresdailleurs.ca", "logo_url": "https://cdn.shoplightspeed.com/shops/619066/themes/17105/v/582089/assets/favicon.ico?20220802183748", "cover_url": "https://cdn.shoplightspeed.com/shops/619066/themes/17105/v/582086/assets/logo.png?20220802180550", "description_meta": "Boutique de pierres semi-pr\u00e9cieuses et bijoux", "site_name": "Pierres D&#039;Ailleurs"}
\ No newline at end of file
added data/enrich_cache/pikkado.com:443.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pikkado.com:443", "logo_url": "https://www.pikkado.com:443/images/touch-icon-iphone.1.png", "cover_url": "https://www.pikkado.com/images/pikkado-og-en.jpg", "description_meta": "The best free tool to organize your secret santa gift exchange. Create a group, launch the invitations, draw the names, and celebrate your success!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/pimenterlavie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pimenterlavie.com", "logo_url": "https://pimenterlavie.com/cdn/shop/files/base_icon_transparent_background.png?crop=center&height=32&v=1668271005&width=32", "cover_url": "http://pimenterlavie.com/cdn/shop/files/black_icon_white_background.png?v=1722259933", "description_meta": "D\u00e9couvrez notre fameuse recette haut de gamme de piments forts marin\u00e9s dans l&#39;huile fait \u00e0 la main.", "site_name": "Pimenter La Vie"}
\ No newline at end of file
added data/enrich_cache/pinsonniere.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pinsonniere.ca", "logo_url": "https://pinsonniere.ca/wp-content/uploads/2024/06/cropped-pinsonniere-symbol-1-180x180.png", "cover_url": "https://pinsonniere.ca/wp-content/uploads/2024/06/home-hero-scaled.jpeg", "description_meta": null, "site_name": "La Pinsonni\u00e8re"}
\ No newline at end of file
added data/enrich_cache/pintabo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pintabo.com", "logo_url": "https://pintabo.com/wp-content/uploads/2025/04/DD-2370_logo-fi36191481x260-removebg-preview.png", "cover_url": "https://www.pintabo.comwp-content/uploads/2024/11/h3-png-1.png", "description_meta": "\u00c9levage familial de pintades au Qu\u00e9bec. Achetez en ligne des pintades fra\u00eeches, \u0153ufs de pintade et produits fermiers de qualit\u00e9. Livraison disponible et vente directe \u00e0 la ferme.", "site_name": "Pintabo"}
\ No newline at end of file
added data/enrich_cache/pitcaribou.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pitcaribou.com", "logo_url": "https://pitcaribou.com/wp-content/uploads/2019/12/pit-caribou-favicon.jpg", "cover_url": null, "description_meta": null, "site_name": "Pit Caribou -"}
\ No newline at end of file
added data/enrich_cache/pitou-minou.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pitou-minou.ca", "logo_url": "https://pitou-minou.ca/wp-content/uploads/2024/01/pmc-fav-192.png", "cover_url": "https://pitou-minou.ca/wp-content/uploads/2024/01/pmc-mobile-preview-250.webp", "description_meta": "PITOU MINOU | Besoin de nourriture et accessoires, d\u00e9couvrez une vaste s\u00e9lection de produits pour tous types d&#039;animaux de compagnie.", "site_name": "Pitou Minou &amp; Compagnons"}
\ No newline at end of file
added data/enrich_cache/pixiewooshop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pixiewooshop.com", "logo_url": "https://pixiewooshop.com/cdn/shop/files/Logo_Pixie_Woo_32x32.png?v=1659732789", "cover_url": null, "description_meta": "Claw clips that actually fits you. Hair care made in Canadians labs", "site_name": "Pixie Woo Accessories"}
\ No newline at end of file
added data/enrich_cache/pizzeriamagpie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pizzeriamagpie.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5b1984b455b02c20b56ace00/4461b8a6-d425-48c9-8cce-b85a79f9d44c/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5b1984b455b02c20b56ace00/t/64e2b3503b9f5868e918a8d4/1692578640491/DSC07858.jpg?format=1500w", "description_meta": "Pizzeria Magpie offers quality artisanal pizzas baked in a wood burning oven as well as freshly made pasta &amp; delicious cocktails.", "site_name": "Pizzeria Magpie"}
\ No newline at end of file
added data/enrich_cache/placedelexpo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "placedelexpo.com", "logo_url": "https://placedelexpo.com/wp-content/uploads/2024/04/Favicon-1.png", "cover_url": "https://placedelexpo.com/wp-content/uploads/2024/01/accueil.png", "description_meta": "Explorez le March\u00e9 de l\u2019Expo \u00e0 Saint-Pascal pour savourer les d\u00e9lices du terroir local et d\u00e9couvrez l&#039;Atelier des Savoirs Desjardins, un espace d\u00e9di\u00e9 aux activit\u00e9s et conf\u00e9rences sur les savoir-faire traditionnels.", "site_name": "Place de l&#039;Expo"}
\ No newline at end of file
added data/enrich_cache/plaisirforestier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plaisirforestier.com", "logo_url": "https://plaisirforestier.com/wp-content/uploads/2026/03/Logo-100x100-1.png", "cover_url": null, "description_meta": "Champignons, plantes, fleurs et petits fruits sauvages du Qu\u00e9bec. Cueillis \u00e0 la main et s\u00e9ch\u00e9s avec soin pour un go\u00fbt authentique.", "site_name": "Plaisir Forestier"}
\ No newline at end of file
added data/enrich_cache/plaisirs-sucres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plaisirs-sucres.com", "logo_url": "https://plaisirs-sucres.com/wp-content/uploads/2018/06/cropped-plaisirs-sucres-favicon-180x180.png", "cover_url": "https://plaisirs-sucres.com/wp-content/uploads/2019/02/logo-plaisir-sucres-yoast-fb.jpg", "description_meta": "Dents sucr\u00e9es, Plaisirs Sucr\u00e9s offre de d\u00e9licieux produits d&#039;\u00e9rable sign\u00e9s Yvan Labb\u00e9! Notre sirop d&#039;\u00e9rable se distingue par sa douceur et sa saveur in\u00e9gal\u00e9es. Et notre beurre d&#039;\u00e9rable? C&#039;est notre sp\u00e9cialit\u00e9! Sa texture cr\u00e9meuse et homog\u00e8ne offre une douceur exceptionnelle.", "site_name": "Plaisirs sucr\u00e9s"}
\ No newline at end of file
added data/enrich_cache/plaisirsansfaim.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plaisirsansfaim.ca", "logo_url": "https://plaisirsansfaim.ca/favicon.ico", "cover_url": "https://plaisirsansfaim.ca/wp-content/uploads/2025/12/6-1024x1024.png", "description_meta": "C&#039;est \u00e7a du plaisir sans faim | Cr\u00e9ateur de bonheur | Cornet plaisir | Sorbet | Propager du plaisir, des rires et de la bonne humeur", "site_name": "Plaisir sans faim"}
\ No newline at end of file
added data/enrich_cache/plaisirscharpenteresquesinc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plaisirscharpenteresquesinc.com", "logo_url": "http://plaisirscharpenteresquesinc.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/plaisirsmedia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plaisirsmedia.com", "logo_url": "https://plaisirsmedia.com/wp-content/uploads/2026/07/cropped-LOGO-SITE-1-1-180x180.png", "cover_url": "https://plaisirsmedia.com/wp-content/uploads/2026/07/2.png", "description_meta": "D\u00e9couvrez un univers gourmand Bi\u00e8res, terroir, gastronomie, voyages gourmands et formations \u2014 un r\u00e9seau de m\u00e9dias ind\u00e9pendants, sans algorithme et [&hellip;]", "site_name": "Plaisirs M\u00e9dia"}
\ No newline at end of file
added data/enrich_cache/plantationstephanperreault.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plantationstephanperreault.ca", "logo_url": "https://plantationstephanperreault.ca/wp-content/uploads/2023/09/logo_perreault-300x300.png", "cover_url": "https://plantationstephanperreault.ca/wp-content/uploads/2026/05/Capture-decran-le-2026-05-19-a-10.39.11-759x1024.png", "description_meta": "Bienvenue \u00e0 notre ferme familiale ! Autocueillette, animaux miniatures, boutique et plus encore vous attendent.", "site_name": "Plantations Stephan Perreault"}
\ No newline at end of file
added data/enrich_cache/plantopi.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plantopi.com", "logo_url": "https://plantopi.com/cdn/shop/files/Plantopi.png?crop=center&height=32&v=1706851328&width=32", "cover_url": "http://plantopi.com/cdn/shop/files/Boite_Plantopi_La_dolce_vita.jpg?v=1706850298", "description_meta": "Coffrets de jardinage pr\u00eats \u00e0 planter pour r\u00e9ussir m\u00eame sans exp\u00e9rience. \u00c9coresponsables et faits au Qu\u00e9bec. Micropousses, semences et kits potager adapt\u00e9s \u00e0 la saison.", "site_name": "Plantopi"}
\ No newline at end of file
added data/enrich_cache/plateformesolidar.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plateformesolidar.com", "logo_url": "https://plateformesolidar.com/favicon.ico", "cover_url": null, "description_meta": "La plateforme bioalimentaire bor\u00e9ale solidar soutien la rel\u00e8ve agricole par l&#039;incubateur agricole bor\u00e9al et le service de L&#039;ARTERRE pour la ville de Saguenay et la MRC du Fjord-du-Saguenay. Elle soutien \u00e9galement la lutte contre l&#039;ins\u00e9curit\u00e9 alimentaire par les jardins de solidarit\u00e9, une production mara\u00eech\u00e8re dont les r\u00e9coltes sont donn\u00e9s en majorit\u00e9 \u00e0 la banque alimentaire Moisson ", "site_name": "Plateforme Solidar"}
\ No newline at end of file
added data/enrich_cache/platspreparessaguenay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "platspreparessaguenay.com", "logo_url": "https://platspreparessaguenay.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/plb-store.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plb-store.com", "logo_url": "https://plb-store.com/cdn/shop/files/logo-plb-favicon_32x32.png?v=1667252542", "cover_url": "http://plb-store.com/cdn/shop/files/plb_t-shirts_2022_plb_t-shirts_350A7019_d1f91dab-1759-4a36-b159-6940dad8605c.jpg?v=1678033403", "description_meta": "Buy Montreal and Bicycles T-shirts online PLB store. Comfortable and graphic tees for men, women and kids. High quality T- shirts made in Canada with Organic Cotton. \u2013 T shirts pour homme, femme, de coton biologique, faits au Qu\u00e9bec. V\u00eatements th\u00e9matique v\u00e9lo, et accessoires \u00e9coresponsables. Canadian-made.", "site_name": "PLB Design"}
\ No newline at end of file
added data/enrich_cache/plbint.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plbint.com", "logo_url": "https://plbint.com/wp-content/themes/plb/img/fav/light-mode/android-icon-192x192.png", "cover_url": "https://plbint.com/wp-content/uploads/2023/08/smo-index-1.jpg", "description_meta": "Manufacturier canadien de confiance sp\u00e9cialis\u00e9 en nourriture de haute qualit\u00e9 pour chiens et chats avec une distribution dans plus de 20 pays.", "site_name": "PLB International"}
\ No newline at end of file
added data/enrich_cache/pleinlassiette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pleinlassiette.com", "logo_url": "https://www.pleinlassiette.com/wp-content/uploads/2026/03/PleinlAssiette-300x300.webp", "cover_url": "https://www.pleinlassiette.com/wp-content/uploads/2026/03/PleinlAssiette.webp", "description_meta": "Plein l\u2019Assiette vous propose des techniques simples pour mieux cuisiner, \u00e9conomiser \u00e0 l\u2019\u00e9picerie et r\u00e9duire le gaspillage alimentaire au quotidien.", "site_name": "Plein l&#039;Assiette"}
\ No newline at end of file
added data/enrich_cache/plsj.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plsj.ca", "logo_url": "https://plsj.ca/wp-content/uploads/2021/02/favicon-96x96-2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/plusbeauxvillages.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "plusbeauxvillages.ca", "logo_url": "https://plusbeauxvillages.ca/wp-content/uploads/2020/04/favicon-300x300.png", "cover_url": "https://plusbeauxvillages.ca/wp-content/uploads/2024/05/cropped-logo-beaux-villages-2024-1.png", "description_meta": null, "site_name": "Association des plus beaux villages du Qu&eacute;bec"}
\ No newline at end of file
added data/enrich_cache/pochesetfils.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pochesetfils.com", "logo_url": "https://pochesetfils.com/cdn/shop/files/logo_poches-et-fils.png?v=1733328080&width=180", "cover_url": "http://pochesetfils.com/cdn/shop/files/Untitled_design_-_2024-12-04T110456.285.png?v=1733328306&width=2048", "description_meta": "Le cadeau id\u00e9al pour la f\u00eate des P\u00e8res. Plus de 80 000 Qu\u00e9b\u00e9cois ont cr\u00e9\u00e9 leur t-shirt personnalis\u00e9 avec Poches &amp; Fils. Nos t-shirts personnalis\u00e9s sont faits au Qu\u00e9bec, c\u2019est un cadeau unique pour papa et un service rapide. Commande avant le 11 juin pour le recevoir \u00e0 temps. 20% de rabais en vigueur jusqu\u2019au 21 juin.", "site_name": "Poches &amp; Fils"}
\ No newline at end of file
added data/enrich_cache/poissonneriecowie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poissonneriecowie.ca", "logo_url": "https://poissonneriecowie.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/poissonnerielachance.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poissonnerielachance.com", "logo_url": "https://www.poissonnerielachance.com/images/icones/apple_touch_57.png", "cover_url": "https://www.poissonnerielachance.com/fichiersUploadOpt/1200-0-0-0-1200-630-900f7050bf0a392f12b3fcbac491abdee3dcd9d3eefde4a5f/20200324153928-facebook.jpg", "description_meta": "L", "site_name": "Poissonnerie Donald Lachance"}
\ No newline at end of file
added data/enrich_cache/polkarsenal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "polkarsenal.com", "logo_url": "https://polkarsenal.com/app/themes/polkaarsenal/assets/img/favicon/apple-touch-icon.png", "cover_url": "https://polkarsenal.com/app/uploads/2022/03/OG.jpg", "description_meta": "N\u00e9e d\u2019une alliance entre l\u2019Agence Polka et Arsenal Web, notre firme assure un \u00e9ventail complet de services en lien avec le d\u00e9veloppement marketing et Web", "site_name": "Polka/Arsenal"}
\ No newline at end of file
added data/enrich_cache/polycultureplante.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "polycultureplante.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": "https://static.wixstatic.com/media/e906cd_2fc78665c4034cf79f208cef82566a82~mv2_d_4608_3456_s_4_2.jpg/v1/fill/w_2500,h_1875,al_c/e906cd_2fc78665c4034cf79f208cef82566a82~mv2_d_4608_3456_s_4_2.jpg", "description_meta": "Situ\u00e9e \u00e0 l", "site_name": "Monsite"}
\ No newline at end of file
added data/enrich_cache/polysleep.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "polysleep.ca", "logo_url": "https://polysleep.ca/cdn/shop/files/Polysleep_Favicon_coins_arrondi-02.png?crop=center&height=200&v=1676578143&width=200", "cover_url": "https://polysleep.ca/cdn/shop/files/OPEN_GRAPH-image-Purple_1200x630_fc5b98e3-c15d-47af-83f3-89e180c398db_1200x.png?v=1672866489", "description_meta": "The Best Memory Foam Mattress made in Canada, at an unbeatable price! Try sleeping on the Polysleep\u00ae Mattress for a 100 nights, Free Shipping and Returns.", "site_name": "Polysleep Canada"}
\ No newline at end of file
added data/enrich_cache/pommesauvage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pommesauvage.com", "logo_url": "https://pommesauvage.com/images/favicon.png", "cover_url": "https://pommesauvage.com/images/pomme-sauvage-share.jpg", "description_meta": "D\u00c3\u00a9couvrez la beaut\u00c3\u00a9 imparfaite de nos pommes sauvages", "site_name": "Cidrerie Pomme Sauvage"}
\ No newline at end of file
added data/enrich_cache/popkettlecorn.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "popkettlecorn.ca", "logo_url": "https://static.wixstatic.com/media/80e488_bbb975a1020b456faef5b5d7044c5930%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/80e488_bbb975a1020b456faef5b5d7044c5930%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/popspirit.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "popspirit.ca", "logo_url": "https://popspirit.ca/wp-content/uploads/2021/02/cropped-popspirit-favicon-180x180.png", "cover_url": "https://popspirit.ca/wp-content/uploads/2021/02/popspirit-shareimg.png", "description_meta": "Cours gratuits de yoga, ateliers bien\u00eatre, certifications planche \u00e0 pagaie (SUP) et s\u00e9jours avec les baleines. Sur terre, sur l&#039;eau et sur la route depuis 2010.", "site_name": "POP Spirit \u2013 Sur terre, sur l&#039;eau et sur la route depuis 2010"}
\ No newline at end of file
added data/enrich_cache/portneuf.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "portneuf.ca", "logo_url": "https://portneuf.ca/apple-touch-icon.png", "cover_url": "https://portneuf.ca/media/1893/pr%C3%A9fecture-vue-a%C3%A9ro.jpg?width=-1&amp;height=-1", "description_meta": "Bienvenue sur le site Web de la MRC de Portneuf, l&#39;outil incontournable pour tout conna&#238;tre sur notre territoire.", "site_name": "MRC de Portneuf"}
\ No newline at end of file
added data/enrich_cache/poseidn.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poseidn.com", "logo_url": "https://poseidn.com/cdn/shop/files/fav.webp?crop=center&height=32&v=1693807432&width=32", "cover_url": "http://poseidn.com/cdn/shop/files/Poseidn_logo_Master_1-05.png?v=1695336949", "description_meta": "The world&#39;s most unique Drink Bombs are here. Our 3D Cocktail Bombs, Hot Chocolate Bombs and Tea Bombs are as delicious as cute and easy to made! Check them out now!", "site_name": "Poseidn"}
\ No newline at end of file
added data/enrich_cache/positech.ca:443.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "positech.ca:443", "logo_url": "https://www.positech.ca:443/web/image/website/3/favicon/", "cover_url": "https://www.positech.ca:443/web/image/68388/Blue%20White%20Simple%20Financial%20Tips%20Blog%20Banner%20(2).png", "description_meta": "Positech Innovation est fier d\u2019offrir une expertise en aide technique \u00e0 la posture qui r\u00e9pond aux besoins sp\u00e9cifiques des personnes en perte d\u2019autonomie.", "site_name": "Positech Innovation Inc."}
\ No newline at end of file
added data/enrich_cache/postmediasolutions.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "postmediasolutions.com", "logo_url": "https://www.postmediasolutions.com/hubfs/cropped-black-favicon-32x32.png", "cover_url": null, "description_meta": "Promote your small or medium business with Postmedia\u2019s 110+ Canadian media brands; trusted by local audiences nationwide.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/potagerfleuridulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "potagerfleuridulac.com", "logo_url": "https://potagerfleuridulac.com/favicon.ico", "cover_url": null, "description_meta": "Le Potager Fleuri du Lac est situ\u00c3\u00a9 \u00c3\u00a0 St-Prime. L&#039;entreprise locale se sp\u00c3\u00a9cialise dans la production de fruits et de l\u00c3\u00a9gumes biologiques. Vous pouvez retrouvez nos produits biologique \u00c3\u00a0 notre kiosque \u00c3\u00a0 la ferme et via les paniers bio.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/potagermont-rouge.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "potagermont-rouge.ca", "logo_url": "https://www.potagermont-rouge.ca/uploads/b/bbd12090-6565-11e9-8fd3-c57a458aeadb/icon_180x180_ios_MTg5MT.png?width=180", "cover_url": "https://www.potagermont-rouge.ca/uploads/b/bbd12090-6565-11e9-8fd3-c57a458aeadb/Marjolaine%20et%20Philippe%20Beauregard,%20Potager%20Mont-Rouge%20Halte%20Gourmande_NTU2Mj.png", "description_meta": "Accueil", "site_name": "Potager Mont-Rouge\nHalte Gourmande"}
\ No newline at end of file
added data/enrich_cache/potageryvanhoe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "potageryvanhoe.com", "logo_url": "https://static.wixstatic.com/media/c194bd_9bb0f7daac9345eabd5e06c94c606a83%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/c194bd_9bb0f7daac9345eabd5e06c94c606a83%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/poterie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poterie.ca", "logo_url": "https://poterie.ca/cdn/shop/files/logo_poteriewlebeau_32x32.jpg?v=1613546533", "cover_url": "http://poterie.ca/cdn/shop/files/pink-petals-on-pink_1200x1200.jpg?v=1613546625", "description_meta": "Poterie tourn\u00e9e et fabriqu\u00e9e de fa\u00e7on artisanale \u00e0 Montr\u00e9al, fabricant de pot \u00e1 sirop, de beurriers breton et de pichet pour mettre les sacs \u00e0 lait, inventeur de la canette BBQ , gratte-ail et knock box,poterie du chalet,Pottery handmade in Montreal,Qu\u00e9bec,Canada by ceramists Jean-Claude Lebeau and Johanne Weilbrenner.", "site_name": "poterie weilbrenner lebeau"}
\ No newline at end of file
added data/enrich_cache/poteriedeportaupersil.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poteriedeportaupersil.com", "logo_url": "https://poteriedeportaupersil.com/favicon.ico", "cover_url": null, "description_meta": "L", "site_name": null}
\ No newline at end of file
added data/enrich_cache/poteriedesiles.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poteriedesiles.com", "logo_url": "https://maisondupotier.com/cdn/shop/files/favicon_228x228.jpg?v=1615656322", "cover_url": "https://maisondupotier.com/cdn/shop/files/IMG_E0553_a0fcc84d-5513-43c3-af27-9f9ce091bdab_1200x.jpg?v=1617022480", "description_meta": "Poterie artisanale fabriqu\u00e9e aux \u00celes-de-la-Madeleine. Visites d&#39;atelier et ateliers de peinture sur poterie. Plats de cuisine joliment d\u00e9cor\u00e9e parfaits pour vos recettes pr\u00e9f\u00e9r\u00e9es incluant des tasses en c\u00e9ramique/poterie, des bols, des vases d\u00e9coratifs, ainsi que des cocottes pour la cuisson \u00e0 la mijouteuse au four.", "site_name": "La Maison du Potier"}
\ No newline at end of file
added data/enrich_cache/poteriedestelle.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poteriedestelle.ca", "logo_url": "https://poteriedestelle.ca/favicon.ico", "cover_url": "http://poteriedestelle.ca/cdn/shop/files/SITE_IMAGE.jpg?v=1730914052", "description_meta": "Poterie d&#39;Estelle, cr\u00e9ation de poterie, cours et formations offerts selon votre niveau La mission de l\u2019atelier Poterie d&#39;Estelle est d\u2019amener une \u00e9conomie d\u2019eau vraiment consid\u00e9rable dans la pratique du jardinage et produire des belles pi\u00e8ces pour l\u2019usage de l\u2019art de la table.", "site_name": "Poterie d&#39;Estelle"}
\ No newline at end of file
added data/enrich_cache/potsdefolie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "potsdefolie.com", "logo_url": "https://potsdefolie.com/favicon.ico", "cover_url": "https://cdn.shopify.com/s/files/1/0270/8756/8950/files/Soupe_Lentilles_2.jpg?v=1606083862", "description_meta": "Pots de Folie vous offre des recettes faites \u00e0 base de produits secs de qualit\u00e9 d\u00e9j\u00e0 mesur\u00e9s et simples \u00e0 pr\u00e9parer. Cuisinez avec un brin de folie!", "site_name": "potsdefolie"}
\ No newline at end of file
added data/enrich_cache/poudrelicieux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poudrelicieux.ca", "logo_url": "https://poudrelicieux.ca/cdn/shop/files/20260129_075749_0000.png?v=1769691484&width=32", "cover_url": "http://poudrelicieux.ca/cdn/shop/files/file_00000000ca3081f891eafc077799aaa0_13b12976-64fc-4a2b-b191-5fdda42deae1.png?v=1786415723", "description_meta": "Powderlicious \u2013 Sugar-free and calorie-free drink mixes. Make bubble tea, slushies, and homemade juice in 30 seconds. Over 25 flavors!", "site_name": "Poudr\u00e9licieux"}
\ No newline at end of file
added data/enrich_cache/poulailler-urbain.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poulailler-urbain.com", "logo_url": "https://img1.wsimg.com/isteam/ip/6b22f6c5-82d0-417a-ad9b-998f6b26a6ac/IMG_2561.png/:/rs=w:180,h:180,m", "cover_url": "https://media.gettyimages.com/id/2229483264/video/brown-chicken-looking-into-the-camera-close-up-slow-motion.jpg?b=1&amp;s=640x640&amp;k=20&amp;c=DMQ4arKgEx74xyVD6A0fGxFI97RgjPVTNKS8sela6uo=", "description_meta": "poulailler, poule, poulailler de ville, poulailler urbain", "site_name": "poulailler urbain"}
\ No newline at end of file
added data/enrich_cache/poupilou.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poupilou.com", "logo_url": "https://poupilou.com/favicon.ico", "cover_url": "http://poupilou.com/cdn/shop/files/Poupilou-collection-peluches-couvertures.jpg?v=1715779118", "description_meta": "Creator of sweetness for toddlers \ud83c\udf1f Committed to well-being and eco-responsibility \ud83c\udf31\ud83e\uddf8 Welcome to the world of POUPILOU! \u2728", "site_name": "Poupilou"}
\ No newline at end of file
added data/enrich_cache/pouruninstant.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pouruninstant.ca", "logo_url": "https://pouruninstant.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/638f8bbbe895ae4359767061/t/641e7ad56e7b867a92014939/1687050869746/Sans+titre-3.png?format=1500w", "description_meta": null, "site_name": "Pour un Instant"}
\ No newline at end of file
added data/enrich_cache/pourvoiriebaiesaintecatherine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pourvoiriebaiesaintecatherine.com", "logo_url": "https://static.wixstatic.com/media/759ef0_5f4139f9763248948e36f97f524ee17f%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/759ef0_5f4139f9763248948e36f97f524ee17f%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pourvoirieclubdeshauteurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pourvoirieclubdeshauteurs.com", "logo_url": "https://static.wixstatic.com/media/46dceb_2ce46d78eca84dbbadc482a9852856dc%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/46dceb_2ce46d78eca84dbbadc482a9852856dc%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/46dceb_ec474e917085401e9667b4597354b370%7Emv2.png/v1/fit/w_2500,h_1330,al_c/46dceb_ec474e917085401e9667b4597354b370%7Emv2.png", "description_meta": "D\u00e9couvrez la Pourvoirie Club des Hauteurs, votre destination de choix pour des aventures en plein air inoubliables au c\u0153ur de la nature qu\u00e9b\u00e9coise. Profitez de nos activit\u00e9s de p\u00eache, de chasse et de plein air dans un cadre exceptionnel au c\u0153ur de Charlevoix. R\u00e9servez d\u00e8s maintenant et vivez une exp\u00e9rience authentique et m\u00e9morable.", "site_name": "Club Des Hauteurs"}
\ No newline at end of file
added data/enrich_cache/pourvoiriegaudiasfoster.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pourvoiriegaudiasfoster.com", "logo_url": "https://www.pourvoiriegaudiasfoster.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pourvoiriehumanite.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pourvoiriehumanite.com", "logo_url": "https://pourvoiriehumanite.com/favicon.ico", "cover_url": null, "description_meta": "La pourvoirie Humanit\u00e9 est reconnue pour la qualit\u00e9 de sa p\u00eache et pour sa grande diversit\u00e9 d&#039;activit\u00e9s de plein-air.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/pourvoirieraoullavoie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pourvoirieraoullavoie.com", "logo_url": "https://pourvoirieraoullavoie.com/dist/images/raoullavoie.png", "cover_url": null, "description_meta": "\u00c0 cheval entre les comt\u00e9s de Charlevoix et de Dubuc, ce territoire unique vous offre la chasse \u00e0 l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/pourvoirierogerfaucille.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pourvoirierogerfaucille.com", "logo_url": "http://pourvoirierogerfaucille.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/pourvoiriescharlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pourvoiriescharlevoix.ca", "logo_url": "https://pourvoiriescharlevoix.ca/wp-content/uploads/2026/01/cropped-favicon-180x180.png", "cover_url": "https://pourvoiriescharlevoix.ca/wp-content/uploads/2025/11/tourisme-charlevoix-og.jpg", "description_meta": "S\u00e9journer dans une pourvoirie de Charlevoix, c\u2019est s\u2019assurer d\u2019un d\u00e9paysement total en for\u00eat. Les pourvoiries de Charlevoix sont situ\u00e9 pr\u00e8s de Qu\u00e9bec.", "site_name": "Pourvoiries Charlevoix"}
\ No newline at end of file
added data/enrich_cache/poussestango.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "poussestango.ca", "logo_url": "https://poussestango.ca/favicon.ico", "cover_url": null, "description_meta": "Pousses comestibles de premi\u00e8re qualit\u00e9. Go\u00fbtez la diff\u00e9rence. Disponibles pour restaurateurs.", "site_name": "Pousse Tango"}
\ No newline at end of file
added data/enrich_cache/praliniere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "praliniere.com", "logo_url": "https://praliniere.com/cdn/shop/files/Logo-favicon-praliniere-chocolaterie-et-cremerie-quebec_32x32.png?v=1727224590", "cover_url": "http://praliniere.com/cdn/shop/files/Boutique-en-ligne-chocolat-et-bonbons-cremerie-praliniere-chocolaterie-artisanale-quebec_1200x1200.jpg?v=1727224077", "description_meta": "Chocolats artisanaux du Qu\u00e9bec depuis 1993. Bo\u00eetes cadeaux, bonbons, paniers gourmands et produits d\u2019\u00e9rable. Commandez en ligne pour une livraison rapide.", "site_name": "Pralini\u00e8re"}
\ No newline at end of file
added data/enrich_cache/pranafoods.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pranafoods.ca", "logo_url": "https://pranafoods.ca/cdn/shop/files/favicon-5_96x.png?v=1622196333", "cover_url": "https://cdn.shopify.com/s/files/1/0540/3813/4957/files/CookiesTous_01_b1405a20-09a3-4727-9049-98ab7eaad7ea.jpg?v=1774277073", "description_meta": "Discover healthy plant-based food products that nourish your body and mind at Prana Foods. Shop our selection of breakfast, snacks, baking supplies, ingredients &amp; more.", "site_name": "Prana Foods"}
\ No newline at end of file
added data/enrich_cache/premieremoisson.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "premieremoisson.com", "logo_url": "https://premieremoisson.com/assets/favicons/coast-228x228.png", "cover_url": "https://premieremoisson.com/assets/images/general-og-2019.webp", "description_meta": "Premi\u00e8re Moisson aime vous faciliter la vie ! C\u2019est pour cette raison que nous vous destinons notre site de commande en ligne.", "site_name": "Premi\u00e8re Moisson"}
\ No newline at end of file
added data/enrich_cache/pressreader.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pressreader.com", "logo_url": "https://r.prcdn.co/res/fr-fr/g3416/t523756297/2/images/touch-icon-iphone.png", "cover_url": null, "description_meta": "Digital newsstand featuring 7000+ of the world\u2019s most popular newspapers & magazines. Enjoy unlimited reading on up to 5 devices with 7-day free trial.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/prestigemapleproducts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "prestigemapleproducts.com", "logo_url": "https://prestigemapleproducts.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Prestige maple products -"}
\ No newline at end of file
added data/enrich_cache/prise.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "prise.ca", "logo_url": "https://www.prise.ca/favicon.png", "cover_url": "https://www.prise.ca/20250116_190853300_iOS.jpg?v=1749062475", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/probaclac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "probaclac.ca", "logo_url": "https://probaclac.ca/favicon.ico", "cover_url": null, "description_meta": "Probiotiques de grade pharmaceutique formul\u00e9s au Canada. Des formules cibl\u00e9es pour chaque profil de sant\u00e9 : adultes, enfants, voyageurs, sant\u00e9 f\u00e9minine et conditions cibl\u00e9es.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/produitdelaferme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitdelaferme.com", "logo_url": "https://produitdelaferme.com/favicon.png", "cover_url": null, "description_meta": "Je d\u00e9couvre les produits du terroir de la R\u00e9gion de Coaticook (Cantons-de-l\u2019Est) \u00e0 travers des producteurs et transformateurs dynamiques.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/produitdelerable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitdelerable.com", "logo_url": "https://produitdelerable.com/cdn/shop/t/2/assets/favicon.png?v=8", "cover_url": null, "description_meta": "Produits de l&#39;\u00c9rable St-Ferdinand B - Sucre d\u2019\u00e9rable, P\u00e9pites d\u2019\u00e9rable, Sirop d\u2019\u00e9rable, Tire d\u2019\u00e9rable, Produits de l\u2019\u00e9rable", "site_name": "Produit de l&#39;\u00e9rable St-Ferdinand B"}
\ No newline at end of file
added data/enrich_cache/produitsapothicaire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitsapothicaire.com", "logo_url": "https://www.produitsapothicaire.com/cdn/shop/files/Favicon_709d00fe-adec-461c-a8ab-0af130547a02.jpg?crop=center&height=32&v=1683677618&width=32", "cover_url": "http://www.produitsapothicaire.com/cdn/shop/files/pA_mS.png?v=1730291943", "description_meta": "Produits de soins pour homme, que ce soit pour la barbe, la moustache, le nettoyage et des accessoires de rasage.", "site_name": "Produits Apothicaire"}
\ No newline at end of file
added data/enrich_cache/produitsdantan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitsdantan.com", "logo_url": "https://produitsdantan.com/wp-content/themes/produitsdantan/images/favicon/android-icon-192x192.png", "cover_url": null, "description_meta": "This is an example page. It&rsquo;s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this: Hi there! I&rsquo;m a bike messenger [&hellip;]", "site_name": "Les Produits d&#039;Antan"}
\ No newline at end of file
added data/enrich_cache/produitsducap.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitsducap.com", "logo_url": "https://produitsducap.com/wp-content/uploads/2024/05/cropped-favicon-180x180.png", "cover_url": "https://produitsducap.com/wp-content/uploads/2024/03/visite.jpg", "description_meta": "D\u00e9couvrez nos produits de l&#039;\u00e9rable authentiques faits avec du sirop d&#039;\u00e9rable biologique. Le Domaine du Cap, c&#039;est un domaine \u00e0 visiter et des produits du terroir \u00e0 savourer.", "site_name": "Domaine du Cap"}
\ No newline at end of file
added data/enrich_cache/produitserablesirop.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitserablesirop.ca", "logo_url": "https://www.produitserablesirop.ca/icone/android-icon-192x192.png", "cover_url": "https://www.produitserablesirop.ca/favImage.png", "description_meta": "Achats ventes produit sous-produits sirop erable de Mirabel cabane a sucre La Sucrerie Huot producteur de sirop d erable troisieme generation fabrication des sous-produits pain de sucre, bouchees formes feuilles en sucre, tire d erable, beurre d erable Mirabel, Saint-Colomban, Sainte-Therese, Rosemere", "site_name": "Fabrication production vente sirop erable Mirabel Sucrerie Huot"}
\ No newline at end of file
added data/enrich_cache/produitsgodbout.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitsgodbout.com", "logo_url": "https://produitsgodbout.com/cdn/shop/files/logo.png?crop=center&height=32&v=1761855134&width=32", "cover_url": "http://produitsgodbout.com/cdn/shop/files/logo.png?height=628&pad_color=ffffff&v=1761855134&width=1200", "description_meta": "Produits Godbout", "site_name": "Produits Godbout"}
\ No newline at end of file
added data/enrich_cache/produitshorizon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitshorizon.com", "logo_url": "https://produitshorizon.com/wp-content/uploads/2024/04/cropped-cropped-site-image-180x180.jpg", "cover_url": "https://produitshorizon.com/wp-content/uploads/2024/04/Open-Graph-Produits-Horizon-FR-.jpg", "description_meta": "D\u00e9couvrez des produits de qualit\u00e9 pour vos aventures en plein air, chasse et p\u00eache. Bas\u00e9s au Qu\u00e9bec, nous sommes votre partenaire id\u00e9al pour l&#039;\u00e9quipement de qualit\u00e9.", "site_name": "Produits Horizon"}
\ No newline at end of file
added data/enrich_cache/produitslamartine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitslamartine.ca", "logo_url": "https://produitslamartine.ca/wp-content/uploads/2020/01/cropped-logo-produits-la-martine-180x180.png", "cover_url": null, "description_meta": "Situ\u00e9e dans un d\u00e9cor pittoresque au c\u0153ur de la nature \u00e0 Saint-Romain, \u00e0 mi-chemin entre Montr\u00e9al et Qu\u00e9bec en Estrie, \u00e0 seulement une heure de Sherbrooke.Venez d\u00e9guster un repas qui fera honneur \u00e0 nos fameuses recettes d\u2019autrefois, tout en \u00e9tant revisit\u00e9es au go\u00fbt du jour avec formule apportez vos consommations.Tous sont unanimes, on adore les vinaigrettes, sauces, ketchups et marinades maison (to", "site_name": "Produits la Martine"}
\ No newline at end of file
added data/enrich_cache/produitslepine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitslepine.com", "logo_url": "https://produitslepine.com/favicon.ico", "cover_url": null, "description_meta": "Fabricant et distributeur de produits d\u2019entretien m\u00e9nager performants de grande qualit\u00e9 pour client\u00e8le commerciale et industrielle. Accessoires et \u00e9quipements.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/produitstaouk.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitstaouk.ca", "logo_url": "https://www.produitstaouk.ca/favicon-512x512.png", "cover_url": null, "description_meta": "Taouk est une entreprise de transformation alimentaire sp\u00e9cialis\u00e9e dans la vente en gros de produits faits maison au Qu\u00e9bec.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/produitstapp.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitstapp.com", "logo_url": "https://static.wixstatic.com/media/84eac4_f5f01f89373d4186ab05108be466cd42%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/84eac4_f5f01f89373d4186ab05108be466cd42%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/produitszinda.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "produitszinda.ca", "logo_url": "https://produitszinda.ca/wp-content/uploads/2019/10/favicon.png", "cover_url": null, "description_meta": "Notre priorit\u00e9 est la satisfaction de notre client\u00e8le. D\u00e9couvrez nos gammes de Couscous, Couscous Perl\u00e9, Quinoa, certifi\u00e9 Aliments du Qu\u00e9bec %", "site_name": "Les Produits Zinda"}
\ No newline at end of file
added data/enrich_cache/progelcanada.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "progelcanada.com", "logo_url": "https://progelcanada.com/favicon.ico", "cover_url": null, "description_meta": "Les compresses r\u00e9utilisables chaudes froides PRO-GEL\u2122\u00a0permettent de soulager efficacement les br\u00fblures, les entorses et les inflammations musculaires. Elles appaisent rapidement&hellip;", "site_name": "PRO-GEL&trade;"}
\ No newline at end of file
added data/enrich_cache/progres.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "progres.ca", "logo_url": "https://progres.ca/favicon.ico", "cover_url": "https://progres.ca/wp-content/uploads/2025/01/flat-grey-transparent-cropped.png", "description_meta": "Maximisez votre RS&amp;DE, cartographiez et optimisez vos processus de fabrication, effectuez un exercice de planification strat\u00e9gique avec les experts de Progr\u00e8s Conseils.", "site_name": "Progr\u00e8s Conseils"}
\ No newline at end of file
added data/enrich_cache/projetvertical.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "projetvertical.com", "logo_url": "https://projetvertical.com/favicon.ico", "cover_url": "https://projetvertical.com/wp-content/themes/projetvertical/img/og-facebook.jpg", "description_meta": "Projet Vertical organise des activit\u00e9s de via ferrata, de tyrolienne et d\u2019escalade. L\u2019\u00e9quipe de guides professionnels accompagne les passionn\u00e9s d\u2019aventure \u00e0 travers leur Projet vertical via la montagne \u00ae. Marque d\u00e9pos\u00e9e au Canada.", "site_name": "Projet vertical | via ferrata, tyrolienne et escalade"}
\ No newline at end of file
added data/enrich_cache/projexmedia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "projexmedia.com", "logo_url": "https://projexmedia.com/web/wp-content/uploads/2020/12/fav120-ProjexMedia2.png", "cover_url": "https://projexmedia.com/web/wp-content/uploads/2021/10/fbk-ProjexMedia-1.png", "description_meta": "Agence de Magog sp\u00e9cialis\u00e9e en conception de sites Web. Nous sommes experts en r\u00e9f\u00e9rencement SEO et nous h\u00e9bergeons vos sites Internet.", "site_name": "Projex Media"}
\ No newline at end of file
added data/enrich_cache/propur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "propur.com", "logo_url": "https://propur.com/app/uploads/2023/03/cropped-favicon-propur-180x180.png", "cover_url": "https://propur.com/app/uploads/2023/08/og-image-propur.jpg", "description_meta": "D\u00e9couvrez plus de 25 familles d\u2019agriculteurs produisant des pommes de terre de semence, de table, de transformation et des producteurs-emballeurs.", "site_name": "Propur"}
\ No newline at end of file
added data/enrich_cache/ptitbonheur.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ptitbonheur.org", "logo_url": "https://ptitbonheur.org/wp-content/themes/ptitbo2020/assets/images/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ptitmarchedeschenaux.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ptitmarchedeschenaux.org", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/publoursnoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "publoursnoir.com", "logo_url": "https://www.publoursnoir.com/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/purdelys.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "purdelys.com", "logo_url": "https://purdelys.com/wp-content/uploads/2024/09/cropped-cropped-favicon-180x180.png", "cover_url": "https://purdelys.com/wp-admin/admin-ajax.php?action=rank_math_overlay_thumb&id=6043&type=purdelys&hash=4a5930be1e85c60ce3637cf4d99c5a1d", "description_meta": "Chez PurD\u00e9lys, nous sommes fiers de produire un vaste \u00e9ventail de fruits, l\u00e9gumes et grains biologiques, cultiv\u00e9s \u00e0 grande \u00e9chelle sur notre ferme familiale.", "site_name": "Jardins PurD\u00e9lys - \u00c9couter la nature, cultiver bio"}
\ No newline at end of file
added data/enrich_cache/purodoralab.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "purodoralab.com", "logo_url": "https://purodoralab.com/favicon.ico", "cover_url": null, "description_meta": "\u00c9liminez compl\u00e8tement les mauvaises odeurs \u00e0 la source avec notre technologie mol\u00e9culaire de neutralisation des odeurs.", "site_name": "Purodora Lab"}
\ No newline at end of file
added data/enrich_cache/pvspmu-bv.myshopify.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "pvspmu-bv.myshopify.com", "logo_url": "https://pvspmu-bv.myshopify.com/favicon.ico", "cover_url": null, "description_meta": "La Cache Verte", "site_name": "La Cache Verte"}
\ No newline at end of file
added data/enrich_cache/qantuchocolate.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "qantuchocolate.com", "logo_url": "https://static.wixstatic.com/media/e344ce_6cdfa8bfcc754c0e8815b22756404a85%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/e344ce_6cdfa8bfcc754c0e8815b22756404a85%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/e344ce_24cbcb4e1caf4a92aa351145d59ced5f%7Emv2_d_2000_1333_s_2.jpg/v1/fit/w_2500,h_1330,al_c/e344ce_24cbcb4e1caf4a92aa351145d59ced5f%7Emv2_d_2000_1333_s_2.jpg", "description_meta": null, "site_name": "qantu"}
\ No newline at end of file
added data/enrich_cache/quaidesbulles.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "quaidesbulles.ca", "logo_url": "https://www.quaidesbulles.ca/wp-content/uploads/2017/04/Logo_QdB2012_coul.jpg", "cover_url": null, "description_meta": "Le Quai des Bulles, la savonnerie de Kamouraska, se sp\u00e9cialise dans la fabrication de savons artisanaux et de produits corporels naturels. Achat en ligne!", "site_name": "Quai des Bulles"}
\ No newline at end of file
added data/enrich_cache/qualitesummum.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "qualitesummum.ca", "logo_url": "https://qualitesummum.ca/apple-touch-icon.png", "cover_url": "https://qualitesummum.ca/medias/img/qualite-summum-share.jpg", "description_meta": "Nos fromagers se mettent au travail en fin de nuit afin de permettre une livraison matinale. Nous avons r\u00e9 invent\u00e9 la pizza \u00e0 croute farcie de fromage en grain.", "site_name": "Qualit\u00e9 Summum"}
\ No newline at end of file
added data/enrich_cache/quatret.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "quatret.ca", "logo_url": "https://quatret.ca/cdn/shop/files/4t-logo-vert.png?crop=center&height=32&v=1743604707&width=32", "cover_url": "http://quatret.ca/cdn/shop/files/Douceurs-pour-nouvelle-maman-6.png?v=1753196729", "description_meta": "Des produits produits naturels et restaurateurs pour accompagner chaque \u00e9tape de la maternit\u00e9 d\u00e8s la grossesse.", "site_name": "Quatre T"}
\ No newline at end of file
added data/enrich_cache/qublivre.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "qublivre.ca", "logo_url": "https://qublivre.ca/cdn/shop/files/favicon_32x32.png?v=1633108770", "cover_url": "http://qublivre.ca/cdn/shop/files/Histoire_de_lire_ce_qui_nous_ressemble_1200x628_5af8029f-f86b-4faa-8f14-397cdf42da59.png?v=1747240222", "description_meta": "QUB livre est une boutique en ligne qu\u00e9b\u00e9coise de livres : un vaste choix de romans, biographies, livres pratiques, essais, mangas, bandes dessin\u00e9es, livres pour enfants, etc.", "site_name": "QUB livre"}
\ No newline at end of file
added data/enrich_cache/quebec-amerique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "quebec-amerique.com", "logo_url": "https://www.quebec-amerique.com/img/favicon.ico?1777665256", "cover_url": "https://www.quebec-amerique.com/img/qa.jpg", "description_meta": "Fond\u00e9es en 1974 par Jacques Fortin, les \u00c9ditions Qu\u00e9bec Am\u00e9rique sont devenues avec les ann\u00e9es une v\u00e9ritable institution culturelle o\u00f9 la rigueur et l&#039;originalit\u00e9 sont des points d&#039;attache.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/quebeclava.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "quebeclava.com", "logo_url": "https://quebeclava.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/quebecol.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "quebecol.ca", "logo_url": "https://quebecol.ca/cdn/shop/files/favicon_32x32.png?v=1657741137", "cover_url": "http://quebecol.ca/cdn/shop/files/quebecol-image.png?v=1657741393", "description_meta": "Une distillerie, des passionn\u00e9s, et plein d&#39;id\u00e9es. Nos produits sont tous faits d&#39;alcool distill\u00e9 chez nous \u00e0 partir de pur sirop d&#39;\u00e9rable de Saint-Romain.", "site_name": "Qu\u00e9b\u00e9col"}
\ No newline at end of file
added data/enrich_cache/quinoaquebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "quinoaquebec.com", "logo_url": "https://quinoaquebec.com/images/favicon.png", "cover_url": null, "description_meta": "Quinoa du Quebec", "site_name": null}
\ No newline at end of file
added data/enrich_cache/rabotdbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rabotdbois.com", "logo_url": "https://www.rabotdbois.com/cdn/shop/files/Design_sans_titre_36_194x194_crop_center.png?v=1780317717", "cover_url": "https://cdn.shopify.com/s/files/1/0765/6937/files/Design_sans_titre_50.png?v=1785463474", "description_meta": "D\u00e9couvrez www.rabotdbois.com, l&#39;\u00e9b\u00e9niste expert des objets en bois fabriqu\u00e9s au Qu\u00e9bec: planches \u00e0 d\u00e9couper, stations de travail, mobilier sur mesure, objets promotionnels, cadeaux corporatifs tels m\u00e9dailles et troph\u00e9es, personnalisables avec gravure laser. Offrez-vous qualit\u00e9 artisanale et service client d&#39;exception.", "site_name": "Rabot D. Bois"}
\ No newline at end of file
added data/enrich_cache/rachcou.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rachcou.com", "logo_url": "https://static.wixstatic.com/media/9a87d8_0eb2e9e45c70483baeecbbdab9e2d32e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/9a87d8_0eb2e9e45c70483baeecbbdab9e2d32e%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/9a87d8_d179181b83334babae17fdc6079093ad~mv2.jpg/v1/fill/w_2500,h_2096,al_c/9a87d8_d179181b83334babae17fdc6079093ad~mv2.jpg", "description_meta": "Cache-cous de fourrure faits \u00e0 la main au Qu\u00e9bec. Con\u00e7us pour le ski, le snowboard et l", "site_name": "Rachcou"}
\ No newline at end of file
added data/enrich_cache/rachellebery.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rachellebery.ca", "logo_url": "https://www.rachellebery.ca/favicon.ico", "cover_url": "https://www.rachellebery.ca/wp-content/uploads/2021/03/image_2021_01_18T05_09_49_492Z-1-1.jpg", "description_meta": "Bienvenue aux \u00e9piceries sant\u00e9 Rachelle B\u00e9ry. Faites le plein de produits naturels, vitamines et suppl\u00e9ments. Consultez les rabais dans nos circulaires.", "site_name": "Rachelle B\u00e9ry"}
\ No newline at end of file
added data/enrich_cache/racinesboreales.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "racinesboreales.ca", "logo_url": "https://racinesboreales.ca/cdn/shop/files/favicon_racinesboreales.png?crop=center&height=48&v=1613751708&width=48", "cover_url": "http://racinesboreales.ca/cdn/shop/files/logo-racines-boreales-RGB_1200x628_ba6164f0-7c14-4372-a157-c3ead24b7f80_1200x1200.png?v=1650293598", "description_meta": "\u00c9pices bor\u00e9ales et produits du terroir nordique qu\u00e9b\u00e9cois. Poivre des dunes, m\u00e9lilot, myrique baumier, champignons sauvages. Boutique en ligne, livraison partout au Qu\u00e9bec.", "site_name": "Racines bor\u00e9ales"}
\ No newline at end of file
added data/enrich_cache/radisjag.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "radisjag.com", "logo_url": "https://radisjag.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/radnor.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "radnor.ca", "logo_url": "https://radnor.ca/favicon.ico", "cover_url": "https://radnor.ca/assets/img/radnor-logo.png", "description_meta": "Plusieurs formats pour r\u00c3\u00a9pondre \u00c3\u00a0 vos besoins \nRadnor, la reine des eaux \nD\u00c3\u00a9couvrez notre gamme&nbsp;\nde fontaines distributrices Nous livrons !Service r\u00c3\u00a9sidentiel, commercial et industriel \nQuel est", "site_name": "Radnor"}
\ No newline at end of file
added data/enrich_cache/raisinsbiovital.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "raisinsbiovital.com", "logo_url": "https://raisinsbiovital.com/wp-content/uploads/2026/03/cropped-Fichier-116-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ranchst-hubert.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ranchst-hubert.ca", "logo_url": "https://static.wixstatic.com/media/2dd8b3_6e97c71c6a1541cca19afdcd8d368d52%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/2dd8b3_6e97c71c6a1541cca19afdcd8d368d52%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/rangementplus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rangementplus.com", "logo_url": "https://rangementplus.com/wp-content/themes/rangementplus/images/favicons/favicon-194x194.png", "cover_url": null, "description_meta": "Rangement Plus offre des solutions et des produits de rangement personnalis\u00e9s pour maximiser les espaces de rangement dans les r\u00e9sidences.", "site_name": "Rangement Plus"}
\ No newline at end of file
added data/enrich_cache/rangnord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rangnord.com", "logo_url": "https://www.rangnord.com/uploads/b/b1662f10-5dcd-11ec-8691-f1b58db6e859/icon_180x180_ios_NzM5Mz.png?width=180", "cover_url": "https://www.rangnord.com/uploads/b/b1662f10-5dcd-11ec-8691-f1b58db6e859/Logo%20Rang%20Nord%202023%20Vert.png", "description_meta": "Bienvenue chez Rang Nord. Cours de poterie - Boutique cadeaux c\u00e9ramique - Atelier partag\u00e9 pour c\u00e9ramistes.. bref juste du plaisir!", "site_name": "Rang Nord"}
\ No newline at end of file
added data/enrich_cache/raplapla.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "raplapla.com", "logo_url": "https://raplapla.com/cdn/shop/files/raplapla_favicon_256x256_912a0d89-1221-4a6c-a5b4-3ef8b265e075.png?crop=center&height=32&v=1749506548&width=32", "cover_url": "http://raplapla.com/cdn/shop/files/logo_raplapla.png?height=628&pad_color=fff&v=1687293622&width=1200", "description_meta": "Peluches pour b\u00e9b\u00e9s fabriqu\u00e9es \u00e0 la main \u00e0 Montr\u00e9al, dans notre atelier-boutique. Service de r\u00e9paration de jouets en tissu offert \u00e0 notre H\u00f4pital.", "site_name": "raplapla"}
\ No newline at end of file
added data/enrich_cache/raslbock.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "raslbock.com", "logo_url": "https://www.raslbock.com/apple-touch-icon.png", "cover_url": "https://www.raslbock.com/app/uploads/2022/03/ras-l-bock_thumbnail.jpg", "description_meta": "D\u00e9couvrez Ras l&#x27;bock, votre pub de bi\u00e8re artisanale au Qu\u00e9bec. Savourez nos bi\u00e8res uniques \u00e0 Saint-Jean-Port-Joli et trouvez-les en canette partout dans la p...", "site_name": null}
\ No newline at end of file
added data/enrich_cache/rawdon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rawdon.ca", "logo_url": "https://rawdon.ca/favicon.ico", "cover_url": "https://rawdon.ca/themes/rawdon/assets/medias/images/share.jpg", "description_meta": "Bienvenue&#x20;sur&#x20;le&#x20;site&#x20;officiel&#x20;de&#x20;la&#x20;municipalit&#x00E9;&#x20;de&#x20;Rawdon.&#x20;D&#x00E9;couvrez&#x20;une&#x20;municipalit&#x00E9;&#x20;forte&#x20;de&#x20;sa&#x20;diversit&#x00E9;&#x20;o&#x00F9;&#x20;il&#x20;fait&#x20;bon&#x20;vivre.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/raymeraquaculture.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "raymeraquaculture.ca", "logo_url": "https://raymeraquaculture.ca/wp-content/uploads/favicon.png", "cover_url": null, "description_meta": "L\u2019omble chevalier et l\u2019omble de fontaine \u00e9lev\u00e9s dans les bassins int\u00e9rieurs de Raymer Aquaculture sont des incontournables lorsqu\u2019il est question de qualit\u00e9 et&#8230;", "site_name": "Raymer Aquaculture"}
\ No newline at end of file
added data/enrich_cache/rebelle.club.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rebelle.club", "logo_url": "https://rebelle.club/cdn/shop/t/9/assets/logo-rebelle.svg?v=41278744722759148521785789719", "cover_url": "http://rebelle.club/cdn/shop/files/rebelle-cremeglacee.png?v=1776053595", "description_meta": "Locale, cr\u00e9ative et fi\u00e8rement d&#39;ici. D\u00e9couvrez une cr\u00e8me glac\u00e9e faite de lait 100 % canadien, sans gluten, sans arachides ni noix. Osez go\u00fbter Rebelle.", "site_name": "Cr\u00e8me Glac\u00e9e Rebelle"}
\ No newline at end of file
added data/enrich_cache/rebellesdesbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rebellesdesbois.com", "logo_url": "https://rebellesdesbois.com/cdn/shop/files/favicon_32x32.png?v=1613767489", "cover_url": "http://rebellesdesbois.com/cdn/shop/files/DSC06435_grande.jpg?v=1659457447", "description_meta": "Cr\u00e9ateur de bijoux et d&#39;objets design en bois. Fier repr\u00e9sentant de plus de 80 artisans et designers qu\u00e9b\u00e9cois depuis 2006.", "site_name": "Rebelles des Bois"}
\ No newline at end of file
added data/enrich_cache/rebon-quebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rebon-quebec.com", "logo_url": "https://rebon-quebec.com/cdn/shop/products/fav-icon.png?crop=center&height=48&v=1678908314&width=48", "cover_url": "http://rebon-quebec.com/cdn/shop/files/28194_REB_Logo_CMYK_221222_1200x1200.png?v=1677779473", "description_meta": "Savoureux et nourrissants, nos crackers craquelins ReBon comblent toutes les fringales de la journ\u00e9e et se grignotent partout, de l\u2019\u00e9cole au bureau et du pique-nique \u00e0 l\u2019ap\u00e9ro!", "site_name": "ReBon par Alice &amp; Ambre"}
\ No newline at end of file
added data/enrich_cache/recettesdici.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "recettesdici.com", "logo_url": "https://www.recettesdici.com/favicon.ico", "cover_url": "https://www.datocms-assets.com/104115/1697213084-og-image.jpg?w=1200", "description_meta": "Trouvez de l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/recoltesdesamhain.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "recoltesdesamhain.com", "logo_url": "https://recoltesdesamhain.com/cdn/shop/files/Favicons-Brouette_8c8c0e4a-ebcf-417b-959a-bd893ea62076.png?crop=center&height=32&v=1712864284&width=32", "cover_url": "http://recoltesdesamhain.com/cdn/shop/files/Les_Jardins_Samhain-06_582d310f-efa2-4b24-aebb-cdacafbc90b9.png?v=1711396864", "description_meta": "Une conserverie locale de fruits et l\u00e9gumes b\u00e2tie par une microferme mara\u00eech\u00e8re, les R\u00e9coltes de Samhain offrent des produits transform\u00e9s frais et en conserves sans ajout d\u2019agents de conservations chimiques, ni colorant artificiel, ni saveur artificielle.", "site_name": "Les R\u00e9coltes de Samhain"}
\ No newline at end of file
added data/enrich_cache/rectoverso.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rectoverso.ca", "logo_url": "https://rectoverso.ca/images/Sans%20titre%20(6).png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/recycliste.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "recycliste.ca", "logo_url": "https://recycliste.ca/favicon.ico", "cover_url": "https://recycliste.ca/media/1.91x1/velos-usages-1200w.png", "description_meta": "Sp\u00c3\u00a9cialiste du v\u00c3\u00a9los remis \u00c3\u00a0 neuf fait sur mesure | Custom Made Refurbished Bike Specialist", "site_name": null}
\ No newline at end of file
added data/enrich_cache/redchampagne.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "redchampagne.ca", "logo_url": "https://redchampagne.ca/include/themes/assets/images/favicon.png", "cover_url": "https://redchampagne.ca/include/uploads/images/", "description_meta": "Red Champagne de Philippe Simard et Fils depuis 1950 est la boisson gazeuse officielle du Lac-Saint-Jean", "site_name": "redchampagne.com"}
\ No newline at end of file
added data/enrich_cache/refugecapalaigle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "refugecapalaigle.com", "logo_url": "https://www.refugecapalaigle.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/refugedesbrasseurs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "refugedesbrasseurs.ca", "logo_url": "https://www.refugedesbrasseurs.ca/wp-content/uploads/2025/11/cropped-logo_square-180x180.png", "cover_url": null, "description_meta": "Des bi\u00e8res brass\u00e9es sur place, des produits locaux, une ambiance \u00e0 votre niveau, un impact minimal sur l&#039;environnement et un impact positif pour Sherbrooke.", "site_name": "Le Refuge des Brasseurs"}
\ No newline at end of file
added data/enrich_cache/regethermic.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "regethermic.ca", "logo_url": "https://regethermic.ca/favicon.png", "cover_url": null, "description_meta": "Chez R\u00e9g\u00e9thermic, nous concevons, fabriquons et distribuons des \u00e9quipements de cuisine montage de plateaux-repas Tango et notre vaisselle r\u00e9utilisable ou compostable, sont pens\u00e9s pour r\u00e9pondre aux hautes exigences du milieux de la sant\u00e9.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/regionlislet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "regionlislet.com", "logo_url": "https://regionlislet.com/themes/lislet2018/images/favicons/apple-touch-icon.png", "cover_url": "https://regionlislet.com/themes/lislet2018/images/img-fb.jpg", "description_meta": "C&#039;est o\u00f9 \u00e7a R\u00e9gion L&#039;Islet? Trouve les r\u00e9ponses \u00e0 cette question sur notre plateforme en ligne! Articles de blogue, pr\u00e9sentation des municipalit\u00e9s, etc!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/regroupementpartage.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "regroupementpartage.ca", "logo_url": "https://regroupementpartage.ca/wp-content/uploads/2016/10/favicon.png", "cover_url": null, "description_meta": "Le Regroupement Partage con\u00e7oit et met en oeuvre des solutions concr\u00e8tes pour am\u00e9liorer la s\u00e9curit\u00e9 alimentaire des Montr\u00e9alais les plus d\u00e9favoris\u00e9s.", "site_name": "Regroupement Partage - Aidez votre communaut\u00e9"}
\ No newline at end of file
added data/enrich_cache/relaisdesflorent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "relaisdesflorent.com", "logo_url": "https://relaisdesflorent.com/wp-content/uploads/2026/06/Arche-300x300.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/relaishautesgorges.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "relaishautesgorges.com", "logo_url": "https://relaishautesgorges.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/remarke.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "remarke.ca", "logo_url": "https://remarke.ca/wp-content/uploads/cropped-Remarke-Symbole-2020-180x180.png", "cover_url": "https://remarke.ca/wp-content/uploads/remarke-vignette.png", "description_meta": "Nous cr\u00e9ons des exp\u00e9riences de marque engageantes. Strat\u00e9gies multiplateformes, Production de contenu, Image de marque, Cr\u00e9ation et design.", "site_name": "Remarke Studio Cr\u00e9atif"}
\ No newline at end of file
added data/enrich_cache/remax-quebec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "remax-quebec.com", "logo_url": "https://www.remax-quebec.com/favicon-194x194.png?v=2025", "cover_url": "https://static.remax-quebec.com/2b5e8836-f0f2-4f1f-a7d4-a9d1e8575c19/Og_tag_accueil.jpg", "description_meta": "Un chalet, condo ou maison \u00e0 vendre ? \u00e0 Montreal, Laval, Lanaudi\u00e8re ou ailleurs ? Optez pour un courtier immobilier ou une agence immobili\u00e8re de RE/MAX Qu\u00e9bec.", "site_name": "RE/MAX Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/remorquessavage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "remorquessavage.com", "logo_url": "https://www.remorquessavage.com/apple-touch-icon.png", "cover_url": "https://remorquessavage.com/assets/images/og-image-accueil.png", "description_meta": "Remorques 100% aluminium fabriqu\u00e9es au Qu\u00e9bec. Construction, paysagement, loisirs. Plus l\u00e9g\u00e8res, plus \u00e9conomiques, plus durables. Notre expertise depuis 1999.", "site_name": "Remorques Savage"}
\ No newline at end of file
added data/enrich_cache/remorquetrailer.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "remorquetrailer.com", "logo_url": "https://www.remorquetrailer.com/wp-content/themes/ubeo-theme-child/images/apple-touch-icon.png", "cover_url": "https://www.remorquetrailer.com/wp-content/themes/ubeo-theme-child/images/facebook_share.png", "description_meta": "Remorque et trailers neufs ou usag\u00e9s \u00e0 Qu\u00e9bec | Remorque Qu\u00e9becMetadescription: Vente de remorques et trailers neufs ou usag\u00e9s \u00e0 Qu\u00e9bec. Remorque Qu\u00e9bec, le leader pour la remorque ouverte, ferm\u00e9e, gooseneck, car hauler, DKO, Dompeur.", "site_name": "Remorque Qu\u00e9bec inc."}
\ No newline at end of file
added data/enrich_cache/repereboreal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "repereboreal.com", "logo_url": "https://www.repereboreal.com/wp-content/themes/nubee/assets/favicon/apple-touch-icon.png", "cover_url": "https://www.repereboreal.com/wp-content/uploads/2024/01/image-pour-lien-web.png", "description_meta": "Habitations ouvertes sur la nature dans l\u2019incroyable r\u00e9gion de Charlevoix. On y propose en location des micro-chalets et des refuges uniques.", "site_name": "Rep\u00e8re Bor\u00e9al"}
\ No newline at end of file
added data/enrich_cache/reservationquebec.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "reservationquebec.net", "logo_url": "https://reservationquebec.net/favicon.ico", "cover_url": null, "description_meta": "R\u00e9servation Qu\u00e9bec est un site de r\u00e9servation en ligne offrant une multitude d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/restaulorchidee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restaulorchidee.com", "logo_url": "https://restaulorchidee.com/wp-content/uploads/2020/07/cropped-lorchidee-Restaurant-copie-180x180.jpg", "cover_url": "https://resteaulorchidee.com/wp-content/uploads/2020/07/lorchidee-Restaurant-La-malbaie-3.jpg", "description_meta": "Situ\u00e9 \u00e0 La Malbaie, Charlevoix, notre restaurant vous offre sa r\u00e9put\u00e9e c\u00f4te de b\u0153uf, produit vedette de notre menu. Produits du terroir Charlevoisien", "site_name": "Restaurant l&#039;Orchid&eacute;e"}
\ No newline at end of file
added data/enrich_cache/restaurant1668.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restaurant1668.ca", "logo_url": "https://www.restaurant1668.ca/favicon.ico?v=7kop60MBNt", "cover_url": "https://portal.restodata.ca/restaurant-1668/gallery/images/01_restaurant-_643-2024-11-20.jpg", "description_meta": "Restaurant 1668 est un restaurant Du Terroir situ\u00e9 au 18235 Boulevard Lacroix \u00e0 Saint-Georges. Voir le menu, \u00e9valuations et r\u00e9servez. Les produits r\u00e9gionaux de la Beauce s", "site_name": "Restaurant 1668"}
\ No newline at end of file
added data/enrich_cache/restaurantaccalmie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restaurantaccalmie.ca", "logo_url": "https://restaurantaccalmie.ca/_assets/images/e53c4bd8da5e491d9ab09e7cf0daf874.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/restaurantallegro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restaurantallegro.com", "logo_url": "https://www.restaurantallegro.com/wp-content/uploads/2019/08/logo-allegro-2-180x180.png", "cover_url": "https://www.restaurantallegro.com/wp-content/uploads/2019/09/slide-smaller.jpg", "description_meta": "Restaurant, bar lounge, caf\u00e9", "site_name": "Restaurant Allegro \u00e0 La Malbaie"}
\ No newline at end of file
added data/enrich_cache/restaurantchezgeorges.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restaurantchezgeorges.ca", "logo_url": "https://restaurantchezgeorges.ca/ressources/images/favicon/android-icon-192x192.png", "cover_url": "https://restaurantchezgeorges.ca/uploads/resultats-recherche-google.png", "description_meta": "Restaurant multi-g\u00e9n\u00e9rationnel de type steakhouse offrant de la cuisine d", "site_name": "Restaurant Chez Georges"}
\ No newline at end of file
added data/enrich_cache/restaurantnormandin.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restaurantnormandin.com", "logo_url": "https://restaurantnormandin.com/wp-content/uploads/2024/04/cropped-favicon-512x512-1-180x180.png", "cover_url": "https://restaurantnormandin.com/wp-content/uploads/2023/09/cclphotographe16fev-33-1024x683.jpg", "description_meta": "D\u00e9couvrez les H\u00f4tels Normandin Normandin, c\u2019est aussi 4 h\u00f4tels pour vous accueillir. \u00c0 Qu\u00e9bec, \u00e0 L\u00e9vis et maintenant \u00e0 Alma, s\u00e9journez dans un h\u00f4tel o\u00f9 le confort et l\u2019accueil sont au c\u0153ur de votre exp\u00e9rience!", "site_name": "Restaurant Normandin"}
\ No newline at end of file
added data/enrich_cache/restaurantsouvlaki.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restaurantsouvlaki.ca", "logo_url": "https://restaurantsouvlaki.ca/wp-content/uploads/2023/07/cropped-cropped-logo-vectoriel-facebook-180x180.png", "cover_url": "https://restaurantsouvlaki.ca/wp-content/uploads/2023/10/cropped-Untitled-design.jpg", "description_meta": "Trois-Rivi\u00e8res Montr\u00e9al\u2026", "site_name": "Restaurant Souvlaki"}
\ No newline at end of file
added data/enrich_cache/restoamir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restoamir.com", "logo_url": "https://cdn.prod.website-files.com/67dc48c4b8b9136915033916/67de9093c01feb0fa8955002_apple-touch-icon.png", "cover_url": null, "description_meta": "Welcome to Amir\u2014enjoy authentic Lebanese flavors made with fresh, high-quality ingredients. Order online or explore our menu now.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/restobelgo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restobelgo.com", "logo_url": "https://restobelgo.com/favicon.ico", "cover_url": null, "description_meta": "Resto Belgo - Poutine, cochon brais\u00c3\u00a9 15h, belgofres. Restaurant, traiteur et camion de cuisine de rue \u00c3\u00a0 Saint-Jean-sur-Richelieu, Qu\u00c3\u00a9bec.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/restocafedelagare.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restocafedelagare.com", "logo_url": "https://www.restocafedelagare.com/wp-content/plugins/under-construction-page/themes/images/favicon.png", "cover_url": null, "description_meta": "Restaurant Caf&eacute; de la Gare &agrave; la malbaie - Charlevoix", "site_name": null}
\ No newline at end of file
added data/enrich_cache/restochezbebe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restochezbebe.com", "logo_url": "https://restochezbebe.com/wp-content/uploads/2025/11/restochezbebe_logo_512x512-300x300.png", "cover_url": null, "description_meta": "Resto Chez B\u00e9b\u00e9, la meilleure poutine \u00e0 Jonqui\u00e8re et Chicoutimi! Casse-cro\u00fbte l\u00e9gendaire du Saguenay depuis 1970 : livraison, cueillette et produits maison savoureux.", "site_name": "Restaurant Chez B\u00e9b\u00e9"}
\ No newline at end of file
added data/enrich_cache/restochezchantal.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restochezchantal.com", "logo_url": "https://static.wixstatic.com/media/7fe8d1_4cff8d5307bd43c891e00a23775ec925%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/7fe8d1_4cff8d5307bd43c891e00a23775ec925%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/7fe8d1_7c38efd015454ab3929a1647d2789cd7~mv2_d_3000_1965_s_2.jpg/v1/fill/w_3000,h_1965,al_c/7fe8d1_7c38efd015454ab3929a1647d2789cd7~mv2_d_3000_1965_s_2.jpg", "description_meta": "Le restaurant / Bar laitier Chez Chantal, situ\u00e9 \u00e0 la malbaie, vous offre une nourriture de qualit\u00e9 dans un cadre enchanteur, sur le bord du fleuve Saint-Laurent.", "site_name": "chezchantal"}
\ No newline at end of file
added data/enrich_cache/restolacuisine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restolacuisine.com", "logo_url": "https://www.restolacuisine.com/websites/images/favicon.ico?1768959361", "cover_url": "https://www.restolacuisine.com/restaurants/restaurant-la-cuisine/website/images/header-logo.png", "description_meta": "Le Restaurant La Cuisine propose une cuisine du march\u00e9 authentique et cr\u00e9ative qui met de l", "site_name": "Restaurant La Cuisine"}
\ No newline at end of file
added data/enrich_cache/restopizz.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restopizz.com", "logo_url": "https://restopizz.com/wp-content/themes/nubee/library/images/apple-icon-touch.png", "cover_url": null, "description_meta": null, "site_name": "Resto Pizz"}
\ No newline at end of file
added data/enrich_cache/restopubbellesetbum.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restopubbellesetbum.com", "logo_url": "https://restopubbellesetbum.com/wp-content/uploads/2020/10/cropped-Icone-Site-Web-1-180x180.jpg", "cover_url": "https://restopubbellesetbum.com/wp-content/uploads/2023/12/Salle-a-manger-Resto-Pub-Belles-Bum-RECADRE-NVFBH-COMPRESS2-e1702512336465.jpg", "description_meta": "Ambiance pub d\u00e9contract\u00e9e. Menu vari\u00e9 aux saveurs locales. Bienvenue aux enfants!", "site_name": "Resto-Pub Belles &amp; Bum"}
\ No newline at end of file
added data/enrich_cache/restopubduquai.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restopubduquai.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": "Resto Pub Du Quai"}
\ No newline at end of file
added data/enrich_cache/restotandem.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "restotandem.com", "logo_url": "https://www.restotandem.com/wp-content/uploads/2018/06/FaviconRT.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/rezerve.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rezerve.ca", "logo_url": "https://rezerve.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "R\u00ebzerve | Chalets Charlevoix"}
\ No newline at end of file
added data/enrich_cache/rienneseperd.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rienneseperd.com", "logo_url": "https://www.rienneseperd.com/app/themes/baserock/assets/img/favicon.ico?v=3", "cover_url": "https://www.rienneseperd.com/app/uploads/2022/04/cropped-rien-ne-se-perd-og-1.png", "description_meta": "D\u00e9couvrez notre grande s\u00e9lection de v\u00eatements pour femmes faits au Qu\u00e9bec et plus de 7000 produits de 150 artisans. Magasinez en ligne ou en boutique.", "site_name": "Rien ne se perd, tout se cr\u00e9e"}
\ No newline at end of file
added data/enrich_cache/rioh.io.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rioh.io", "logo_url": "https://rioh.io/wp-content/uploads/2025/01/RIOH_red_favicon.png", "cover_url": "https://rioh.io/wp-content/uploads/2025/02/heading-icon.png", "description_meta": "IoTcare : le syst\u00e8me de g\u00e9olocalisation pour g\u00e9rer vos \u00e9quipements .En quelques clics, suivez vos \u00e9quipements en temps r\u00e9el, r\u00e9duisez vos pertes et optimisez la gestion de vos \u00e9tablissements. G\u00e9olocaliser vos outils n\u2019aura jamais \u00e9t\u00e9 aussi simple.", "site_name": "RIOH inc."}
\ No newline at end of file
added data/enrich_cache/riotel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "riotel.com", "logo_url": "https://www.riotel.com/wp-content/uploads/2026/05/riotel-2026-fav-300x300.png", "cover_url": "https://www.riotel.com/wp-content/uploads/2025/11/e405fbd5-a1ba-4a5f-8a8b-71846c26d923-scaled.jpg", "description_meta": null, "site_name": "Riotel"}
\ No newline at end of file
added data/enrich_cache/risasfusionperuvienne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "risasfusionperuvienne.com", "logo_url": "https://risasfusionperuvienne.com/favicon.ico", "cover_url": null, "description_meta": "RISAS Fusion P\u00e9ruvienne: Authentic Peruvian chimichurri sauce prepared in Quebec. Discover our Original and Spicy varieties.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/risekombucha.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "risekombucha.com", "logo_url": "https://risekombucha.com/wp-content/uploads/2025/03/cropped-Logo.png", "cover_url": "https://risekombucha.com/wp-content/uploads/2025/03/Logo.png", "description_meta": "Rise Kombucha Beverages, Brewed in Montreal Since 2008. Known for Using Quality Ingredients &amp; Having the Best Tasting Flavours. Discover the RISE Family of Products!", "site_name": "Rise kombucha"}
\ No newline at end of file
added data/enrich_cache/ritomints.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ritomints.com", "logo_url": "https://ritomints.com/cdn/shop/files/Favicon_32x32.png?v=1613775930", "cover_url": "http://ritomints.com/cdn/shop/files/ritomints_logo_png_1200x1200.png?v=1613775946", "description_meta": "Our products will be back online on November 13th!", "site_name": "Rito Mints"}
\ No newline at end of file
added data/enrich_cache/riverindulac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "riverindulac.ca", "logo_url": "https://riverindulac.ca/wp-content/uploads/2022/03/Rouge-R-carre\u0301@4x-300x300.png", "cover_url": "https://riverindulac.ca/wp-content/uploads/2022/06/riverin_du_lac-accueil_banniere-04.jpg", "description_meta": "D\u00e9couvrez Riverin du Lac, microlaiterie familiale offrant lait, yogourt, beurre &amp; gelato artisanal. Visitez notre boutique \u00e0 H\u00e9bertville-Station, Qu\u00e9bec.", "site_name": "Riverin du Lac"}
\ No newline at end of file
added data/enrich_cache/riversea-shop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "riversea-shop.com", "logo_url": "https://riversea-shop.com/cdn/shop/files/Riversea_vague-bleu.png?crop=center&height=32&v=1780497478&width=32", "cover_url": "http://riversea-shop.com/cdn/shop/files/Calling_the_sea_emy_b4031d3d-a70c-4d30-9cee-5acc09114761.jpg?v=1778098642", "description_meta": "Riversea, located in Quebec City, offers tarnish-resistant 925 silver jewelry, mainly rings, as well as beach/bohemian style clothing and accessories. Also discover our hair clips, water bottles, candles and more, combining elegance and practicality.", "site_name": "RIVERSEA"}
\ No newline at end of file
added data/enrich_cache/rivieredugouffre.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rivieredugouffre.org", "logo_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQVK3jr_3ZVeJPEs-BHj_S8yUuInGXNxbbbpkVSswmNaeFsnOtW44kyWVJq0FkwOY0BYljsksEJ8sw6JBkXxp3vrRf9EmNK0whVDYQn9RUazgqHYEmhzCppDfU-afb64lmKPd8VcOhdajRwT6wl2q_-1va7UgIYadqFk-_zraZDQI5IKvoone766CncWFAQ", "cover_url": "https://lh3.googleusercontent.com/sitesv/AG8ngQXjaSLy4rt3US4KGy6WccCxqSblP1Ebc4KsbYN-daGcvUiFdm5yLlBBM91GaKjw0VIw1g7UpMw7kbTadVSIZ9O7JoitV30tjh96sIQW_OVSoaoS9EcdYpX8AH-9fnTBAt17SAyXCsA1HluVCHFkjVDsOqwagiSXouc6SYM=w16383", "description_meta": "Remises \u00e0 l&#39;eau", "site_name": null}
\ No newline at end of file
added data/enrich_cache/rlenergies.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rlenergies.com", "logo_url": "https://rlenergies.com/favicon.png?v=2.0.1.30", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/robinbierenaturelle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "robinbierenaturelle.com", "logo_url": "https://robinbierenaturelle.com/wp-content/uploads/2020/12/cropped-robin-logo-Web-noir-1-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/rocanutrition.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rocanutrition.com", "logo_url": "https://rocanutrition.com/favicon.ico", "cover_url": null, "description_meta": "rocanutrition", "site_name": "rocanutrition"}
\ No newline at end of file
added data/enrich_cache/rochealeperviere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rochealeperviere.com", "logo_url": "https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=180,h=180,fit=crop,f=png/AVLWXn89rXIvrGxO/42368345_727535004258621_3831196585643999232_n-YX4W25kjbaFlOJG6.jpeg", "cover_url": "https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1440,h=756,fit=crop,f=jpeg/AVLWXn89rXIvrGxO/42368345_727535004258621_3831196585643999232_n-YX4W25kjbaFlOJG6.jpeg", "description_meta": "Apprenez-en plus sur nos paniers de l\u00c3\u00a9gumes biologiques, notre Domaine mara\u00c3\u00aecher, nos actualit\u00c3\u00a9s, notre \u00c3\u00a9quipe et notre mission commune.", "site_name": "Domaine de la roche \u00c3\u00a0 l&#39;\u00c3\u00a9pervi\u00c3\u00a8re - Coop mara\u00c3\u00aech\u00c3\u00a8re bio"}
\ No newline at end of file
added data/enrich_cache/rocheaveillon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rocheaveillon.com", "logo_url": "https://rocheaveillon.com/cdn/shop/files/Favicon_-_Roche_a_Veillon.png?crop=center&height=32&v=1690482750&width=32", "cover_url": "http://rocheaveillon.com/cdn/shop/files/LOGO_RAV_ac6e06b9-196f-4325-b8f0-00889b55f253.jpg?height=628&pad_color=ffffff&v=1775683426&width=1200", "description_meta": "La Roche \u00e0 Veillon vous propose une exp\u00e9rience gourmande et th\u00e9\u00e2trale unique depuis plus de 60 ans. Ici, la bonne bouffe, le rire et le plaisir sont au rendez-vous. Un arr\u00eat s\u2019impose!", "site_name": "La Roche \u00e0 Veillon"}
\ No newline at end of file
added data/enrich_cache/rochef.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rochef.ca", "logo_url": "https://rochef.ca/favicon.ico", "cover_url": "http:Liquid error (snippets/social-meta-tags line 8): invalid url input", "description_meta": "Ma\u00eetre chocolatier: Fine chocolates, truffles and pralines, chocolate moldings, covered dried fruits, almonds and pretzels, spreads, fondue, gourmet bars, hot chocolate, gift ideas, in bulk and chocolate for cooking. Pure chocolate. Artisanal from Quebec.", "site_name": "Rochef Chocolatier"}
\ No newline at end of file
added data/enrich_cache/rochlefermier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rochlefermier.ca", "logo_url": "https://rochlefermier.ca/favicon.ico", "cover_url": "https://rochlefermier.ca/wp-content/uploads/2026/02/4b-2.png", "description_meta": "Roch le fermier c&#039;est une microferme \u00e0 Saint-Roch-des-Aulnaies inspir\u00e9e par l\u2019agro\u00e9cologie et l\u2019agroforesterie.", "site_name": "Roch le fermier"}
\ No newline at end of file
added data/enrich_cache/rockburn.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rockburn.ca", "logo_url": "https://rockburn.ca/wp-content/uploads/cropped-favicon-2-180x180.png", "cover_url": "https://rockburn.ca/wp-content/uploads/img-facebook_fr.png", "description_meta": "Les Vergers Frier/Cidrerie Rockburn, situ\u00e9s dans le Haut-Saint-Laurent, vous proposent divers cidres, produits de la pomme, et l&#039;autocueillette l&#039;automne!", "site_name": "Vergers Frier &amp; Cidrerie Rockburn"}
\ No newline at end of file
added data/enrich_cache/rolifoods.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rolifoods.ca", "logo_url": "https://static.wixstatic.com/media/c87872_399f382d025847ddb5fd64fb80a6525e%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/c87872_399f382d025847ddb5fd64fb80a6525e%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/rootsandshootsfarm.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rootsandshootsfarm.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Roots and Shoots Farm - We dig vegetables! Certified organic CSA veggie baskets delivered to Ottawa, Hull, Chelsea, and La P\u00eache. Also available at the Lansdowne Farmers Market, independent grocers, and at the farm in Sainte-C\u00e9cile-de-Masham, QC.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/rosedesbois.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rosedesbois.ca", "logo_url": "https://www.rosedesbois.ca/wp-content/uploads/2021/12/rdbpng_DustyPink-300x300.png", "cover_url": "https://www.rosedesbois.ca/wp-content/uploads/2026/03/Capture-decran-le-2026-03-15-a-19.19.20-1024x644.png", "description_meta": "Rose des Bois est une entreprise qu\u00e9b\u00e9coise de lingerie fine. D\u00e9couvrez nos collections de lingerie, maillots de bain et plusieurs autres.", "site_name": "Rose des Bois"}
\ No newline at end of file
added data/enrich_cache/rosedeschamps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rosedeschamps.com", "logo_url": "https://www.rosedeschamps.com/wp-content/uploads/2020/11/cropped-Rose-des-champs-180x180.png", "cover_url": "https://www.rosedeschamps.com/wp-content/uploads/2020/11/slide_acceuil_rose-des-champs.png", "description_meta": "Eau de rose qu\u00e9b\u00e9coise uniqueTonique &#038; astringent. Cet&nbsp;hydrolat premium est obtenu gr\u00e2ce \u00e0&nbsp;un&nbsp;processus de distillation des p\u00e9tales de rose au&nbsp;Qu\u00e9bec.En savoir plusS\u00e9rum de rose du Qu\u00e9becSoins du visage &#038; Soins des cheveux. Ce s\u00e9rum prestige est le fruit d&rsquo;une mac\u00e9ration [&hellip;]", "site_name": "Rose des Champs"}
\ No newline at end of file
added data/enrich_cache/roseetlion.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "roseetlion.com", "logo_url": "https://www.roseetlion.com/uploads/b/34f24ac0-d306-11ed-ba4c-450e0e651392/icon_180x180_ios_NDc5Mj.png?width=180", "cover_url": "https://www.roseetlion.com/uploads/b/34f24ac0-d306-11ed-ba4c-450e0e651392/1.jpg", "description_meta": "Champignons frais | Myc\u00e9lium vivant | Produits \nLivraison partout au Qu\u00e9bec !", "site_name": "Rose et Lion champignons"}
\ No newline at end of file
added data/enrich_cache/roselisabeth.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "roselisabeth.ca", "logo_url": "https://www.roselisabeth.ca/uploads/b/5be7bb00-84e2-11ea-9b2a-d5af655e51b7/icon_180x180_ios_MjM5Nj.png?width=180", "cover_url": null, "description_meta": "Visitez notre boutique chocolat\u00e9e!", "site_name": "Chocolats Rose \u00c9lisabeth"}
\ No newline at end of file
added data/enrich_cache/rosepop.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rosepop.ca", "logo_url": "https://static.wixstatic.com/media/ad68e8_702b238ad9ae45c9b46ab4e6218cbfc4%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/ad68e8_702b238ad9ae45c9b46ab4e6218cbfc4%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/rosiepapeterie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rosiepapeterie.com", "logo_url": "https://rosiepapeterie.com/cdn/shop/files/Logos-07-nomargin.svg?crop=center&height=32&v=1737229681&width=32", "cover_url": "http://rosiepapeterie.com/cdn/shop/files/image_partagesocial.png?v=1722885122", "description_meta": "Minimal and chic stationery shop based in Quebec City, Canada. We are dedicated to giving you the very best, with a focus on Integrity, Customer Experience and Simplicity. Our goal is to be able to make a difference in your planner system and to hopefully inspire some of you to get organized.", "site_name": "Rosie Papeterie"}
\ No newline at end of file
added data/enrich_cache/rougemaple.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rougemaple.com", "logo_url": "https://rougemaple.com/cdn/shop/files/favicon_bpr_a5f00213-ee46-4009-bc7f-5e1316c098b1.png?crop=center&height=32&v=1761056505&width=32", "cover_url": "http://rougemaple.com/cdn/shop/files/Logo_BPR.png?v=1761078448", "description_meta": "Canadian company specializing in corporate gifts inspired by maple. Unique gourmet boxes, locally made and packaged, lightly sweetened with maple syrup for a refined, modern touch. Maple wood cutting boards perfect for thanking employees, clients, or business partners.", "site_name": "blancparrouge"}
\ No newline at end of file
added data/enrich_cache/rougie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rougie.ca", "logo_url": "https://www.rougie.ca/wp-content/uploads/sites/2/2025/01/favicon-300x300.png", "cover_url": "https://www.rougie.ca/wp-content/uploads/sites/2/2025/01/Card-rougie.png", "description_meta": "MAISON ROUGI\u00c9 CANADA", "site_name": "Rougi\u00e9"}
\ No newline at end of file
added data/enrich_cache/route8.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "route8.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/e0cd8932-5bfc-4b8c-a91e-ba263900fe0d/47440577_1145531848938459_718674425213353984_n.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/stock/101657", "description_meta": "Nous d\u00e9sirons surprendre les papilles des clients en offrant des bi\u00e8res classiques et authentiques aux saveurs qu\u00e9b\u00e9coises.bi\u00e8re artisanale de qualit\u00e9.", "site_name": "Route 8 microbrasserie"}
\ No newline at end of file
added data/enrich_cache/routedessaveurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "routedessaveurs.com", "logo_url": "https://www.routedessaveurs.com/apple-touch-icon.png", "cover_url": "https://cms.tourisme-charlevoix.com/files/images/tc-rds.png", "description_meta": "D\u00c3\u00a9couvrez la Route des Saveurs de Charlevoix, un parcours agrotouristique unique o\u00c3\u00b9 les artisans locaux partagent leurs tr\u00c3\u00a9sors culinaires et leur passion.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/royaltynatural.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "royaltynatural.com", "logo_url": "https://royaltynatural.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/royaumedelatarte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "royaumedelatarte.com", "logo_url": "https://royaumedelatarte.com/favicon.ico", "cover_url": "https://royaumedelatarte.com/wp-content/uploads/logo-rond-image-separateur.png", "description_meta": "Le Royaume de la Tarte, une institution \u00e0 Qu\u00e9bec. G\u00e2teau, leur tartes, leur mets pr\u00e9par\u00e9s. Tout est fait \u00e0 la main et est d&#039;une fra\u00eecheur in\u00e9gal\u00e9.", "site_name": "Le Royaume de la tarte"}
\ No newline at end of file
added data/enrich_cache/rtcbq.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rtcbq.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/rucherboltonnois.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rucherboltonnois.net", "logo_url": "https://rucherboltonnois.net/favicon.ico", "cover_url": null, "description_meta": "Le Rucher Boltonnois", "site_name": null}
\ No newline at end of file
added data/enrich_cache/rucherdesframboisiers.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rucherdesframboisiers.ca", "logo_url": "https://rucherdesframboisiers.ca/favicon.ico", "cover_url": "http://rucherdesframboisiers.ca/cdn/shop/files/miel-biologique-gaspesie.jpg?v=1774372483", "description_meta": "Miel biologique non pasteuris\u00e9 et pur du Qu\u00e9bec, r\u00e9colt\u00e9 en Gasp\u00e9sie. Pr\u00e9lev\u00e9 \u00e0 la main, jamais m\u00e9lang\u00e9 ni achet\u00e9 ailleurs, pour un miel authentique et artisanal.", "site_name": "Rucher des Framboisiers"}
\ No newline at end of file
added data/enrich_cache/ruchersdesaulnaies.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ruchersdesaulnaies.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/rudimenterre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rudimenterre.com", "logo_url": "https://rudimenterre.com/cdn/shop/files/favicon_32x32.png?v=1744030862", "cover_url": "https://cdn.shopify.com/s/files/1/0276/4252/7833/files/photo_principale.png?v=1743953031", "description_meta": "RUDIMENTERRE", "site_name": "RUDIMENTERRE"}
\ No newline at end of file
added data/enrich_cache/ruisseau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ruisseau.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/4f849ec8-07d7-4f9b-973a-e60cb883de39/logo%20transparant%20.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/4f849ec8-07d7-4f9b-973a-e60cb883de39/blob.png", "description_meta": "Cabane \u00e0 sucre \u00e0 Mirabel dans les Laurentides \u00e0 20 minutes de Laval, pour toute la famille avec plusieurs activit\u00e9s et une ambiance chaleureuse.", "site_name": "Chalet du Ruisseau"}
\ No newline at end of file
added data/enrich_cache/rusticafoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rusticafoods.com", "logo_url": "https://rusticafoods.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/rustictac.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rustictac.ca", "logo_url": "https://rustictac.ca/cdn/shop/files/Favicon_Rustic-Tac_152x.png?v=1779220588", "cover_url": "http://rustictac.ca/cdn/shop/files/FB_CHRONOS_Homme_Rustic-tac_e1647d08-a56f-4eea-9503-a77fc31c28dc_1200x1200.jpg?v=1779219366", "description_meta": "Rustic-Tac con\u00e7oit des montres en bois uniques, l\u00e9g\u00e8res et confortables, con\u00e7ues au Qu\u00e9bec. Personnalisez votre montre avec une gravure ou le logo de votre entreprise. Id\u00e9al pour cadeaux corporatifs, mariage et occasions sp\u00e9ciales.", "site_name": "Rustic-tac"}
\ No newline at end of file
added data/enrich_cache/rustikbison.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "rustikbison.ca", "logo_url": "https://www.rustikbison.ca/cdn/shop/files/favicon-rustik-bison-epinette.png?crop=center&height=32&v=1697743039&width=32", "cover_url": "http://www.rustikbison.ca/cdn/shop/files/bison-corps-rustik-bison_334494af-f342-40c8-b0eb-69bba50c41e1.jpg?v=1702048750", "description_meta": "D\u00e9couvrez la meilleure viande du Qu\u00e9bec! Une viande savoureuse, nutritive, saine pour vous et la plan\u00e8te! Viande nourrie \u00e0 l\u2019herbe I viande responsable I viande de p\u00e2turage Disponible \u00e0 notre boutique \u00e0 la ferme dans la r\u00e9gion de Coaticook en Estrie.", "site_name": "Rustik Bison"}
\ No newline at end of file
added data/enrich_cache/s210atelierderoues.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "s210atelierderoues.com", "logo_url": "https://s210atelierderoues.com/wp-content/uploads/2024/10/cropped-S210_ROUES_Autocollant_menthe-180x180.png", "cover_url": "https://s210atelierderoues.com/wp-content/uploads/2025/02/Atelier-de-roues-Certification-Fabrique-au-Quebec-768x768.png", "description_meta": "Roues de v\u00e9lo sur mesure assembl\u00e9es \u00e0 la main dans notre atelier au Qu\u00e9bec. Grand choix de roues de qualit\u00e9 pour votre v\u00e9lo de route, gravelle, piste et MTB.", "site_name": "STATION 210 - Atelier de roues"}
\ No newline at end of file
added data/enrich_cache/saatvikcuisine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saatvikcuisine.com", "logo_url": "https://img1.wsimg.com/isteam/ip/4a930700-2dcb-45b7-98b1-f6ff1b8110e7/Saatvik_RGB_vert%2Bnoir_72dpi.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/4a930700-2dcb-45b7-98b1-f6ff1b8110e7/DSC_5470-1.jpg", "description_meta": null, "site_name": "Saatvik Cuisine V\u00e9g\u00e9"}
\ No newline at end of file
added data/enrich_cache/saberx.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saberx.ca", "logo_url": "https://www.saberx.ca/cdn/shop/files/SABER_X.png?crop=center&height=180&v=1752540457&width=180", "cover_url": "http://www.saberx.ca/cdn/shop/files/Saber_X_logo_2_2_9f0c3113-3f7b-4542-b911-9bf52eb5a374.jpg?crop=center&height=1200&v=1680718664&width=1200", "description_meta": "Experience the power of the Force! Crafted with precision and attention to detail, our lightsabers are perfect for fans of all ages. Customize your saber today!", "site_name": "Saber X"}
\ No newline at end of file
added data/enrich_cache/saccharlevoix.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saccharlevoix.org", "logo_url": "https://www.saccharlevoix.org/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/sacenvrac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sacenvrac.com", "logo_url": "https://sacenvrac.com/favicon.ico", "cover_url": "https://sacenvrac.com/wp-content/uploads/2024/10/Post-Instagram-Joyeux-Nouvel-An-lunaire-Classique-Simple-Dore-Rouge-5.png", "description_meta": "Les emballages Sac en Vrac propose des sacs r\u00e9utilisables \u00e9cologiques, des linges de l&#039;art de la table, jardinage urbain, soins personnels.", "site_name": "SAC EN VRAC"}
\ No newline at end of file
added data/enrich_cache/sacgabas.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sacgabas.com", "logo_url": "https://sacgabas.com/cdn/shop/files/FB_IMG_1631667606214_32x32.jpg?v=1698757666", "cover_url": "http://sacgabas.com/cdn/shop/files/1000030372_930aae3e-81ab-42c5-8a2a-3ff8f851d6dd.jpg?v=1777466455", "description_meta": "Vous retrouverez ici des sacs et accessoires uniques pour la femme recherchant originalit\u00e9 et polyvalence. Nos produits sont con\u00e7us pour r\u00e9pondre \u00e0 tous vos besoins, de la journ\u00e9e au boulot en passant par votre activit\u00e9 favorite et m\u00eame vos soir\u00e9es chic. Fait au Qu\u00e9bec.", "site_name": "Sac-Gabas"}
\ No newline at end of file
added data/enrich_cache/sadc-cae.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sadc-cae.ca", "logo_url": "https://www.sadc-cae.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/safran-nordique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "safran-nordique.com", "logo_url": "https://safran-nordique.com/favicon.ico", "cover_url": "https://safran-nordique.com/wp-content/uploads/2020/10/pollinisation-safran.jpg", "description_meta": "Charlevoix, Qu\u00e9bec Une fleur aux mille vertus Et oui! Nous produisons bel et bien du safran dans la r\u00e9gion de Charlevoix. LA SAFRANI\u00c8RE EN VID\u00c9O Pourquoi Le Safran : l\u2019or Rouge? C\u2019est neuf mois apr\u00e8s l\u2019acquisition de notre terre \u00e0 bois situ\u00e9e \u00e0 Clermont dans la magnifique r\u00e9gion de Charlevoix, soit en mars 2016, que", "site_name": "Safran Nordique"}
\ No newline at end of file
added data/enrich_cache/sagamitewatso.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sagamitewatso.com", "logo_url": "https://sagamitewatso.com/favicon.ico", "cover_url": null, "description_meta": "La Sagamit\u00e9 est une soupe traditionnelle du patrimoine culinaire Ab\u00e9nakis d\u2019Odanak. Une soupe \u00e0 base de 9 vari\u00e9t\u00e9s d\u2019haricots, de ma\u00efs lessiv\u00e9, d\u2019\u00e9pices et de l\u00e9gumes d\u00e9hydrat\u00e9s. Il suffit de rajouter tout les ingr\u00e9dients dans un chaudron d\u2019eau bouillante. Rajouter de la viande de bois pour rehausser le go\u00fbt !", "site_name": "Sagamit\u00e9 Watso"}
\ No newline at end of file
added data/enrich_cache/sagenaturel.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sagenaturel.ca", "logo_url": "https://sagenaturel.ca/favicon.ico", "cover_url": "http://www.sagenaturel.ca/cdn/shop/files/SageNaturelLow29741d.png?height=628&pad_color=ffffff&v=1767564836&width=1200", "description_meta": "Sage Naturel", "site_name": "Sage Naturel"}
\ No newline at end of file
added data/enrich_cache/sagerfoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sagerfoods.com", "logo_url": "https://sagerfoods.com/images/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "SAGER est une entreprise alimentaire familiale situ\u00e9e \u00e0 Montr\u00e9al, Qu\u00e9bec. En tant que principal emballeur d&#039;huiles v\u00e9g\u00e9tales au Canada, Sager sert fi\u00e8rement toutes les grandes cha\u00eenes de supermarch\u00e9s \u00e0 travers le pays.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/sail.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sail.ca", "logo_url": "https://www.sail.ca/favicon.ico", "cover_url": null, "description_meta": "Shop the best items from over 600 outdoor brands; men&#039;s, women&#039;s, kids&#039; clothing, hunting, fishing, camping gear and more. Fast shipping. Shop Now!", "site_name": "Sail Plein Air"}
\ No newline at end of file
added data/enrich_cache/saindouxbbq.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saindouxbbq.com", "logo_url": "https://saindouxbbq.com/_assets/images/3d02c21083329706c1736cee48f283f7.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/saint-vincentbio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saint-vincentbio.com", "logo_url": "https://sp-ao.shortpixel.ai/client/to_auto,q_lossless,ret_img,w_180,h_180/https://www.saint-vincentbio.com/wp-content/uploads/2018/04/cropped-Flaticon-180x180.jpg", "cover_url": "https://www.saint-vincentbio.com/wp-content/uploads/2016/08/Ferme-biologique-Saint-Vincent-accueil.jpg", "description_meta": "Nos viandes biologiques sont disponibles en ligne et \u00e0 nos boucheries situ\u00e9es \u00e0 Montr\u00e9al au march\u00e9 Jean-Talon (514) 271-0209 et Atwater (514) 937-4269.", "site_name": "Boucheries et ferme biologiques Saint-Vincent"}
\ No newline at end of file
added data/enrich_cache/saintaimedeslacs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saintaimedeslacs.ca", "logo_url": "https://static.wixstatic.com/media/83597e_e0e0070fc00e457781b9e1ea8ec3aa26.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/83597e_e0e0070fc00e457781b9e1ea8ec3aa26.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/sainte-agathe.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sainte-agathe.org", "logo_url": "https://sainte-agathe.org/wp-content/uploads/2025/01/cropped-Icone_Vert-180x180.png", "cover_url": "https://sainte-agathe.org/wp-content/uploads/2025/04/Entetes-Communique-de-presse-920-x-450-px-1920-x-450-px.png", "description_meta": "Chambre de commerce du c\u0153ur des Laurentides La CCCL regroupe les entrepreneurs afin de placer au c\u0153ur de ses actions la promotion et la d\u00e9fense des int\u00e9r\u00eats \u00e9conomiques, sociaux et [&hellip;]", "site_name": "Chambre de Commerce du c\u0153ur des Laurentides"}
\ No newline at end of file
added data/enrich_cache/saintejulie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saintejulie.ca", "logo_url": "https://saintejulie.ca/assets/images/favicon-152.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/sainthilarion.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sainthilarion.ca", "logo_url": "https://sainthilarion.ca/wp-content/uploads/2025/06/cropped-favicon_saint-hilarion-180x180.png", "cover_url": "https://sthilarion.oasishosting.ca/wp-content/uploads/2025/06/cropped-favicon_saint-hilarion.png", "description_meta": "D\u00e9couvrez Saint-Hilarion : actualit\u00e9s, services municipaux, vie citoyenne, loisirs et informations pratiques pour les r\u00e9sidents et visiteurs. D\u00e9couvrez Saint-Hilarion : actualit\u00e9s, services municipaux, vie citoyenne, loisirs et informations pratiques pour les r\u00e9sidents et visiteurs.", "site_name": "Municipalit\u00e9 Saint-Hilarion -"}
\ No newline at end of file
added data/enrich_cache/saintirenee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saintirenee.ca", "logo_url": "https://saintirenee.ca/wp-content/uploads/2022/07/cropped-icon_v2-180x180.png", "cover_url": "https://saintirenee.ca/wp-content/uploads/2022/07/facebook_share_v2.png", "description_meta": "Bienvenue sur le site web de la Municipalit\u00e9 de Saint-Ir\u00e9n\u00e9e con\u00e7u pour informer les citoyennes et citoyens", "site_name": "Municipalit\u00e9 de Saint-Ir\u00e9n\u00e9e"}
\ No newline at end of file
added data/enrich_cache/saintjustin.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saintjustin.ca", "logo_url": "https://saintjustin.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/saintpiment.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saintpiment.ca", "logo_url": "https://saintpiment.ca/cdn/shop/files/SaintPiment_NameColor_1f044be5-7e5e-4858-aa85-8379f4c0095f.png?crop=center&height=32&v=1754693226&width=32", "cover_url": "http://saintpiment.ca/cdn/shop/files/SaintPiment_NameColor_1f044be5-7e5e-4858-aa85-8379f4c0095f.png?height=628&pad_color=ffffff&v=1754693226&width=1200", "description_meta": "Culture du piment fort et transformation en sauces fortes et autres d\u00e9riv\u00e9s du piment", "site_name": "Saint-Piment"}
\ No newline at end of file
added data/enrich_cache/saintsimeon.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saintsimeon.ca", "logo_url": "https://www.saintsimeon.ca/images/icones/apple_touch_57.png", "cover_url": "https://www.saintsimeon.ca/fichiersUploadOpt/1200-0-0-0-1200-630-ebf4e0ad7a791145a77364857cc6136f67d0f9f3687964544/20260420165232-facebook-partage.png", "description_meta": "Site internet de Municipalit\u00e9 de Saint-Sim\u00e9on", "site_name": "Municipalit\u00e9 de Saint-Sim\u00e9on"}
\ No newline at end of file
added data/enrich_cache/sainturbain.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sainturbain.qc.ca", "logo_url": "https://sainturbain.qc.ca/assets/icons/icon-192x192.png", "cover_url": null, "description_meta": "Portail citoyen", "site_name": null}
\ No newline at end of file
added data/enrich_cache/salaisonbesson.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "salaisonbesson.com", "logo_url": "https://salaisonbesson.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/salaisonlevesque.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "salaisonlevesque.com", "logo_url": "https://salaisonlevesque.com/favicon.ico", "cover_url": "https://salaisonlevesque.com/wp-content/uploads/2020/10/Cuisson-Jambon-roti_Salaison-Levesque.jpg", "description_meta": "Nos produits sont fum\u00e9s traditionnellement pour leur donner un go\u00fbt distinct et d\u00e9licieux. C&#039;est tout simplement le meilleur jambon", "site_name": "L\u00e9vesque Tradition | Fum\u00e9 naturellement au bois d\u2019\u00e9rable"}
\ No newline at end of file
added data/enrich_cache/salamico.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "salamico.com", "logo_url": "http://salamico.com/assets/images/logo2.png", "cover_url": null, "description_meta": "acceuil, contact", "site_name": null}
\ No newline at end of file
added data/enrich_cache/salledereceptionsaguenay.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "salledereceptionsaguenay.com", "logo_url": "https://i0.wp.com/salledereceptionsaguenay.com/wp-content/uploads/2020/01/cropped-logo-salle-de-reception-1.png?fit=180%2C180&#038;ssl=1", "cover_url": null, "description_meta": "Location de salle , location de salle, salle de r\u00e9ception", "site_name": null}
\ No newline at end of file
added data/enrich_cache/salmonbayfarm.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "salmonbayfarm.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/salmonico.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "salmonico.com", "logo_url": "https://static.wixstatic.com/media/71d192_27496971a8a64f2c81120a3afd320769%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/71d192_27496971a8a64f2c81120a3afd320769%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/salsa02.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "salsa02.com", "logo_url": "https://salsa02.com/wp-content/uploads/2023/07/cropped-Cercles-Salsa-180x180.png", "cover_url": "https://salsa02.com/wp-content/uploads/Salsa-complet-coul.-sans-fond-rogne.png", "description_meta": "Une \u00e9picerie de proximit\u00e9 \u00e0 Roberval pour avoir acc\u00e8s \u00e0 des aliments sains et abordables. Une \u00e9picerie accessible \u00e0 tous.", "site_name": "Salsa"}
\ No newline at end of file
added data/enrich_cache/saman.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saman.ca", "logo_url": "https://saman.ca/wp-content/themes/saman/img/icons/touch.png", "cover_url": null, "description_meta": "Pour teindre un meuble, vernir un plancher ou redonner vie \u00e0 vos boiseries, comptez sur nos produits de finition pour le bois avant-gardistes de qualit\u00e9 professionnelle.", "site_name": "SamaN - Teintures et vernis -"}
\ No newline at end of file
added data/enrich_cache/sansfoienigras.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sansfoienigras.ca", "logo_url": "https://media.base44.com/images/public/69b48fe747db41f41b2d63fd/a260c2ba8_favicon1.png", "cover_url": "https://media.base44.com/images/public/69b48fe747db41f41b2d63fd/a260c2ba8_favicon1.png/v1/fill/w_1200,h_630/a260c2ba8_favicon1.png", "description_meta": "L\u2019alternative v\u00e9g\u00e9tale gourmande au foie gras, pour du plaisir sans compromis ni culpabilit\u00e9.\n\nThe gourmet plant-based alternative to foie gras,for pleasure without compromise or guilt.", "site_name": "Sans Foie Ni Gras"}
\ No newline at end of file
added data/enrich_cache/santrel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "santrel.com", "logo_url": "https://santrel.com/wp-content/uploads/2026/01/santrel-site-icon-300x300.jpg", "cover_url": null, "description_meta": null, "site_name": "Santrel"}
\ No newline at end of file
added data/enrich_cache/sapin-dor.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sapin-dor.qc.ca", "logo_url": "https://www.sapin-dor.qc.ca/favicon.ico", "cover_url": "https://www.sapin-dor.qc.ca/wp-content/uploads/2025/10/logo-180X162.png", "description_meta": "Actualit\u00e9s Le club de motoneige Le Sapin d\u2019Or revit Le club de motoneige le sapin d&#039;or retrouve ses lettres de noblesse Le club de motoneige le Sapin d&#039;Or renait de ses cendres RANDONN\u00c9E F\u00c9MININE EN MOTONEIGE AU PROFIT DE LA RECHERCHE SUR LE CANCER DU SEIN Bonjour chers membres, Notre club est un des plus", "site_name": "-"}
\ No newline at end of file
added data/enrich_cache/saponaria.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saponaria.ca", "logo_url": "https://www.saponaria.ca/cdn/shop/files/Just_the_S_32x32.jpg?v=1682012671", "cover_url": "http://www.saponaria.ca/cdn/shop/files/NR_saponaria_LOW_moyen_c1456b17-9dbc-4366-9d22-1f4f7770d7b4.png?v=1682013970", "description_meta": "Savonnerie Saponaria", "site_name": "Savonnerie Saponaria"}
\ No newline at end of file
added data/enrich_cache/saponniereqc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saponniereqc.com", "logo_url": "https://www.saponniereqc.com/wp-content/uploads/2020/07/favicon.png", "cover_url": "https://www.saponniereqc.com/wp-content/uploads/2019/05/SapoPhotoShootFacebook-e1557589081659.jpg", "description_meta": "Savonnerie artisanale qu\u00e9b\u00e9coise dans la r\u00e9gion de Portneuf \u00e0 Neuville. Savons artisanaux et naturels, bombes de bain, shampoings solides,chandelles v\u00e9g\u00e9tales!", "site_name": "Saponni\u00e8re Qu\u00e9b\u00e9coise"}
\ No newline at end of file
added data/enrich_cache/saputo.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saputo.ca", "logo_url": "https://www.saputo.ca/-/media/ecosystem/divisions/canada-dairy/sites/saputo-ca/saputo-ca-images/android-icon-192x192-2.png?h=192&w=192&rev=6937c2799a8a4c60816c3030961c7d74&hash=D9C443FD31B2AE79FA3BFCC75F227002", "cover_url": null, "description_meta": "Saputo is dedicated to crafting and importing the finest Italian Mediterranean cheeses in Canada. Discover them today.", "site_name": "www.saputo.ca"}
\ No newline at end of file
added data/enrich_cache/sarahbijoux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sarahbijoux.ca", "logo_url": "https://sarahbijoux.ca/cdn/shop/files/favicon-2-03.jpg?v=1657560863&width=180", "cover_url": "http://sarahbijoux.ca/cdn/shop/files/Capture_d_ecran_le_2026-06-10_a_13.22.43.png?v=1781112170&width=2048", "description_meta": "Bijoux minimalistes faits \u00e0 la main \u00e0 Montr\u00e9al | Bagues, boucles d&#39;oreilles, colliers, bracelets, bagues de fian\u00e7ailles, alliances et cr\u00e9ations sur mesure | Argent sterling, or massif et or vermeil | Livraison gratuite au Canada sur les commandes de 100 $ et plus", "site_name": "SarahBijoux"}
\ No newline at end of file
added data/enrich_cache/saucesdamn.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saucesdamn.com", "logo_url": "https://static.wixstatic.com/media/5a812b_571bce252948410192ff4515de73fc47%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5a812b_571bce252948410192ff4515de73fc47%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/5a812b_c053b6ef241d4d40b672027105bb723f%7Emv2.png/v1/fit/w_2500,h_1330,al_c/5a812b_c053b6ef241d4d40b672027105bb723f%7Emv2.png", "description_meta": "SAUCES PIQUANTES ET BBQ\nFaites d\u2019ingr\u00e9dients frais qui donnent un petit \u00ab kick \u00bb \u00e0 vos repas !\n\nN\u00e9es en 2014 d\u2019un d\u00e9sir de voir les saveurs du sud des \u00c9tats-Unis conqu\u00e9rir le Qu\u00e9bec, Les sauces Damn! sont d\u00e9barqu\u00e9es au Saguenay.\n\nOn vous donne chaud depuis ce temps-l\u00e0.", "site_name": "Les sauces Damn!"}
\ No newline at end of file
added data/enrich_cache/saucesetmarinadesdg.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saucesetmarinadesdg.com", "logo_url": "https://saucesetmarinadesdg.com/images/icons/icon-256x256.png", "cover_url": "https://saucesetmarinadesdg.com/media/1068/logo-sauce-et-marinade-dg.png", "description_meta": "Sauces et Marinades D.G. Complice de vos d&#233;lices ! Mettez du go&#251;t dans vos assiettes. Produit du Qu&#233;bec. Sauces, marinades, trempettes et bouillon &#224; fondue. Venez d&#233;couvrir nos produits !", "site_name": null}
\ No newline at end of file
added data/enrich_cache/saucespiquantes.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saucespiquantes.ca", "logo_url": "https://www.saucespiquantes.ca/favicon.ico?fv=815C9C323EC6A5D6A79E6738B853B8D2", "cover_url": "https://www.saucespiquantes.ca//medias/SaucesPiquantes_ca.jpg", "description_meta": "Grande s&#233;lection de sauces piquantes, sauces BBQ, marinades, moutardes, &#233;pices, condiments et collations &#233;pic&#233;es. Livraison gratuite &#224; partir de 75$ d&#39;achat.", "site_name": "Sauces Piquantes.ca"}
\ No newline at end of file
added data/enrich_cache/saum-mom.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saum-mom.com", "logo_url": "https://saum-mom.com/wp-content/uploads/2024/06/SaumMom_Favicon-min-300x300.png", "cover_url": "https://saum-mom.com/wp-content/uploads/2024/11/SaumMom_PartageFB-min.jpg", "description_meta": "Saum-Mom - Nous mettons un point d\u2019honneur \u00e0 s\u00e9lectionner les meilleurs saumons pour vous offrir un produit d\u2019une qualit\u00e9 in\u00e9gal\u00e9e.", "site_name": "Saum Mom"}
\ No newline at end of file
added data/enrich_cache/saumonrivieremalbaie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saumonrivieremalbaie.com", "logo_url": "https://saumonrivieremalbaie.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/sauna-concept.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sauna-concept.com", "logo_url": "https://sauna-concept.com/wp-content/uploads/2024/10/cropped-favicon-180x180.webp", "cover_url": "https://sauna-concept.com/wp-content/uploads/2024/11/acceuil-header-1024x585.jpg", "description_meta": "D\u00e9couvrez Sauna Concept, sp\u00e9cialiste des saunas et cuves thermales sur mesure, innovation et qualit\u00e9 in\u00e9gal\u00e9e au Qu\u00e9bec.", "site_name": "Sauna Concept"}
\ No newline at end of file
added data/enrich_cache/saunaboreal.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saunaboreal.ca", "logo_url": "https://static.wixstatic.com/ficons/64c382_e6c5220158484787b2ccd8fc1a6a10cd%7Emv2.ico", "cover_url": "https://static.wixstatic.com/media/2a5e9f_ab6831a4756a4413912141ba90d5098c%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/2a5e9f_ab6831a4756a4413912141ba90d5098c%7Emv2.jpg", "description_meta": "Retrouvez chez Sauna Bor\u00e9al partout au Qu\u00e9bec, des saunas traditionnels et panoramiques de qualit\u00e9 et \u00e9cologiques. Contactez-nous pour en savoir plus.", "site_name": "Sauna Bor\u00e9al"}
\ No newline at end of file
added data/enrich_cache/sauvage-s.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sauvage-s.com", "logo_url": "https://www.hostpapa.ca/themes/hostpapaV4/img/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/saveursdesmonts.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saveursdesmonts.ca", "logo_url": "https://saveursdesmonts.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/saveursdusud.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "saveursdusud.ca", "logo_url": "https://saveursdusud.ca/favicon.ico", "cover_url": "https://saveursdusud.ca/wp-content/uploads/2023/04/cropped-saveursdusud520.webp", "description_meta": "Peut \u00eatre accompagn\u00e9 tr\u00e8s bien avec des saucisses, viandes, poissons, poulet.", "site_name": "Saveurs du sud"}
\ No newline at end of file
added data/enrich_cache/savogelato.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savogelato.com", "logo_url": "https://savogelato.com/wp-content/uploads/2024/12/cropped-faviconsavo-180x180.png", "cover_url": "https://savogelato.com/wp-content/uploads/2024/04/savo-1-1280x853.png", "description_meta": "SAVO est une entreprise estrienne sp\u00e9cialis\u00e9e dans la production de gelatos et de sorbets de qualit\u00e9 au go\u00fbt sinc\u00e8re et \u00e0 la texture onctueuse. \u00c0 consommer avec exag\u00e9ration!", "site_name": "Savo Gelatos et Sorbets"}
\ No newline at end of file
added data/enrich_cache/savondescantons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savondescantons.com", "logo_url": "https://savondescantons.com/favicon.ico", "cover_url": "https://savondescantons.com/wp-content/uploads/savon-coul.png", "description_meta": "Nous fabriquons sur place le savon de castille de fa\u00e7on artisanale. Situ\u00e9e \u00e0 Magog dans en Estrie. Une savonnerie artisanale au Qu\u00e9bec depuis 2002", "site_name": "Savon des Cantons, savonnerie artisanale"}
\ No newline at end of file
added data/enrich_cache/savonnerieaupaysdesbleuets.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonnerieaupaysdesbleuets.com", "logo_url": "https://static.wixstatic.com/media/64be6a_dce57836ce894d8c86bb25fa5ec336fb%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/64be6a_dce57836ce894d8c86bb25fa5ec336fb%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/savonneriebleuturquoise.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonneriebleuturquoise.com", "logo_url": "https://savonneriebleuturquoise.com/cdn/shop/files/Pastille_BT_bleu_72_transp.png?crop=center&height=48&v=1755136290&width=48", "cover_url": null, "description_meta": "Expert dans la cr\u00e9ation de savons artisanaux de luxe, bombes de bain et vapeurs pour la douche. Savonnerie artisanale qu\u00e9b\u00e9coise cr\u00e9ant des produits pour transformer chaque bain en moment de bien-\u00eatre.", "site_name": "Savonnerie Bleu Turquoise"}
\ No newline at end of file
added data/enrich_cache/savonneriebonbain.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonneriebonbain.ca", "logo_url": "https://static.wixstatic.com/media/1ddb75_c9741fd893164257ac0dc36f4885ce83%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1ddb75_c9741fd893164257ac0dc36f4885ce83%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/savonneriedemartigny.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonneriedemartigny.ca", "logo_url": "https://savonneriedemartigny.ca/boutique/image/catalog/folicon-ConvertImage.jpg 11.jpg", "cover_url": null, "description_meta": "Des savons et des bougies fabriqu\u00e9s de fa\u00e7on artisanale avec des ingr\u00e9dients naturels aux multiples bienfaits pour le corps. Plusieurs ateliers de fabrication offerts sur place.", "site_name": "Savonnerie De Martigny"}
\ No newline at end of file
added data/enrich_cache/savonneriediligences.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonneriediligences.ca", "logo_url": "https://savonneriediligences.ca/cdn/shop/files/animation-savonnerie-diligences_32x32.gif?v=1657593227", "cover_url": "http://savonneriediligences.ca/cdn/shop/files/savonnerie.jpg?v=1772569512", "description_meta": "Savonnerie artisanale \u00e0 Saint-Raymond, Qu\u00e9bec, o\u00f9 nos savons sont faits \u00e0 la main, avec amour depuis 2005.", "site_name": "Savonnerie des Diligences"}
\ No newline at end of file
added data/enrich_cache/savonneriefermeaudet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonneriefermeaudet.com", "logo_url": "https://savonneriefermeaudet.com/favicon.ico", "cover_url": "http://savonneriefermeaudet.com/cdn/shop/files/Ferme_Audet_-_2022-83_b71e765d-139a-4103-844d-fd7b69af42ed.jpg?v=1686242654", "description_meta": "lait de ch\u00e8vre, savons, boutique en ligne, ile d&#39;orl\u00e9ans, quebec, ferme audet, fromagerie, savonnerie", "site_name": "Savonnerie Ferme Audet"}
\ No newline at end of file
added data/enrich_cache/savonnerielapaysanne.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonnerielapaysanne.ca", "logo_url": "https://images.panierdachat.app/68/KPdS8zes_5ef1100d77b2a.png?w=32&amp;h=32&amp;fit=max", "cover_url": "https://images.panierdachat.app/68/OwW0mp2s_logo-savonnerie-paysanne-102be223-1cbe-485f-ba39-aec31b142faf.png?w=1200&h=630&fit=fill", "description_meta": "La Savonnerie la Paysanne, situ\u00e9e \u00e0 Mont-Tremblant dans les Laurentides, vous offre des produits corporels z\u00e9ro d\u00e9chet fabriqu\u00e9s \u00e0 partir d", "site_name": "Savonnerie la Paysanne"}
\ No newline at end of file
added data/enrich_cache/savonshermosa.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonshermosa.ca", "logo_url": "https://www.savonshermosa.ca/uploads/b/4be5a460-dce3-11ea-a290-dd60ff8fbc69/icon_180x180_ios_MzczNz.png?width=180", "cover_url": null, "description_meta": "Savonnerie artisanale dans les Laurentides se sp\u00e9cialisant dans la fabrication de savons au lait de ch\u00e8vre et autres produits.", "site_name": "Savons Hermosa"}
\ No newline at end of file
added data/enrich_cache/savonslesperlesdulac.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonslesperlesdulac.com", "logo_url": "https://savonslesperlesdulac.com/wp-content/uploads/2023/10/cropped-Favicon_Les-Perles-du-Lac-180x180.png", "cover_url": null, "description_meta": "La fabrique de savon artisanale Les Perles du Lac est bas\u00e9e \u00e0 Mittersheim, au bord du Lac Vert. Nous y fabriquons des savons avec passion et amour...", "site_name": "Les Perles du Lac"}
\ No newline at end of file
added data/enrich_cache/savonsmy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savonsmy.com", "logo_url": "https://savonsmy.com/cdn/shop/files/logo-savons-my-savonnerie-artisanale-quebec.webp?crop=center&height=32&v=1695493911&width=32", "cover_url": "http://savonsmy.com/cdn/shop/files/Logo_Savons_My_V3.jpg?height=628&pad_color=fdfbf7&v=1699989314&width=1200", "description_meta": "Savons My, une savonnerie qu\u00e9b\u00e9coise artisanale qui prend soin de votre peau avec des produits naturels. D\u00e9couvrez nos cr\u00e9ations uniques d\u00e8s maintenant!", "site_name": "Savons My"}
\ No newline at end of file
added data/enrich_cache/savoura.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "savoura.com", "logo_url": "https://savoura.com/wp-content/uploads/2024/12/cropped-SAV-Tomate-RGB-180x180.png", "cover_url": "https://savoura.com/wp-content/uploads/2024/12/cropped-SAV-Tomate-RGB.png", "description_meta": "Des tomates et des fraises savoureusement cultiv\u00e9es en serre au Qu\u00e9bec!", "site_name": "Savoura"}
\ No newline at end of file
added data/enrich_cache/scaro.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "scaro.ca", "logo_url": "https://scaro.ca/wp-content/uploads/2024/10/scaro-beetle-180.png", "cover_url": "https://scaro.ca/wp-content/uploads/2016/11/logo.png", "description_meta": "Bijoux SCARO faits \u00e0 la main au Qu\u00e9bec, en argent sterling et en or. Bijoux haut de gamme et inspir\u00e9s de la nature. Scarab\u00e9es symboliques.", "site_name": "Bijoux SCARO par Caroline Arbour, joailli\u00e8re"}
\ No newline at end of file
added data/enrich_cache/scenessismiques.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "scenessismiques.ca", "logo_url": "https://static.wixstatic.com/media/74f77d_4a0ef3cbce8d4f49ab85b8b1ff45a21f%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/74f77d_4a0ef3cbce8d4f49ab85b8b1ff45a21f%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/scopserv.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "scopserv.com", "logo_url": "https://www.scopserv.com/apple-touch-icon.png", "cover_url": "https://www.scopserv.com/site_tb.jpg", "description_meta": "La solution pour vos communications d\u2019entreprise en t\u00e9l\u00e9phonie IP", "site_name": "ScopServ International Inc"}
\ No newline at end of file
added data/enrich_cache/scottsmiraclegro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "scottsmiraclegro.com", "logo_url": "https://scottsmiraclegro.com/on/demandware.static/Sites-SMG-Site/-/default/dwf32122f6/images/favicon-180.png", "cover_url": "https://smg.widen.net/content/zijnxap2iw/webp/SMG_3Leaf_Vector_Black_100325.webp?position=c&amp;color=ffffffff&amp;quality=80&amp;retina=true&amp;u=tlzjla", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/sebs-soaps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sebs-soaps.com", "logo_url": "https://sebs-soaps.com/cdn/shop/files/SS-Antique-Brass_Logo.svg?crop=center&height=32&v=1730567710&width=32", "cover_url": "http://sebs-soaps.com/cdn/shop/files/website-video-background-image_47efe349-502d-4b27-b0f4-7b8efc85626d.webp?v=1730944674", "description_meta": "Discover Seb&#39;s Soaps: Eco-friendly cold-processed, vegan soaps not tested on animals, inspired by French techniques. Effective and gentle on the skin, while being respectful to the planet.", "site_name": "Seb&#39;s Soaps"}
\ No newline at end of file
added data/enrich_cache/secheurs-cueilleurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "secheurs-cueilleurs.com", "logo_url": "https://secheurs-cueilleurs.com/favicon-196x196.png", "cover_url": null, "description_meta": "Plongez dans notre jardin de bien-\u00eatre. Plantes m\u00e9dicinales, fleurs s\u00e9ch\u00e9es & tisanes naturelles. Ateliers pour une connexion authentique \u00e0 la nature.", "site_name": "S\u00e9cheurs Cueilleurs"}
\ No newline at end of file
added data/enrich_cache/secure-exchanges.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "secure-exchanges.com", "logo_url": "https://www.secure-exchanges.com/_v20260811-7/images/favicon.svg", "cover_url": "https://www.secure-exchanges.com/images/og/home-en.jpg", "description_meta": "Canadian platform for confidential document exchange and ZeroVu e-signature. Zero-knowledge architecture, private Tier 3 Canadian data centres. PIPEDA and Law 25 compliant.", "site_name": "Secure Exchanges"}
\ No newline at end of file
added data/enrich_cache/secure3.xpayrience.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "secure3.xpayrience.com", "logo_url": "https://secure3.xpayrience.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/seed-me.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "seed-me.com", "logo_url": "https://seed-me.com/cdn/shop/files/android-chrome-512x512_32x32.png?v=1689006413", "cover_url": "http://seed-me.com/cdn/shop/files/P0A7590-Edit_11c1693e-de52-4842-a7d3-46eb2c2d0007_1200x1200.jpg?v=1645207681", "description_meta": "Seed-based energy snacks that are made of organic, plant-based, vegan snacks that are NUT-FREE, GLUTEN-FREE, DAIRY-FREE and SCHOOL SAFE!", "site_name": "seedme"}
\ No newline at end of file
added data/enrich_cache/seletcaramel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "seletcaramel.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/selsaintlaurent.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "selsaintlaurent.com", "logo_url": "https://selsaintlaurent.com/cdn/shop/files/SSL_favicon_32_e2a4b34b-f57e-4be3-bd64-57d046d99bbb.png?v=1626920035", "cover_url": "http://selsaintlaurent.com/cdn/shop/files/ssljuly23021_1_1_2_1200x1200.jpg?v=1745882206", "description_meta": "D\u00e9couvrez nos flocons de sel de mer du Qu\u00e9bec r\u00e9colt\u00e9s \u00e0 la main. Notre technique novatrice d\u2019extraction \u00e0 froid met en valeur notre nordicit\u00e9 tout en r\u00e9duisant notre empreinte \u00e9cologique. Sublimez vos cr\u00e9ations culinaires, et ce, \u00e0 chaque repas. Recommand\u00e9 pour ses bienfaits sur la sant\u00e9.", "site_name": "Sel Saint Laurent"}
\ No newline at end of file
added data/enrich_cache/selvrituel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "selvrituel.com", "logo_url": "https://selvrituel.com/favicon.ico", "cover_url": "http://selvrituel.com/cdn/shop/files/74758f1d-9551-4b3f-a4d7-3ce7e083408c_b881cd2f-1a2c-4e16-bd98-d1cee0f9aa8b.png?v=1779470293", "description_meta": "Soins naturels pour le bain et le corps faits \u00e0 la main \u00e0 Montr\u00e9al. D\u00e9couvrez les rituels SELV : produits sensoriels, bien-\u00eatre et relaxation \u00e0 la maison.", "site_name": "Selv Rituel"}
\ No newline at end of file
added data/enrich_cache/seme-saveurs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "seme-saveurs.com", "logo_url": "https://static.wixstatic.com/media/c89cb8_c49588a2557440cb9ff128b1335cb4e9%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/c89cb8_c49588a2557440cb9ff128b1335cb4e9%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/c89cb8_6ce1741c218a47349360cef254502c6f~mv2.jpg/v1/fill/w_2500,h_788,al_c/c89cb8_6ce1741c218a47349360cef254502c6f~mv2.jpg", "description_meta": "S\u00e8me-Saveurs : Trucs et astuces pour cultiver, incorporer et cuisiner vos fines herbes, fruits et l\u00e9gumes dans votre quotidien", "site_name": "S\u00e8me-Saveurs"}
\ No newline at end of file
added data/enrich_cache/semencesancestrales.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "semencesancestrales.com", "logo_url": "https://semencesancestrales.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/semencesnouveaumonde.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "semencesnouveaumonde.com", "logo_url": "https://static.wixstatic.com/media/2418dc_1498b5bb400e49da988e3680635d975c%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/2418dc_1498b5bb400e49da988e3680635d975c%7Emv2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/semencesrdr.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "semencesrdr.com", "logo_url": "https://www.semencesrdr.com/favicon.ico", "cover_url": null, "description_meta": "RDR Grains et Semences : Producteur, distributeur et d\u00e9taillant de grains et semences biologiques et de semences g\u00e9n\u00e9alogiques. Avoine, bl\u00e9, son, ma\u00efs, orge, sarrasin, soya, c\u00e9r\u00e9ales, fourrag\u00e8res\u0085 | T\u00e9l\u00e9phone : 819 293-2001 | 3680, Rang des Soixante, Nicolet (Qu\u00e9bec) J3T 1P4", "site_name": null}
\ No newline at end of file
added data/enrich_cache/semican360.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "semican360.com", "logo_url": "https://e2pnhtwazps.exactdn.com/wp-content/uploads/2024/11/cropped-favicon.png?strip=all&#038;resize=180%2C180", "cover_url": "https://semican360.com/wp-content/uploads/2026/04/semican-centre-recherche-semencier-essais-au-champ-drone-scaled.jpg", "description_meta": "Semican accompagne les producteurs et l\u2019industrie agroalimentaire avec des semences performantes, de la nutrition animale de qualit\u00e9 et des grains transform\u00e9s.", "site_name": "Semican"}
\ No newline at end of file
added data/enrich_cache/sensat.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sensat.ca", "logo_url": "https://sensat.ca/img/favicon.ico?1737467103", "cover_url": null, "description_meta": null, "site_name": "sensat"}
\ No newline at end of file
added data/enrich_cache/senseaura.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "senseaura.ca", "logo_url": "https://senseaura.ca/cdn/shop/files/logo-senseura-seul_32x32.png?v=1613521884", "cover_url": "http://senseaura.ca/cdn/shop/files/Logo-senseaura-rectangle-lr_54736e51-c206-45ca-8182-5e4f73ecf99c_grande.jpg?v=1632153573", "description_meta": "D\u00e9couvre La Savonnerie artisanale Senseaura, expert en fabrication de savons naturels et produits corporels naturels ainsi que vente d&#39;huile essentielle depuis 2014. Fabriqu\u00e9 au Qu\u00e9bec. Achat en ligne, Livraison gratuite !", "site_name": "Senseaura"}
\ No newline at end of file
added data/enrich_cache/sentierdescaps.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sentierdescaps.com", "logo_url": "https://www.sentierdescaps.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/seona.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "seona.com", "logo_url": "https://seona.com/cdn/shop/files/O_Favicon.png?crop=center&height=32&v=1704908622&width=32", "cover_url": "http://seona.com/cdn/shop/files/Crystal_earrings_in_every_color.png?v=1773379680", "description_meta": "Discover Seona crystal earrings in every color. Precision-cut crystals with refined finishes. Hypoallergenic, waterproof, and tarnish-resistant. Find your color.", "site_name": "Seona"}
\ No newline at end of file
added data/enrich_cache/sepaq.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sepaq.com", "logo_url": "https://s3.amazonaws.com/imagescloud/images/icones/apple-touch-icon.png", "cover_url": "https://s3.amazonaws.com/imagescloud/images/home/2026/20260608.jpg", "description_meta": "La S\u00e9paq - Soci\u00e9t\u00e9 des \u00e9tablissements de plein air du Qu\u00e9bec - offre de l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/serrebj.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "serrebj.qc.ca", "logo_url": "https://serrebj.qc.ca/cdn/shop/files/bdj-favicon_32x32.png?v=1614346925", "cover_url": "http://serrebj.qc.ca/cdn/shop/files/LogoFB_1200x1200.jpg?v=1608517384", "description_meta": "Tr\u00e8s grand complexe de serres situ\u00e9 \u00e0 Saint-Nazaire au Saguenay Lac-St-Jean. Fier producteur de plantes annuelles, de plants de l\u00e9gumes et de fines herbes certifi\u00e9s biologiques. Producteur de concombres anglais et de poivrons de serres.", "site_name": "Serres Belle-de-Jour"}
\ No newline at end of file
added data/enrich_cache/serresharnois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "serresharnois.com", "logo_url": "https://serresharnois.com/wp-content/uploads/2023/11/Harnois_serres_favicon.svg", "cover_url": "https://serresharnois.com/wp-admin/admin-ajax.php?action=rank_math_overlay_thumb&id=1894&type=harnois&hash=fbeec6053439ab9c30b47ad41e3e2575", "description_meta": "Serres Harnois con\u00e7oit et fabrique des serres commerciales durables depuis 60 ans : grands tunnels, individuelles, jumel\u00e9es et verre.", "site_name": "Serres Harnois Greenhouses"}
\ No newline at end of file
added data/enrich_cache/serresleciel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "serresleciel.com", "logo_url": "https://serresleciel.com/img/favicon/apple-touch-icon.png", "cover_url": "https://serresleciel.com/app/uploads/2024/02/serres-bertrand-23-2-1398x1049.jpg", "description_meta": "Leciel, c\u2019est une histoire de valeurs, port\u00e9e par la famille Bertrand de g\u00e9n\u00e9ration en g\u00e9n\u00e9ration. Producteur de l\u00e9gumes, nous cultivons pour l&#039;avenir.", "site_name": "Serres Leciel"}
\ No newline at end of file
added data/enrich_cache/serreslemontvert.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "serreslemontvert.ca", "logo_url": "https://static.wixstatic.com/media/8d6a3c_8da18b848d34494dac59036f6bf08137%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/8d6a3c_8da18b848d34494dac59036f6bf08137%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/8d6a3c_763af7c8a4ad4331b68cdd850e024afb~mv2.jpg/v1/fill/w_2500,h_2500,al_c/8d6a3c_763af7c8a4ad4331b68cdd850e024afb~mv2.jpg", "description_meta": null, "site_name": "Serres Le Mont Vert"}
\ No newline at end of file
added data/enrich_cache/serreslouiseturcotte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "serreslouiseturcotte.com", "logo_url": "https://serreslouiseturcotte.com/owebo-votresite/sites/default/files/images/Image_pour_favicon.png", "cover_url": "https://serreslouiseturcotte.com/sites/default/files/images/logoSerresVecto.jpg", "description_meta": "Production et vente de plants de fleurs annuelles, plants de l\u00e9gumes, plants de fines herbes. Sp\u00e9cialit\u00e9: jardini\u00e8res, pots de patio. Confection sur mesure.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/serrespointdujour.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "serrespointdujour.com", "logo_url": "https://serrespointdujour.com/wp-content/uploads/2022/08/cropped-LOGO_COULEUR-3-180x180.png", "cover_url": null, "description_meta": "Nous sommes des passionn\u00e9s de l\u2019agriculture avec pour mission de vous offrir \u00e0 longueur d\u2019ann\u00e9e les meilleures tomates raisins, tomates rouges et poivrons.", "site_name": "Les serres point du jour"}
\ No newline at end of file
added data/enrich_cache/serrestoundra.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "serrestoundra.com", "logo_url": "https://www.serrestoundra.com/cdn/shop/files/favicon1_dd5f3ad2-3e2f-4ba7-924d-8863d60c711a.png?crop=center&height=32&v=1681834115&width=32", "cover_url": "http://www.serrestoundra.com/cdn/shop/files/toundra.png?v=1681321458", "description_meta": "Dans notre Toundra, tout est pens\u00e9 pour que nos l\u00e9gumes aient le \u00abcrounch\u00bb parfait beau temps, mauvais temps, \u00e9t\u00e9 comme hiver. On innove pour cultiver fra\u00eecheur, couleurs et saveurs afin d\u2019offrir aux gens de chez nous de sympathiques l\u00e9gumes nordiques.", "site_name": "Les l\u00e9gumes Toundra"}
\ No newline at end of file
added data/enrich_cache/serresverrier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "serresverrier.ca", "logo_url": "https://serresverrier.ca/favicon.ico", "cover_url": null, "description_meta": "Les Serres Verrier est une entreprise drummondvilloise oeuvrant dans le domaine de la serriculture. Les produits cultiv\u00e9s sont plusieurs vari\u00e9t\u00e9s de tomates et de concombres, en plus de la laitue fris\u00e9e.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/servab.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "servab.ca", "logo_url": "https://www.servab.ca/wp-content/uploads/2026/06/Servab-Favicon.svg", "cover_url": "http://www.servab.ca/wp-content/uploads/2025/05/entete-apropos.jpg", "description_meta": "Servab est un distributeur de produits alimentaires, sanitaires et d\u2019emballage situ\u00e9 \u00e0 New Richmond, dans la Baie-des-Chaleurs.", "site_name": "Servab"}
\ No newline at end of file
added data/enrich_cache/setaorganic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "setaorganic.com", "logo_url": "https://setaorganic.com/cdn/shop/files/favicon.png?crop=center&height=48&v=1742300793&width=48", "cover_url": null, "description_meta": "SETA utilise la puissance des superaliments pour cr\u00e9er des m\u00e9langes nutritifs 100 % naturels \u00e0 base de plantes. Des smoothies et latt\u00e9s faciles \u00e0 pr\u00e9parer afin de simplifier ton quotidien.", "site_name": "SETA Organic"}
\ No newline at end of file
added data/enrich_cache/seveetboucane.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "seveetboucane.ca", "logo_url": "https://www.seveetboucane.ca/favicon.ico?v=7kop60MBNt", "cover_url": "https://portal.restodata.ca/seve-et-boucane/gallery/images/01_seve-et-bo_905-2025-10-28.jpg", "description_meta": "S\u00e8ve et boucane est un restaurant Fumoir-Smokehouse situ\u00e9 au 166 Rang des Continuations \u00e0 Saint-Esprit. Voir le menu, \u00e9valuations et r\u00e9servez. S\u00e8ve et boucane Traiteur, fumoir et cabane \u00e0 sucre", "site_name": "S\u00e8ve et boucane"}
\ No newline at end of file
added data/enrich_cache/shakercuisineetmixologie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "shakercuisineetmixologie.com", "logo_url": "https://www.shakercuisineetmixologie.com/apple-touch-icon.png?x69054", "cover_url": "https://www.shakercuisineetmixologie.com/files/2025/09/280952311_5579904302028480_6070343311532197429_n-1.jpg", "description_meta": "Le SHAKER Cuisine &amp; Mixologie, LA place pour bien BOIRE, bien MANGER et bien S\u2019ENTOURER.", "site_name": "Shaker"}
\ No newline at end of file
added data/enrich_cache/share.google.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "share.google", "logo_url": "https://share.google/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/shawbridge.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "shawbridge.ca", "logo_url": "https://shawbridge.ca/wp-content/uploads/2020/10/favicon.ico", "cover_url": "https://shawbridge.ca/wp-content/uploads/2018/05/logo-shawbridge-1.png", "description_meta": "La Microbrasserie Charcuteries Shawbridge est l&#039;endroit id\u00e9al pour prendre une bonne bi\u00e8re et une bonne bouffe entre bons vivants.", "site_name": "Microbrasserie Charcuteries Shawbridge"}
\ No newline at end of file
added data/enrich_cache/sherbrooke.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sherbrooke.ca", "logo_url": "https://www.sherbrooke.ca/assets/images/favicons/apple-touch-icon.png?v=2", "cover_url": "https://www.sherbrooke.ca/Fichiers/3337a882-4a53-e611-80ea-00155d09650f/Sites/333ba32f-4b53-e611-80ea-00155d09650f/ImagesPartage/default-share.jpg", "description_meta": "Site officiel de la Ville de Sherbrooke. Renseignements pratiques, actualit&#xE9;s, &#xE9;v&#xE9;nements, signalements, sports et vie municipale.", "site_name": "Ville de Sherbrooke"}
\ No newline at end of file
added data/enrich_cache/shop.clubkombucha.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "shop.clubkombucha.ca", "logo_url": "https://shop.clubkombucha.ca/cdn/shop/files/can-80_32x32.png?v=1613542828", "cover_url": "http://shop.clubkombucha.ca/cdn/shop/files/social-shopify_1200x1200.jpg?v=1613542855", "description_meta": "Achetez nos kombuchas Baies, Gingembre, Pamplemousse et Framboise en ligne! Nos produits sont disponibles en caisses de 12 ou 24. Livraison gratuite au Qu\u00e9bec \u00e0 l&#39;achat d&#39;une caisse de 24!", "site_name": "Club Kombucha"}
\ No newline at end of file
added data/enrich_cache/shop.olabamboo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "shop.olabamboo.com", "logo_url": "https://shop.olabamboo.com/cdn/shop/files/cropped-O-1576x1600.png?crop=center&height=32&v=1722689304&width=32", "cover_url": "http://shop.olabamboo.com/cdn/shop/files/home-share.jpg?v=1722385945&width=1536", "description_meta": "OLA Bamboo offre une vari\u00e9t\u00e9 de produits \u00e9cologiques bambou \u00e0 utiliser au quotidien. LIVRAISON GRATUITE \u00e0 l&#39;achat de 75$ et plus au Canada.", "site_name": "OLA Bamboo"}
\ No newline at end of file
added data/enrich_cache/shopmoica.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "shopmoica.ca", "logo_url": "https://shopmoica.ca/cdn/shop/files/favicon-shop-moi-ca_32x32.png?v=1661890861", "cover_url": "http://shopmoica.ca/cdn/shop/files/boites_cadeaux_shop_moi_ca_a7b71149-caeb-467a-80b7-085ec17626bd.png?v=1626875936", "description_meta": "Offrez le Qu\u00e9bec en cadeau! Bo\u00eetes cadeaux rassemblant des produits d&#39;entreprises et d&#39;artisans du Qu\u00e9bec. Cadeaux pr\u00eats \u00e0 livrer ou sur mesure pour femmes, hommes et b\u00e9b\u00e9. Cadeaux corporatifs et \u00e9v\u00e9nementiels aussi offerts. Livraison rapide et gratuite*. Pour des cadeaux tout faits, tout pr\u00eats.", "site_name": "Shop moi \u00e7a"}
\ No newline at end of file
added data/enrich_cache/siboire.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "siboire.ca", "logo_url": "https://siboire.ca/assets/logo.svg", "cover_url": "https://siboire.ca/assets/a-propos-infos.jpg", "description_meta": "Depuis 2007, la microbrasserie Siboire vous fait vivre une exp\u00e9rience brassicole de premier choix \u00e0 travers la qualit\u00e9 de ses bi\u00e8res et de son service \u00e0 la client\u00e8le. Avec ses trois succursales de Sherbrooke et de Montr\u00e9al, ainsi que sa boutique situ\u00e9e en plein coeur du centre-ville de Sherbrooke, l\u2019\u00e9quipe du Siboire est reconnue pour faire vivre une exp\u00e9rience unique \u00e0 tous ceux qui traversent se", "site_name": null}
\ No newline at end of file
added data/enrich_cache/sibonfoods.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sibonfoods.ca", "logo_url": "https://sibonfoods.ca/wp-content/themes/sibon/images/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "Notre mission est de simplifier la vie de tous les jours et de contribuer au bien-\u00eatre des consommateurs en ayant le souci de la s\u00e9curit\u00e9 alimentaire.", "site_name": "Sibon Foods inc."}
\ No newline at end of file
added data/enrich_cache/sifacilecuisine.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sifacilecuisine.com", "logo_url": "https://sifacilecuisine.com/cdn/shop/files/sifacilelogo.png?crop=center&height=32&v=1727098770&width=32", "cover_url": null, "description_meta": "Si Facile", "site_name": "Si Facile"}
\ No newline at end of file
added data/enrich_cache/siffle-orange.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "siffle-orange.com", "logo_url": "https://siffle-orange.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/siffleux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "siffleux.ca", "logo_url": "https://siffleux.ca/cdn/shop/files/logo_page_web.png?crop=center&height=32&v=1700059568&width=32", "cover_url": "http://siffleux.ca/cdn/shop/files/siffleux-vert.png?height=628&pad_color=ffffff&v=1700059583&width=1200", "description_meta": "Les Siffleux, alternative au caf\u00e9, breuvages vitalit\u00e9s, boissons chaudes faites au Qu\u00e9bec", "site_name": "Les Siffleux, breuvages torr\u00e9fi\u00e9s"}
\ No newline at end of file
added data/enrich_cache/sigewigus.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sigewigus.com", "logo_url": "https://sigewigus.com/wp-content/uploads/2021/12/favicon-300x300.png", "cover_url": "https://sigewigus.com/wp-content/uploads/2024/03/ImageDePartage-03-B.jpg", "description_meta": "SigewigusSismo&rsquo;qonapu Sirop d\u2019\u00e9rable enti\u00e8rement r\u00e9colt\u00e9, produit, et transform\u00e9 sur le Gespe\u2019gewa\u2019gi, territoire ancestral des Mi\u2019gmaq de Gespeg Acheter en ligne Trouver un point de vente Pjila\u2019si Bienvenue Welcome Pjila\u2019si Bienvenue Welcome Depuis des temps imm\u00e9moriaux, les Peuples autochtones de l\u2019est du Canada et du nord-est des \u00c9tats-Unis, dont les Mi\u2019gmaq, r\u00e9coltent la s\u00e8ve des \u00e9rables", "site_name": "\u00c9rabli\u00e8re Sigewigus"}
\ No newline at end of file
added data/enrich_cache/signe-madeleine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "signe-madeleine.ca", "logo_url": "https://signe-madeleine.ca/wp-content/uploads/2026/04/cropped-logo-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/signecameline.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "signecameline.com", "logo_url": "https://signecameline.com/cdn/shop/files/SIGNECAMELINE_LOGO10ANS_carre.png?crop=center&height=32&v=1744298241&width=32", "cover_url": "https://cdn.shopify.com/s/files/1/0779/7450/3714/files/carrousel_produits_42db3b89-5dcf-4e4e-b63b-a3d626528be5.jpg?v=1718828838", "description_meta": "Olim\u00e9ga est une entreprise familiale qui a pour mission de faire conna\u00eetre la cam\u00e9line aux consommateurs et de mettre en march\u00e9 des produits de qualit\u00e9.", "site_name": "Sign\u00e9 Cam\u00e9line"}
\ No newline at end of file
added data/enrich_cache/signerochefort.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "signerochefort.com", "logo_url": "https://signerochefort.com/assets/ico/icon-512x512.png", "cover_url": "https://signerochefort.com/assets/ico/share-icon.jpg", "description_meta": "Sign&eacute; Rochefort Location touristique &nbsp; &Eacute;v&eacute;nements sur mesure &nbsp; &nbsp;", "site_name": "Sign&eacute; Rochefort"}
\ No newline at end of file
added data/enrich_cache/silknsoak.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "silknsoak.com", "logo_url": "https://www.silknsoak.com/cdn/shop/files/logo_silknsoak_leaf.png?crop=center&height=48&v=1666988293&width=48", "cover_url": "http://www.silknsoak.com/cdn/shop/files/OFFICIAL_SILKNSOAK_LOGO_no_line_c2b932ac-e37a-4379-b8e0-57df9efd24a2.png?v=1648844404", "description_meta": "A Quebec-based bath and body company, dedicated to create fresh handmade products. Revitalize your morning routine with our all-natural shower steamers cube. Infused with essential oils, our shower steamers release a refreshing burst of aromatherapy to help wake you up and clear your mind and release stress.", "site_name": "SILKNSOAK"}
\ No newline at end of file
added data/enrich_cache/simkhabiocosmetiques.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "simkhabiocosmetiques.ca", "logo_url": "https://www.simkhabiocosmetiques.ca/favicon.ico", "cover_url": "https://www.simkhabiocosmetiques.ca/wp-content/uploads/2023/07/produits2.jpg", "description_meta": "SIMKHA est une marque de cosm\u00e9tiques 100% naturels et fabriqu\u00e9s au Qu\u00e9bec pour toute la famille. Visitez notre boutique en ligne!", "site_name": "SIMKHA"}
\ No newline at end of file
added data/enrich_cache/simplemalt.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "simplemalt.com", "logo_url": "https://simplemalt.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Simple Malt"}
\ No newline at end of file
added data/enrich_cache/simplementlebeaumarche.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "simplementlebeaumarche.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/6606c065c2050125e322d5fb/6f67cb74-a20f-4bda-b2ae-925e0395d269/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/6606c065c2050125e322d5fb/t/6622b8ebb524b83f83cac56f/1713551595447/Logo+%2B+Le+Beau+March%C3%A9+Vert+For%C3%AAt-01.png?format=1500w", "description_meta": null, "site_name": "Le Beau March\u00e9"}
\ No newline at end of file
added data/enrich_cache/sinaigourmet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sinaigourmet.com", "logo_url": "https://sinaigourmet.com/wp-content/uploads/2025/01/logo-sinaigourmet.png", "cover_url": "https://sinaigourmet.com/wp-content/uploads/2023/08/ketchup-1-570x570.jpg", "description_meta": "Sinai Gourmet Clean Label Condiments offers a variety of hot sauce, hot honey, maple syrup and bbq sauce. Sinai Gourmet\u2019s mission is to create unique, clean label, delicious sauces that start with a respect for premium ingredient. Each sauce is carefully curated and balanced to add amazing flavour to recipes.", "site_name": "Sinai Gourmet Clean Label Condiments"}
\ No newline at end of file
added data/enrich_cache/siprocaf.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "siprocaf.com", "logo_url": "https://siprocaf.com/favicon.ico", "cover_url": null, "description_meta": "Professional Espresso Barista services", "site_name": null}
\ No newline at end of file
added data/enrich_cache/sites.google.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sites.google.com", "logo_url": "https://accounts.google.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/skylarpress.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "skylarpress.com", "logo_url": "https://skylarpress.com/favicon.ico", "cover_url": "https://www.skylarpress.com/Logo Skylar Press.png", "description_meta": "Skylar Press est l", "site_name": null}
\ No newline at end of file
added data/enrich_cache/sloedesign.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sloedesign.ca", "logo_url": "https://sloedesign.ca/wp-content/uploads/2026/04/cropped-Website-thumbail_EXP-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/smartcatdesign.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "smartcatdesign.net", "logo_url": "https://smartcatdesign.net/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/snoland.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "snoland.com", "logo_url": "https://images.panierdachat.app/41/7LxVKjDh_favicon.jpg?w=32&amp;h=32&amp;fit=max", "cover_url": "https://images.panierdachat.app/41/yTaSsPSC_vxslpwof-logo-transparente-negro1.png?w=1200&h=630&fit=fill", "description_meta": "Sacs en cuir con\u00e7us et fabriqu\u00e9s \u00e0 Montr\u00e9al, Qu\u00e9bec Canada. Style Moderne Minimaliste. Malette Briefcase Duffle Messager Weekender Sac ordinateur Homme Femme", "site_name": "SNOLAND Canada"}
\ No newline at end of file
added data/enrich_cache/societelaurentide.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "societelaurentide.ca", "logo_url": "https://societelaurentide.ca/wp-content/uploads/2026/03/cropped-Capture-decran-le-2026-03-13-a-12.30.02-180x180.png", "cover_url": "https://societelaurentide.ca/wp-content/uploads/2024/11/logo-laurentide-75-dark.svg", "description_meta": "Fond\u00e9e en 1950, Soci\u00e9t\u00e9 Laurentide est une entreprise manufacturi\u00e8re familiale de 3e g\u00e9n\u00e9ration, 100 % qu\u00e9b\u00e9coise, qui a choisi, il y a 30 ans, de faire partie de la solution environnementale, et non du probl\u00e8me. Avec le d\u00e9veloppement durable au c\u0153ur de ses pr\u00e9occupations comme moteur d\u2019innovation, Socie\u0301te\u0301 Laurentide et ses filiales sont pleinement engag\u00e9es pour la protection de l\u2019environnement ", "site_name": "Soci\u00e9t\u00e9 Laurentide - Partenaire de confiance 100% canadien"}
\ No newline at end of file
added data/enrich_cache/societesecrete.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "societesecrete.ca", "logo_url": "https://societesecrete.ca/wp-content/uploads/2023/05/cropped-logo-black-180x180.png", "cover_url": "https://societesecrete.ca/wp-content/uploads/2018/09/18076527_1164925003630641_7717202879371645793_o-1024x683.jpg", "description_meta": "[custom-facebook-feed layout=full type=photos num=5 width=100%]", "site_name": "La soci\u00e9t\u00e9 secr\u00e8te"}
\ No newline at end of file
added data/enrich_cache/soiecosmetiques.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "soiecosmetiques.com", "logo_url": "https://kbcosmetiques.com/cdn/shop/files/logo-kb-icone_32x32.png?v=1614347919", "cover_url": "https://cdn.shopify.com/s/files/1/0445/1840/8346/files/KB_cosmetiques_-_LOGO_Officiel_Carre.png?height=628&pad_color=ffffff&v=1614349892&width=1200", "description_meta": "Produits haut de gamme de soins du visage (SOIE), de maquillage (OSE!) et de soins corporels (SPORTEK), abordables et fabriqu\u00e9es au Canada.", "site_name": "KB Cosmetiques"}
\ No newline at end of file
added data/enrich_cache/soifdecidre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "soifdecidre.com", "logo_url": "https://soifdecidre.com/cdn/shop/t/2/assets/favicon.png?v=1130", "cover_url": "http://soifdecidre.com/cdn/shop/files/festival_montreal_cidre_quebecois_ete.png?v=1743189759", "description_meta": "L&#39;\u00e9v\u00e9nement le plus cidr\u00e9 du Qu\u00e9bec ! Viens nous voir du 27 au 29 juin au Canal de Lachine \u00e0 Mtl et profite de bonnes d\u00e9gustations, danse, joue, amuse-toi, et encourage nos producteurs qu\u00e9b\u00e9cois ! Ach\u00e8te ton billet d\u00e8s maintenant !", "site_name": "Soif de Cidre"}
\ No newline at end of file
added data/enrich_cache/soifdevoyages.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "soifdevoyages.com", "logo_url": "https://soifdevoyages.com/wp-content/uploads/2018/03/cropped-download-300x300.png", "cover_url": "https://soifdevoyages.com/wp-content/uploads/29497558_1639002156193352_4568379025861352082_n.png", "description_meta": "Blog voyage d&#039;une fran\u00e7aise \u00e0 Montr\u00e9al ! Retrouve mes bons plans, mes bonnes adresses et ma vie d&#039;expat au Canada!", "site_name": "Soif de Voyages"}
\ No newline at end of file
added data/enrich_cache/sojaco.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sojaco.ca", "logo_url": "https://sojaco.ca/cdn/shop/files/favicon-32x32_b1c075be-d139-4173-868a-01342bca900c_32x32.png?v=1690557609", "cover_url": "https://sojaco.ca/cdn/shop/files/generic-share-link.jpg?v=1755268504", "description_meta": "Scented candles, diffusers, body care and home fragrance products made in Montr\u00e9al, Canada with natural and toxin-free ingredients. Certified B Corp. Shipping across Canada and the United States.", "site_name": "SOJA&amp;CO."}
\ No newline at end of file
added data/enrich_cache/sojadici.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sojadici.com", "logo_url": "https://sojadici.com/wp-content/uploads/2024/01/cropped-soja-favicon-300x300.png", "cover_url": "https://sojadici.com/wp-content/uploads/2023/04/pl-img-accueil-scaled.jpg", "description_meta": "Soj\u00e0, c&#039;est une marque de produits \u00e0 base de soya bio local qui parle fi\u00e8rement avec l&#039;accent qu\u00e9b\u00e9cois.", "site_name": "Soj\u00e0 d&#039;ici"}
\ No newline at end of file
added data/enrich_cache/sokette.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sokette.ca", "logo_url": "https://sokette.ca/favicon.ico", "cover_url": null, "description_meta": "Chaussette en bambou", "site_name": "Sokette Canada"}
\ No newline at end of file
added data/enrich_cache/solariumoptimum.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "solariumoptimum.com", "logo_url": "https://solariumoptimum.com/qc/wp-content/uploads/2022/08/cropped-logo_solarium_optimum-180x180.jpg", "cover_url": "https://solariumoptimum.com/qc/wp-content/uploads/2022/09/modele_trad-2-1.jpg", "description_meta": "Une gamme de produits uniques dans l\u2019univers des abris 3 saisons, tel que solarium 3 saisons, auvent et abri d\u2019auto permanent et v\u00e9randa !", "site_name": "SOLARIUM Optimum Inc"}
\ No newline at end of file
added data/enrich_cache/solem.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "solem.ca", "logo_url": "https://solem.ca/cdn/shop/files/solem-logo-noir_d9091f97-9be1-46a6-bec8-5dd93c10ba91.png?crop=center&height=32&v=1695827064&width=32", "cover_url": "http://solem.ca/cdn/shop/files/solemlogo.ai.png?crop=center&height=912&v=1697825939&width=1152", "description_meta": "Solem : serviettes en microfibre \u00e9coresponsables, douces, compactes, con\u00e7ues au Qu\u00e9bec. Facile d&#39;entretien. Id\u00e9ales plage, sport ou maison. S\u00e9chage rapide.", "site_name": "Solem"}
\ No newline at end of file
added data/enrich_cache/solioswatches.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "solioswatches.com", "logo_url": "https://www.solioswatches.com/cdn/shop/files/o-logoblk.png?crop=center&height=180&v=1738728288&width=180", "cover_url": "http://www.solioswatches.com/cdn/shop/files/Solios_Solar_Watches_Brand_Image..jpg?crop=center&height=1200&v=1786052981&width=1200", "description_meta": "Premium solar watches, designed in Montr\u00e9al. No dead batteries, no maintenance, sustainably made. B Corp certified. Free shipping and 30-day returns.", "site_name": "Solios Watches"}
\ No newline at end of file
added data/enrich_cache/solutioninfomedia.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "solutioninfomedia.com", "logo_url": "https://solutioninfomedia.com/wp-content/uploads/2021/11/cropped-favicon-180x180.png", "cover_url": "https://solutioninfomedia.com/wp-content/uploads/2026/01/informatique-entreprises-solution-infomedia.jpg", "description_meta": "Services et \u00e9quipements informatiques, d\u00e9veloppement web et logiciel et t\u00e9l\u00e9communication et syst\u00e8mes de s\u00e9curit\u00e9 pour entreprises en Gasp\u00e9sie, au Nouveau-Brunswick et au Qu\u00e9bec.", "site_name": "Solution Infom\u00e9dia"}
\ No newline at end of file
added data/enrich_cache/solutionvalet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "solutionvalet.com", "logo_url": "https://cdn.prod.website-files.com/648c73a293a4c1ae4ace103e/648c73a293a4c1ae4ace10aa_webclip%20solution%20valet.png", "cover_url": null, "description_meta": "Ouvre porte avec le pied. Syst\u00e8me permettant l&#x27;ouverture de la porte sans les mains. Robuste et innovateur. Une solution sanitaire au bout du pied.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/soniaimbeault.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "soniaimbeault.ca", "logo_url": "https://soniaimbeault.ca/favicon.ico", "cover_url": "http://soniaimbeault.ca/cdn/shop/files/logo.png?height=628&pad_color=fff&v=1705948711&width=1200", "description_meta": "Sonia Imbeault Joailli\u00e8re", "site_name": "Sonia Imbeault Joailli\u00e8re"}
\ No newline at end of file
added data/enrich_cache/sophiemanessiez.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sophiemanessiez.com", "logo_url": "https://sophiemanessiez.com/images/apple-touch-icon.png", "cover_url": "https://sophiemanessiez.com/up/2026/02/s-9-t9ta88bc-large.jpg", "description_meta": "Sophie Manessiez est une artiste c\u00e9ramiste. Ses tissages de porcelaine explorent les tensions entre fragilit\u00e9 et r\u00e9sistance, singularit\u00e9 et ensemble.", "site_name": "Sophie Manessiez"}
\ No newline at end of file
added data/enrich_cache/sorcieredepouvoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sorcieredepouvoir.com", "logo_url": "https://www.sorcieredepouvoir.com/uploads/b/c8377240-3fab-11eb-a267-ffcc170a0a40/icon_180x180_ios_NDE1Nj.png?width=180", "cover_url": "https://www.sorcieredepouvoir.com/uploads/b/c8377240-3fab-11eb-a267-ffcc170a0a40/Sorci%C3%A8re%20de%20Pouvoir.png", "description_meta": "Tout pour tes rituels : oracles, cristaux et herbes. Sorci\u00e8re de Pouvoir, la boutique de r\u00e9f\u00e9rence pour la sorci\u00e8re moderne.", "site_name": "Sorciere de Pouvoir"}
\ No newline at end of file
added data/enrich_cache/sorrentopizzeria.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sorrentopizzeria.ca", "logo_url": "https://sorrentopizzeria.ca/assets/images/apple_touch_icon.png", "cover_url": null, "description_meta": "Commandez votre commande ou livraison de pizzas, p\u00e2tes, sous-marins, poulets, poutines et plus, en ligne \u00e0 Chicoutimi.", "site_name": "SorrentoPizzeria"}
\ No newline at end of file
added data/enrich_cache/sosfondue.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sosfondue.ca", "logo_url": "https://sosfondue.ca/wp-content/uploads/2019/08/cropped-SOS-Fondue-ico-180x180.png", "cover_url": "https://sosfondue.ca/wp-content/uploads/2020/01/sos_fondue-117-Edit.jpg", "description_meta": "M\u00e9langes d\u2019authentiques fondues suisses au fromage - sans lactose ni gluten - pr\u00eates \u00e0 l\u2019emploi. Obtenez la meilleure fondue au fromage en 5 minutes!", "site_name": "SOS Fondue"}
\ No newline at end of file
added data/enrich_cache/soumissionscourtiers.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "soumissionscourtiers.ca", "logo_url": "https://soumissionscourtiers.ca/favicon.ico", "cover_url": "https://soumissionscourtiers.ca/wp-content/uploads/2026/04/meilleurs-courtiers.webp", "description_meta": "Obtenez 3 Propositions GRATUITES de 3 Courtiers Immobiliers en 2 mins. Trouvez votre courtier immobilier pour acheter ou vendre une propri\u00e9t\u00e9 \u00e0 Montr\u00e9al, Qu\u00e9bec ou partout en province", "site_name": "Soumissions Courtiers Immobilier - Trouvez votre Courtier &agrave; Montr&eacute;"}
\ No newline at end of file
added data/enrich_cache/soundsgood.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "soundsgood.ca", "logo_url": "https://soundsgood.ca/cdn/shop/files/SoundsGood-Favicon1-2048px_81a21a3d-780f-40ec-96a3-6060bae4a29f_32x32.png?v=1674848566", "cover_url": null, "description_meta": "Browse our catalog of wireless audio products: wireless earbuds, headphones and speakers, plus a selection of everyday essentials like USB-C cables, chargers and more! Enjoy quality products, combining performance, design and affordability.", "site_name": "Sounds Good"}
\ No newline at end of file
added data/enrich_cache/sourismini.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sourismini.com", "logo_url": "https://www.sourismini.com/cdn/shop/files/LogoSM-Bleu-2_1.svg?v=1740602209&width=180", "cover_url": "http://www.sourismini.com/cdn/shop/files/MicrosoftTeams-image_4.png?v=1678903661&width=2048", "description_meta": "V\u00eatements pour b\u00e9b\u00e9s et enfants de 0 \u00e0 12 ans cr\u00e9\u00e9s au Qu\u00e9bec depuis 1989. La qualit\u00e9 des v\u00eatements en fait \u00abla marque qui se partage\u00bb. Magasinez maintenant!", "site_name": "Souris Mini"}
\ No newline at end of file
added data/enrich_cache/sourisverte.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sourisverte.ca", "logo_url": "https://www.sourisverte.ca/web/image/website/2/favicon?unique=2ca029b", "cover_url": "https://www.sourisverte.ca/web/image/website/2/logo?unique=1e29d37", "description_meta": "D\u00e9couvrez les produits naturels, faits au Qu\u00e9bec, pour b\u00e9b\u00e9s, mamans et toute la famille. Soins doux, \u00e9cologiques et efficaces \u2013 Souris Verte.", "site_name": "Souris Verte inc."}
\ No newline at end of file
added data/enrich_cache/souslacouette.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "souslacouette.ca", "logo_url": "https://www.souslacouette.ca/cdn/shop/files/thumbnail_souslacoutte-logo5-p425-mc_motsblancs300_32x32.png?v=1613643032", "cover_url": "https://cdn.shopify.com/s/files/1/0050/5318/6136/files/thumbnail_souslacoutte-logo5-p425-mc_motsblancs300.png?height=628&pad_color=f2f2f2&v=1613643032&width=1200", "description_meta": "Une literie au confort optimal et pratique, confectionn\u00e9e au Qu\u00e9bec, en plus d&#39;un concept unique au design exclusif, de qualit\u00e9 luxueuse, pour vous simplifier la vie. Plusieurs produits haut de gamme : des couettes, des oreillers, des coussins, des housses de couette, des draps.", "site_name": "Sous la couette"}
\ No newline at end of file
added data/enrich_cache/soykei.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "soykei.ca", "logo_url": "https://soykei.ca/wp-content/uploads/2022/06/cropped-Flavicon-180x180.png", "cover_url": null, "description_meta": "Soykei vous offre du tofu fait d&#039;ingr\u00e9dients locaux et biologiques. Une solution durable, d\u00e9licieuse et accessible \u00e0 tous. Go\u00fbtez-y!", "site_name": "Soykei"}
\ No newline at end of file
added data/enrich_cache/soyxpert.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "soyxpert.ca", "logo_url": "https://soyxpert.ca/wp-content/uploads/2022/10/cropped-Soyxpert_Logo_Favicon-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/spcanada.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "spcanada.ca", "logo_url": "https://spcanada.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/spdb.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "spdb.ca", "logo_url": "https://www.spdb.ca/images/icones/apple_touch_57.png", "cover_url": "https://www.spdb.ca/fichiersUploadOpt/1200-0-0-0-1200-630-7540e465b427711098d45eb960404df51729a8c8ba3d3e99b/20250911110107-facebook-partage.png", "description_meta": "Au nom de tous les citoyens et citoyennes de Saint-Patrice-de-Beaurivage, il nous fait plaisir de vous accueillir sur notre site web.", "site_name": "Municipalit\u00e9 de Saint-Patrice-de-Beaurivage"}
\ No newline at end of file
added data/enrich_cache/squareoldchelsea.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "squareoldchelsea.ca", "logo_url": "https://squareoldchelsea.ca/wp-content/uploads/2024/08/favicon-300x300.png", "cover_url": "https://squareoldchelsea.ca/wp-content/uploads/2024/09/soc_fb.jpg", "description_meta": "La gastronomie, d\u00e9tente et culture font de cette destination un endroit juste pour \u00eatre bien au c\u0153ur du village d\u2019Old Chelsea, en Outaouais.", "site_name": "Square Old Chelsea"}
\ No newline at end of file
added data/enrich_cache/ssriverdesigns.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ssriverdesigns.com", "logo_url": "https://ssriverdesigns.com/favicon.ico", "cover_url": "http://ssriverdesigns.com/cdn/shop/files/Attachment-Vector-Logo-PNG.png?v=1619742895", "description_meta": "Artisanal fashion designer Christine Tournier, the creator SS River Designs is for all women who want to celebrate their unique style and spirit in beautiful clothing, beading and sewing!. SS River Designs connects you to art and culture through clothing, workshops and events.", "site_name": "SS River Designs"}
\ No newline at end of file
added data/enrich_cache/st-hubert.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "st-hubert.com", "logo_url": "https://www.st-hubert.com/etc/designs/cara/st-hubert/touch-icon_152.png", "cover_url": "https://www.st-hubert.com/content/dam/cara/en/st-hubert-image-library/generic/LOGO-STH-ROUGE-OPENGRAPH.jpg", "description_meta": "Renomm\u00e9s pour leur poulet BBQ et leur sauce BBQ, les restaurants St-Hubert sauront combler tous vos d\u00e9sirs en mati\u00e8re de poulet. Visitez notre site web !", "site_name": "Bienvenue chez St-Hubert"}
\ No newline at end of file
added data/enrich_cache/stadacone.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stadacone.com", "logo_url": "https://stadacone.com/wp-content/themes/theme_stadacone/images/favicon/android-icon-192x192.png", "cover_url": "https://stadacone.com/wp-content/uploads/2021/11/sta-11174-visuel-de-partage-saronia.jpg", "description_meta": "Tentez l\u2019exp\u00e9rience Stadacon\u00e9, une visite immersive unique au monde ! JOUEZ. D\u00c9COUVREZ. GO\u00dbTEZ.", "site_name": "Distillerie Stadacon\u00e9"}
\ No newline at end of file
added data/enrich_cache/stateraspirits.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stateraspirits.com", "logo_url": "https://stateraspirits.com/cdn/shop/files/Statera-symbol-wh_2x_4bb5001a-cef6-4e84-8bbe-0b5896c92002_32x32.png?v=1640368198", "cover_url": "http://stateraspirits.com/cdn/shop/files/Annonce_Brand_2x_a5f06ca5-c196-44d5-87dd-ae5e0973e632.png?v=1643643409", "description_meta": "Fi\u00e8rement concoct\u00e9s au Qu\u00e9bec, nos produits artisanaux sans alcool sont \u00e9labor\u00e9s avec des ingr\u00e9dients naturels pour vous offrir une exp\u00e9rience de d\u00e9gustation exceptionnelle. Mimosa Pamplemousse, Gin &amp; Tonic, Gin distill\u00e9 sans alcool... D\u00e9couvrez nos produits.", "site_name": "Statera Spirits"}
\ No newline at end of file
added data/enrich_cache/station-22.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "station-22.com", "logo_url": "https://station-22.com/favicon.ico", "cover_url": "https://station-22.com/wp-content/uploads/2022/02/alcohol-1850052.jpg", "description_meta": "STATION 22 commercialise, importe, distribue et embouteille des vins, boissons alcoolis\u00e9es et spiritueux. D\u00e9couvrez STATION 22 !", "site_name": "Station 22"}
\ No newline at end of file
added data/enrich_cache/statista.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "statista.com", "logo_url": "https://cdn.statcdn.com/static/img/apple-touch-icon-precomposed.png", "cover_url": "https://cdn.statcdn.com/static/img/openGraph/statista.png", "description_meta": "Find statistics, consumer survey results and industry studies from over 22,500 sources on over 60,000 topics on the internet&#039;s leading statistics database", "site_name": "Statista"}
\ No newline at end of file
added data/enrich_cache/stbruno.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stbruno.ca", "logo_url": "https://stbruno.ca/wp-content/themes/saintbruno/img/icons/cropped-site-icon-180x180.png", "cover_url": "https://saintbruno-site.s3.ca-central-1.amazonaws.com/wp-content/uploads/2018/05/og-default-image.png", "description_meta": "Bienvenue sur le site officiel de la ville. D\u00e9couvrez-y les services et les informations pratiques de la vie municipale.", "site_name": "Ville de Saint-Bruno-de-Montarville"}
\ No newline at end of file
added data/enrich_cache/stefanofaita.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stefanofaita.com", "logo_url": "https://www.stefanofaita.com/wp-content/themes/stefano-faita/img/fav/android-icon-192x192.png", "cover_url": "https://www.stefanofaita.com/wp-content/uploads/2022/08/stefano-faita_sauces-tomate.jpeg", "description_meta": "D\u00e9couvrez les produits et les recettes sign\u00e9s Stefano Faita. Tous faits d&#039;ingr\u00e9dients simples et bons, inspir\u00e9s de recettes familiales.", "site_name": "Stefano Faita"}
\ No newline at end of file
added data/enrich_cache/stguillaume.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stguillaume.com", "logo_url": "https://stguillaume.com/wp-content/uploads/2019/09/cropped-marker-agrilait-180x180.png", "cover_url": "https://i0.wp.com/www.stguillaume.com/wp-content/uploads/2019/08/bg-petit-frais.jpg?fit=1920%2C904&ssl=1", "description_meta": "D\u00e9gustez nos cheddars frais du jour ou vieillis, notre halloumi \u00e0 griller et toute notre gamme de fromages, parfaits pour les petits moments comme les grands!", "site_name": "Fromagerie St-Guillaume"}
\ No newline at end of file
added data/enrich_cache/stimulationdejavu.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stimulationdejavu.com", "logo_url": "https://stimulationdejavu.com/wp-content/uploads/2018/11/cropped-deja_vu_site_icon2-180x180.png", "cover_url": "https://stimulationdejavu.com/wp-content/uploads/2018/11/facebook-image.png", "description_meta": "&quot;D\u00e9couvrez une exp\u00e9rience multisensorielle in\u00e9gal\u00e9e avec ARID. Notre processus de cr\u00e9ation olfactive et sensorielle unique sur le march\u00e9 associe design, contenu sensoriel et mesure \u00e9motionnelle pour des cr\u00e9ations sur mesure. Explorez notre monde de cr\u00e9ativit\u00e9 et de haute qualit\u00e9, o\u00f9 chaque projet est une exp\u00e9rience multisensorielle sur mesure, \u00e0 la hauteur de vos attentes.", "site_name": "D\u00e9j\u00e0 Vu"}
\ No newline at end of file
added data/enrich_cache/stirjoy.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stirjoy.ca", "logo_url": "https://stirjoy.ca/favicon.png", "cover_url": "https://stirjoy.ca/og-image.png", "description_meta": "Easy, plant-powered meal kits that live in your pantry. Just add water and simmer. Healthy, affordable, and sustainable meals delivered to your door for only $6 per portion.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/stonehavenlemanoir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stonehavenlemanoir.com", "logo_url": "https://stonehavenlemanoir.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/stpeters-charlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stpeters-charlevoix.ca", "logo_url": "https://s2.wp.com/i/webclip.png?m=1713868326i", "cover_url": "https://s0.wp.com/i/blank.jpg?m=1383295312i", "description_meta": "celebrating 150 years of ministry in Charlevoix QC", "site_name": "St. Peter-on-the-Rock, La Malbaie, QC"}
\ No newline at end of file
added data/enrich_cache/strategiste.net.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "strategiste.net", "logo_url": "https://www.strategiste.net/wp-content/uploads/2019/12/cropped-strafavoriteicon-180x180.png", "cover_url": "https://www.strategiste.net/wp-content/uploads/2025/07/slidetypedesiteweb800x425.png", "description_meta": "Strat\u00e9giste en marketing num\u00e9rique, sp\u00e9cialis\u00e9e en cr\u00e9ation de site web, en r\u00e9f\u00e9rencement organique, strat\u00e9gies et gestion de contenus.", "site_name": "strategiste.net"}
\ No newline at end of file
added data/enrich_cache/studiodeceramiqueartvm.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "studiodeceramiqueartvm.com", "logo_url": "https://www.studiodeceramiqueartvm.com/favicon.ico", "cover_url": "https://www.studiodeceramiqueartvm.com/uploads/5/7/2/9/57291401/editor/p1445.png?1771352628", "description_meta": "Bienvenue chez Art VM Studio de c\u00e9ramique, situ\u00e9 \u00e0 Delson sur la Rive-Sud de Montr\u00e9al. D\u00e9couvrez des cr\u00e9ations uniques en c\u00e9ramique faites \u00e0 la main et profitez de cours de poterie de haut niveau, adapt\u00e9s aux adultes, enfants et passionn\u00e9s.", "site_name": "STUDIO DE C&Eacute;RAMIQUE ART VM"}
\ No newline at end of file
added data/enrich_cache/studioleblanc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "studioleblanc.com", "logo_url": "http://studioleblanc.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/studioraton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "studioraton.com", "logo_url": "https://studioraton.com/cdn/shop/files/favicon_b5ba8014-d765-44ab-9119-f06e19d8ac12_32x32.png?v=1740755103", "cover_url": "http://studioraton.com/cdn/shop/files/logo-studio-raton-boite-320-500.png?v=1735941824", "description_meta": "Studio Raton delivers beautifully designed and crafted maps of more than 700 cities from all over the world.", "site_name": "Studio Raton"}
\ No newline at end of file
added data/enrich_cache/stviateurbagel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "stviateurbagel.com", "logo_url": "https://stviateurbagel.com/cdn/shop/files/android-chrome-512x512.png?crop=center&height=32&v=1735935871&width=32", "cover_url": "http://stviateurbagel.com/cdn/shop/files/st-viateur-bagel-social-share.png?v=1737128349", "description_meta": "Hand-rolled, wood-fired, world-famous! Home of the Montreal bagel. Order online and get fresh bagels shipped right to your door, or visit our iconic bakeries and cafes in Montreal.", "site_name": "St-Viateur Bagel"}
\ No newline at end of file
added data/enrich_cache/sublyme.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sublyme.ca", "logo_url": "https://sublyme.ca/cdn/shop/files/Logos_10.svg?crop=center&height=32&v=1760323455&width=32", "cover_url": null, "description_meta": "Sublyme", "site_name": "Sublyme"}
\ No newline at end of file
added data/enrich_cache/subversifs.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "subversifs.ca", "logo_url": "https://subversifs.ca/wp-content/uploads/2021/06/cropped-Subversifs-Favicon-1-180x180.png", "cover_url": "https://subversifs.ca/wp-content/uploads/2021/06/OG.jpg", "description_meta": "\u00catre subversifs est avant tout un \u00e9tat d\u2019esprit. Notre Gin Tonic Marie-Vic parfait pour cet \u00e9t\u00e9.", "site_name": "Les Subversifs"}
\ No newline at end of file
added data/enrich_cache/sucredorgedantan.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucredorgedantan.com", "logo_url": "https://sucredorgedantan.com/boutique/image/catalog/cart.png", "cover_url": null, "description_meta": "Su\u00e7ons en sucre d", "site_name": "Sucre d"}
\ No newline at end of file
added data/enrich_cache/sucreriealary.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucreriealary.ca", "logo_url": "https://www.sucreriealary.ca/favicon.ico", "cover_url": null, "description_meta": "Entreprise ac\u00e9ricole famiale. Luskville (Pontiac), QC \u00e0 35 km d&#039;Ottawa. Vente de produits d&#039;\u00e9rable. D\u00e9gustation de prodiuts d&#039;\u00e9rable. Randonn\u00e9e p\u00e9destre.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/sucreriealeauderable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucreriealeauderable.com", "logo_url": "https://sucreriealeauderable.com/favicon.ico", "cover_url": "https://sucreriealeauderable.com/wp-content/uploads/Screen-Shot-2017-02-22-at-3.45.59-PM.jpg", "description_meta": "Manon et Luc, vous re\u00e7oivent depuis 1994, dans leur belle petite cabane \u00e0 sucre familiale pour partager leur tradition printani\u00e8re.", "site_name": "Sucrerie \u00e0 l&#039;eau d&#039;\u00e9rable"}
\ No newline at end of file
added data/enrich_cache/sucreriebonaventure.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucreriebonaventure.ca", "logo_url": "https://sucreriebonaventure.ca/wp-content/uploads/2017/07/favicon-sucrerie.png", "cover_url": null, "description_meta": "La Cabane \u00e0 sucre / Sucrerie Bonaventure \u00e0 Mirabel vous offre un menu complet traditionnel de cabane \u00e0 sucre et des activit\u00e9s sur place !", "site_name": "Microbasserie L\\&#039;ent\u00eat\u00e9"}
\ No newline at end of file
added data/enrich_cache/sucreriechezjeanpierre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucreriechezjeanpierre.com", "logo_url": "https://static.wixstatic.com/media/11edf3_36e91f1497914a4897a7db576ff633b6%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/11edf3_36e91f1497914a4897a7db576ff633b6%7Emv2.jpg", "cover_url": "https://static.wixstatic.com/media/11edf3_4ce70173e9724c6b8e4723e41dd3e571~mv2.jpg/v1/fill/w_2048,h_1152,al_c/11edf3_4ce70173e9724c6b8e4723e41dd3e571~mv2.jpg", "description_meta": "Sucrerie Chez Jean-Pierre. Une cabane \u00e0 sucre traditionnelle pour la vente de produits d", "site_name": "Sucrerie JP"}
\ No newline at end of file
added data/enrich_cache/sucreriedecourval.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucreriedecourval.com", "logo_url": "https://static.wixstatic.com/media/300e4b_16c24b6b498742a3915d67894a37af50%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/300e4b_16c24b6b498742a3915d67894a37af50%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/sucreriedelamontagne.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucreriedelamontagne.com", "logo_url": "https://www.sucreriedelamontagne.com/wp-content/uploads/favicon32.png", "cover_url": "https://www.sucreriedelamontagne.com/wp-content/uploads/sucrerie-montagne-partage.jpg", "description_meta": "Sugar Shack | Rigaud", "site_name": "Sucrerie de la Montagne"}
\ No newline at end of file
added data/enrich_cache/sucrerieduterroir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucrerieduterroir.com", "logo_url": "https://sucrerieduterroir.com/wp-content/uploads/2026/03/cropped-cropped-cropped-logo-Contour-Chat-GPT-1-180x180.png", "cover_url": "https://sucrerieduterroir.com/wp-content/uploads/2026/03/0D7A0617-1-1-1-1-1024x683.jpg", "description_meta": "D\u00e9couvrez une cabane \u00e0 sucre Gatineau authentique \u00e0 Val-des-Monts, pr\u00e8s d\u2019Ottawa. Repas traditionnels et ambiance chaleureuse.", "site_name": "Sucrerie du Terroir"}
\ No newline at end of file
added data/enrich_cache/sucrerieduvioloneux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucrerieduvioloneux.ca", "logo_url": "https://sucrerieduvioloneux.ca/wp-content/uploads/2025/03/Design-sans-titre-2025-03-30T130411.825.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/sucreriesdl.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sucreriesdl.ca", "logo_url": "https://centacres.ca/cdn/shop/files/favicon_1b601e78-4605-43bd-9221-c23f407ea632_32x32.png?v=1676578833", "cover_url": "http://centacres.ca/cdn/shop/files/IMG_5085-2.jpg?v=1781893477", "description_meta": "Producer of sweet, fruity joy \ud83c\udf41\ud83e\uded0 Blueberries, sour cherries, and maple products. Boutique caf\u00e9 with delicious pastries and Quebec-made gift ideas. U-pick at our farm nestled among the mountains in Les Etchemins", "site_name": "La ferme des cent acres"}
\ No newline at end of file
added data/enrich_cache/sulfly.biereauventdunord.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sulfly.biereauventdunord.com", "logo_url": "https://sulfly.biereauventdunord.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Vent du Nord Sul&#039;fly"}
\ No newline at end of file
added data/enrich_cache/summum.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "summum.com", "logo_url": "https://dplscqdtdgskd.cloudfront.net/assets/apple-touch-icon-9e66fdc17a1863ba5dacac3e09c5c563769db2bf730be7bef2dedadebcbc60eb.png", "cover_url": "https://dplscqdtdgskd.cloudfront.net/thumbs/20250320135558794/13f26696-841f-49f0-8f5b-f008b5de980d/image.png", "description_meta": "D\u00e9couvrez le plus grand choix de produits de beaut\u00e9, marques incontournables pour sublimer vos soins. Livraison gratuite sur les achats de plus de 75 $.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/summumco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "summumco.com", "logo_url": "https://cdn.prod.website-files.com/66bcc6e4ce53d233a5551f31/672ba4f6650a4feef4cdcb28_iLoveIMG%20Favicon%20(1).jpg", "cover_url": "https://cdn.prod.website-files.com/66bcc6e4ce53d233a5551f31/672ceb983ff1edf5b59dd2ad_OG.avif", "description_meta": "Le groupe Summum&amp;Co vous propose 3 destinations singuli\u00e8res, III exp\u00e9riences authentiques \u00e0 travers lesquelles nous nourrissons tous vos sens. Depuis 2010, notre savoir-\u00eatre inspire notre savoir-faire.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/superc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "superc.ca", "logo_url": "https://www.superc.ca/images/main/favicon/superc/apple-touch-icon.png", "cover_url": "https://www.superc.ca/images/main/logo-superc.jpg", "description_meta": "Super C, une entreprise fi\u00e8rement d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/superdips.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "superdips.ca", "logo_url": "https://superdips.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/superdoracanada.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "superdoracanada.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/surettecondiments.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "surettecondiments.com", "logo_url": "https://surettecondiments.com/wp-content/uploads/2022/08/Surette.png", "cover_url": "https://surettecondiments.com/wp-content/uploads/2023/08/losange-100.png", "description_meta": "Surette Condiments, des assemblages de balsamiques, de vinaigres, de sirop d&rsquo;\u00e9rable et bien d&rsquo;autres condiments, prim\u00e9s au Canada et \u00e0 l&rsquo;international pour sublimer vos recettes. C\u00e9l\u00e9brer et partager la richesse et l&rsquo;unicit\u00e9 des terroirs nord-am\u00e9ricains. Nous nous engageons \u00e0 offrir une s\u00e9lection de condiments d&rsquo;une qualit\u00e9 exceptionnelle, permettant \u00e0 chacun de cr\u00e9er", "site_name": "Surette Condiments"}
\ No newline at end of file
added data/enrich_cache/surl.li.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "surl.li", "logo_url": "https://surl.li/favicon.ico", "cover_url": null, "description_meta": "G\u00e9n\u00e9rateur de liens courts - R\u00e9ducteur de lien statistiques compl\u00e8tes sur l&#039;url courte", "site_name": null}
\ No newline at end of file
added data/enrich_cache/surtonmur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "surtonmur.com", "logo_url": "https://surtonmur.com/cdn/shop/files/Surtonmur_favicone_32x32.png?v=1613613625", "cover_url": "http://surtonmur.com/cdn/shop/files/STM_Officiel_orange_1200_x_600_pix.png?v=1749144847", "description_meta": "Bienvenue chez Sur ton mur, une entreprise de Montr\u00e9al offrant des gicl\u00e9es d&#39;art d\u2019illustrateurs qu\u00e9b\u00e9cois.", "site_name": "Sur ton mur \u2122"}
\ No newline at end of file
added data/enrich_cache/sushialamaison.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sushialamaison.com", "logo_url": "https://www.sushialamaison.com/assets/images/apple-touch-icon.png", "cover_url": "https://www.sushialamaison.com/uploads/_1200x630_crop_center-center_none/facebook-banner.jpg", "description_meta": "Sushi \u00e0 la maison par Genevi\u00e8ve Everell : chefs \u00e0 domicile, produits exclusifs, recettes originales et comptoirs pour savourer le meilleur sushi.", "site_name": "Sushi \u00e0 la maison"}
\ No newline at end of file
added data/enrich_cache/sway.cloud.microsoft.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sway.cloud.microsoft", "logo_url": "https://sway.cloud.microsoft/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/sylvestreparfums.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "sylvestreparfums.com", "logo_url": "https://sylvestreparfums.com/favicon.ico", "cover_url": "http://www.sylvestreparfums.com/cdn/shop/files/58d4796a-110d-483d-8ec1-760710469517.jpg?v=1760159673", "description_meta": "Discover Parfums Sylvestre, an independent fine perfume house born in Quebec. Bold and authentic fragrances, created by J\u00e9r\u00e9my Sylvestre to capture the freshness of Quebec.", "site_name": "Sylvestre Parfums"}
\ No newline at end of file
added data/enrich_cache/symbiosealt.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "symbiosealt.com", "logo_url": "https://symbiosealt.com/wp-content/uploads/2022/09/cropped-icon-1-180x180.png", "cover_url": "https://symbiosealt.com/wp-content/uploads/2023/04/rsw_600h_300cg_true.webp", "description_meta": "Ferment\u00e9 1 an \u00e0 base de cam\u00e9line et pois jaunes, sans soja ni gluten.Passez votre commande", "site_name": "Symbiose Alimenterre"}
\ No newline at end of file
added data/enrich_cache/symposiumbsp.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "symposiumbsp.com", "logo_url": "https://symposiumbsp.com/theme/0-img/symposium-logo-baie-saint-paul.png", "cover_url": null, "description_meta": null, "site_name": "SymposiumBSP.com"}
\ No newline at end of file
added data/enrich_cache/tabarsauce.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tabarsauce.com", "logo_url": "https://tabarsauce.com/favicon.ico", "cover_url": null, "description_meta": "Tabarsauce", "site_name": "Tabarsauce"}
\ No newline at end of file
added data/enrich_cache/tablebioalimentairecotenord.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tablebioalimentairecotenord.ca", "logo_url": "https://www.tablebioalimentairecotenord.ca/wp-content/uploads/2017/04/favicon.png", "cover_url": "https://www.tablebioalimentairecotenord.ca/wp-content/uploads/2014/05/magazine_icon.png", "description_meta": "La mission de TBCN est de promouvoir le d\u00e9veloppement, la mise en valeur et la commercialisation des produits bioalimentaires de la C\u00f4te-Nord.", "site_name": "Table Bioalimentaire C\u00f4te-Nord"}
\ No newline at end of file
added data/enrich_cache/tablemrccdq.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tablemrccdq.com", "logo_url": "https://tablemrccdq.com/wp-content/uploads/2025/01/S-Couleur-Logotype_TableDesMRC.svg", "cover_url": "https://tablemrccdq.com/wp-content/uploads/2025/11/cdq-corpo-img-partage.webp", "description_meta": "Instance de concertation incontournable pour tous les acteurs de d\u00e9veloppement municipaux et r\u00e9gionaux au Centre-du-Qu\u00e9bec.", "site_name": "Table des MRC Centre-du-Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/taca.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "taca.qc.ca", "logo_url": "https://taca.qc.ca/wp-content/uploads/2024/05/cropped-TACA-couleur-e1715873462128-180x180.png", "cover_url": "https://taca.qc.ca/wp-content/uploads/2023/02/carte-bleu-1024x866.png", "description_meta": "https://taca.qc.ca/wp-content/uploads/video/video-teaser.mp4 Votre moteur du d\u00e9veloppement agroalimentaire de la Chaudi\u00e8re-Appalaches! Qui nous sommes La Table Agroalimentaire de la Chaudi\u00e8re-Appalaches (TACA) est un organisme d\u00e9di\u00e9 au d\u00e9veloppement du secteur bioalimentaire de la r\u00e9gion Chaudi\u00e8re-Appalaches. La\u00a0r\u00e9gion, travers\u00e9e en son centre par les rivi\u00e8res Chaudi\u00e8re et Etchemin, s&rsquo;\u00e9tend ", "site_name": "La table Agroalimentaire de la Chaudi\u00e8re-Appalaches - TACA"}
\ No newline at end of file
added data/enrich_cache/tambour.cafe.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tambour.cafe", "logo_url": "https://tambour.cafe/cdn/shop/files/Tambour_Vectoriel.png?v=1707333589", "cover_url": "https://cdn.shopify.com/s/files/1/0830/0989/6753/files/2tasses.jpg?v=1694817026", "description_meta": "Tambour Caf\u00e9 est un micro torr\u00e9facteur bas\u00e9 \u00e0 L\u00e9vis sp\u00e9cialis\u00e9 dans la torr\u00e9faction de caf\u00e9s d&#39;origines uniques. Notre mission : la transparence et la d\u00e9mocratisation du monde du caf\u00e9. Tambour Caf\u00e9, c&#39;est un caf\u00e9 qui r\u00e9sonne!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/tameloboutique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tameloboutique.com", "logo_url": "https://tameloboutique.com/cdn/shop/files/icone.png?crop=center&height=32&v=1757689262&width=32", "cover_url": "http://tameloboutique.com/cdn/shop/files/Capture_d_ecran_2021-02-04_a_14.57.37_037b11c5-0c3a-4c94-96a1-86fbce711d72.png?v=1626193175&width=1920", "description_meta": "Laissez la nostalgie s&amp;#39;inviter dans votre garde robe gr\u00e2ce \u00e0 notre collection de v\u00eatements vintages. Profitez de la livraison gratuite \u00e0 partir de seulement 99$.", "site_name": "Tamelo Boutique"}
\ No newline at end of file
added data/enrich_cache/tanguay.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tanguay.ca", "logo_url": "https://www.tanguay.ca/favicon.ico", "cover_url": "https://www.tanguay.ca/userfiles/images/theme/fb-tanguay2.png", "description_meta": "In-store or online, you\u2019ll find comfort at Tanguay.", "site_name": "Tanguay"}
\ No newline at end of file
added data/enrich_cache/tanieres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tanieres.com", "logo_url": "https://static.wixstatic.com/media/10e82e_a18f7bb34cc5453cba2efeadf1f22094%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/10e82e_a18f7bb34cc5453cba2efeadf1f22094%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/tanteagastache.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tanteagastache.com", "logo_url": "https://www.tanteagastache.com/wp-content/uploads/2021/03/cropped-logo-tante-agastache-180x180.png", "cover_url": "https://www.tanteagastache.com/wp-content/uploads/2016/08/dummy-1.jpg", "description_meta": "Ferme agro\u00e9cologique et produits artisanaux locaux \u00e0 Sainte-\u00c9m\u00e9lie-de-l&#039;\u00c9nergie", "site_name": "Tante Agastache \u00e0 Sainte-\u00c9m\u00e9lie-de-l&#039;\u00c9nergie"}
\ No newline at end of file
added data/enrich_cache/tapeautonfruit.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tapeautonfruit.com", "logo_url": "https://tapeautonfruit.com/favicon.ico", "cover_url": "https://tapeautonfruit.com/wp-content/uploads/2024/06/230731_TaPeauTonFruit-380-HR.jpg", "description_meta": "Ch\u00e9rissez votre peau avec les produits cosm\u00e9tiques naturels qu\u00e9b\u00e9cois de Ta Peau, Ton Fruit. Nos produits aux bleuets sauvages sont v\u00e9ganes et adapt\u00e9s \u00e0 chaque peau.", "site_name": "Ta peau, Ton fruit"}
\ No newline at end of file
added data/enrich_cache/tartare.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tartare.ca", "logo_url": "https://tartare.ca/images/apple-touch-icon-57x57.png", "cover_url": null, "description_meta": "Fournisseur de viande et sauce pour tartare", "site_name": null}
\ No newline at end of file
added data/enrich_cache/tatum.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tatum.ca", "logo_url": "https://www.tatum.ca/web/image/website/1/favicon?unique=78b5279", "cover_url": "https://www.tatum.ca/web/image/website/1/logo?unique=3cbd572", "description_meta": "Depuis plus de 20 ans , nous vous pr\u00e9sentons une large s\u00e9lection de caf\u00e9s et br\u00fbleries honor\u00e9s, torr\u00e9fi\u00e9s de mani\u00e8re Artisanale sur place dans notre boutique.", "site_name": "Tatum"}
\ No newline at end of file
added data/enrich_cache/teknion.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "teknion.com", "logo_url": "https://teknion.bynder.com/m/59bd8bec795a3eb4/original/android-chrome-192x192.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/temaki-sushi-bar.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "temaki-sushi-bar.com", "logo_url": "https://www.temaki-sushi-bar.com/wp-content/uploads/2017/01/android-icon-192x192.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/tempehine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tempehine.ca", "logo_url": "https://tempehine.ca/wp-content/uploads/2022/03/cropped-a-propos-02-180x180.png", "cover_url": "https://tempehine.ca/wp-content/uploads/2022/03/cropped-a-propos-02.png", "description_meta": "Tempehine propose du tempeh biologique, marin\u00e9, pr\u00e9cuit et pr\u00e9-proportionn\u00e9. D\u00e9couvrez tout de notre histoire et o\u00f9 trouver nos produits.", "site_name": "Tempehine"}
\ No newline at end of file
added data/enrich_cache/temsucre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "temsucre.com", "logo_url": "https://temsucre.com/pages/temsucre/images/favicon.ico?v=20260810", "cover_url": "https://temsucre.com/zipzad/include/uploader_member/uploads/17369639541736964007-erabliere-tem-sucre.jpg", "description_meta": "\u00c9rabli\u00e8re Tem-Sucre est une entreprise du T\u00e9miscamingue qui se sp\u00e9cialise surtout dans la production et la transformation du sirop d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/tena.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tena.ca", "logo_url": "https://assets.www.essity.com/tena/2.0.163-release.8/img/favicons/apple-touch-icon-180x180.png", "cover_url": "https://tena-images.essity.com/images-c5/231/271231/optimized-AzurePNG2K/woman-helping-friend-in-changing-room-wearing-tena.png", "description_meta": "TENA offers innovative incontinence products helping millions of men &amp; women manage urinary incontinence with comfort.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/tendaro.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tendaro.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": "Sur notre camping, nous privil\u00e9gions l\u2019esprit de campement nomade.\n\nUn terrain un peu sauvage, o\u00f9 champs de marguerites et for\u00eat dense se c\u00f4toient, o\u00f9 fleuve et animaux vivent en trame de fond.", "site_name": "Camping Tendaro"}
\ No newline at end of file
added data/enrich_cache/tendreatelier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tendreatelier.com", "logo_url": "https://www.tendreatelier.com/cdn/shop/files/Tendre_Logo_vert.jpg?crop=center&height=32&v=1768233921&width=32", "cover_url": "http://www.tendreatelier.com/cdn/shop/files/Capture_d_ecran_le_2026-02-04_a_21.11.46_1.png?v=1770257631", "description_meta": "Pottery classes, flexible memberships, events, and a boutique shop. A welcoming space to learn, practice, and connect. Located in Montreal\u2019s Plateau-Mont-Royal.", "site_name": "Tendre Atelier"}
\ No newline at end of file
added data/enrich_cache/teochewfoodie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "teochewfoodie.ca", "logo_url": "https://teochewfoodie.ca/cdn/shop/files/Teochew_Foodie_Tentative_Favicon_v3.png?crop=center&height=32&v=1642611297&width=32", "cover_url": "http://teochewfoodie.ca/cdn/shop/files/Teochew_Foodie_Business_Card_2025_-_Front_with_Bleed.png?v=1769286008&width=1024", "description_meta": "Customers refer to us as the best wontons (southern China style dumplings) in Montreal. Teochew Foodie is a family run business producing high quality authentic handmade Chinese Food easy to prepare at home.", "site_name": "Teochew Foodie"}
\ No newline at end of file
added data/enrich_cache/teracea.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "teracea.com", "logo_url": "https://framerusercontent.com/images/Zc6B7uYroBasG0mrbL67tsXkQ4g.png", "cover_url": "https://framerusercontent.com/assets/AmqohdbRuiRcMyBiKlyTdMWE.jpg", "description_meta": "Offrez-vous un chalet de prestige pour quelques jours ! Profitez du luxe de nos chalets dans les paysages grandioses de Charlevoix et du Saint-Laurent.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/terracaf.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "terracaf.ca", "logo_url": "https://cafeterra.ca/cdn/shop/files/favicon-32x32.png?crop=center&height=32&v=1634578925&width=32", "cover_url": "http://cafeterra.ca/cdn/shop/files/13_boutique_corpo_8e21cf6d-7749-4c3c-bd2b-e64db7ec2e8b.jpg?v=1697037620", "description_meta": "Handcrafted in Montr\u00e9al since 1978. Specialty coffee, artisanal tea, and vegan hot chocolate \u2013 ethically sourced and freshly roasted. Ships across Canada.", "site_name": "Terra Caf\u00e9 et Th\u00e9 Lt\u00e9e"}
\ No newline at end of file
added data/enrich_cache/terreaboire.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "terreaboire.com", "logo_url": "https://terreaboire.com/wp-content/themes/terreaboire/assets/images/favicon/apple-touch-icon.png?v=1", "cover_url": "https://terreaboire.com/wp-content/uploads/2021/11/OG-TerreABoire.jpg", "description_meta": "Nous aimons la bi\u00e8re et les grands spiritueux, mais surtout nous respectons la terre et le savoir-faire qui leur donnent vie. Terre \u00e0 boire, c\u2019est un hommage \u00e0 la terre, \u00e0 la simplicit\u00e9 et au plaisir gustatif.", "site_name": "Terre \u00e0 Boire"}
\ No newline at end of file
added data/enrich_cache/terredesbisons.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "terredesbisons.com", "logo_url": "https://www.terredesbisons.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/tetedallumette.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tetedallumette.com", "logo_url": "https://tetedallumette.com/wp-content/uploads/2020/05/cropped-Logo-tricky-pour-web-180x180.png", "cover_url": "https://tetedallumette.com/wp-content/uploads/2020/06/4-2.png", "description_meta": "| Bi&egrave;res brass&eacute;es sur feu de bois", "site_name": "T&ecirc;te d&#039;Allumette Microbrasserie"}
\ No newline at end of file
added data/enrich_cache/teturesto.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "teturesto.ca", "logo_url": "https://www.teturesto.ca/app/themes/baker/assets/images/favicons/icon-192x192.png", "cover_url": "https://www.teturesto.ca/app/uploads/2020/05/fbshare.jpg", "description_meta": "D\u00e9couvre les saveurs uniques de la Gasp\u00e9sie et du reste du Qu\u00e9bec dans une ambiance chaleureuse et sans pr\u00e9tention. Notre taverne gasp\u00e9sienne t\u2019offre des produits locaux et des classiques revisit\u00e9s pour te faire vivre une exp\u00e9rience authentique et m\u00e9morable!", "site_name": "T\u00c9T\u00db Taverne Gasp\u00e9sienne"}
\ No newline at end of file
added data/enrich_cache/thanjaisnacks.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "thanjaisnacks.com", "logo_url": "https://thanjaisnacks.com/wp-content/uploads/2024/12/fav.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/thebalticclub.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "thebalticclub.com", "logo_url": "https://www.thebalticclub.com/cdn/shop/files/FAV_ad25b28b-08c5-40e1-9faf-a3d213b4de4e_32x32.png?v=1627669216", "cover_url": "http://www.thebalticclub.com/cdn/shop/files/Agenda2026_ALL_01.jpg?v=1771556114", "description_meta": "From hand-dipped incense and soy candles to planners and art prints. Everything we make is inspired by nature and sent from our Montreal studio to your home.", "site_name": "Baltic Club"}
\ No newline at end of file
added data/enrich_cache/thekootenaybakerycafe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "thekootenaybakerycafe.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/590a855cb3db2b874becb327/cfa25e98-275d-4331-8f23-cb39a6093e68/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/590a855cb3db2b874becb327/t/641dea274c31ea79d3674149/1679682087305/Logo+main+2020_square.png?format=1500w", "description_meta": "Indulge in organic bliss at Kootenay Bakery Caf\u00e9 Cooperative in Nelson, BC! Savour handcrafted delights made with local, organic ingredients. Elevate your taste experience with our wholesome, artisanal treats. Visit today for a delectable journey into organic goodness! #fresh #wholesome #organic #b", "site_name": "The Kootenay Bakery Cafe Co-op"}
\ No newline at end of file
added data/enrich_cache/theprettyuglycompany.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "theprettyuglycompany.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/641c5f5ff5814e338fe71edc/a0d94b32-e99b-4454-bb26-5665619bd4d7/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/641c5f5ff5814e338fe71edc/t/68b0737be23cc2645ba1ec30/1756394363044/ThePrettyUgly_Logo_Cre%CC%80me.png?format=1500w", "description_meta": "Des salsas fra\u00eeches et des chips de ma\u00efs faites au Qu\u00e9bec avec des ingr\u00e9dients sauv\u00e9s du gaspillage. Sans compromis sur le go\u00fbt. Disponibles dans 700+ \u00e9piceries.", "site_name": "THE PRETTY UGLY COMPANY"}
\ No newline at end of file
added data/enrich_cache/thesdunord.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "thesdunord.ca", "logo_url": "https://thesdunord.ca/wp-content/uploads/2024/11/cropped-favicon-180x180.png", "cover_url": "https://thesdunord.ca/wp-content/uploads/2024/11/cropped-favicon.png", "description_meta": "Th\u00e9s du Nord : les th\u00e9s bor\u00e9aux qu\u00e9b\u00e9cois, des infusions sans caf\u00e9ine aux bienfaits authentiques et naturels. Savourez l\u2019excellence locale.", "site_name": "Th\u00e9s du nord"}
\ No newline at end of file
added data/enrich_cache/thesoukfactory.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "thesoukfactory.com", "logo_url": "https://thesoukfactory.com/favicon.ico", "cover_url": "http://thesoukfactory.com/cdn/shop/files/1200x1200_01_91338164-f7ff-48ef-a9a6-7e44f512742b.png?v=1781806511", "description_meta": "Handmade candles, incense &amp; lifestyle objects. Terrebonne boutique with exclusive drops. Free shipping $65+ throughout Canada. Shop local \ud83d\ude9a", "site_name": "The Souk Factory"}
\ No newline at end of file
added data/enrich_cache/thierryandre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "thierryandre.com", "logo_url": "https://static.wixstatic.com/media/2588c3_723dfd9c68b643b7acbf3ccc66b57512%7Emv2.jpeg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/2588c3_723dfd9c68b643b7acbf3ccc66b57512%7Emv2.jpeg", "cover_url": "https://static.wixstatic.com/media/2588c3_559bb77a340f429693a763f6b8b27398~mv2.jpg/v1/fill/w_1080,h_1080,al_c/2588c3_559bb77a340f429693a763f6b8b27398~mv2.jpg", "description_meta": "Timeless and authentic, Thierry Andr\u00e9 elevates the guitar through his work, displaying a rare and effective symbiosis of tradition, art, and acoustic science. The guitars he creates are some of the best around, consistently as visually stunning as they are inspiring to play.\nWell known in the boutique guitar world, this award-winning luthier crafts a select few archtop and steel-string acoustic gu", "site_name": "Thierry Andr\u00e9"}
\ No newline at end of file
added data/enrich_cache/threads.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "threads.com", "logo_url": "https://static.cdninstagram.com/rsrc.php/y4/r/pctUncuduBn.svg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ticotibaby.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ticotibaby.ca", "logo_url": "https://ticotibaby.ca/cdn/shop/files/Ticoti_Baby_symbole_couleur-RGB.png?crop=center&height=32&v=1755653127&width=32", "cover_url": null, "description_meta": "Online boutique for adjustable clothing made in Quebec for babies and toddlers with sensitive skin. Discover our comfortable pants, sweaters, and accessories, designed to grow with your child. Shipping from Drummondville.", "site_name": "Ticoti Baby - V\u00eatements \u00e9volutifs"}
\ No newline at end of file
added data/enrich_cache/timininous.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "timininous.com", "logo_url": "https://www.timininous.com/cdn/shop/files/Timininous_avatar_fond-sauge.png?crop=center&height=32&v=1726967736&width=32", "cover_url": "http://www.timininous.com/cdn/shop/files/Timininous_-_laine_de_merinos_bebe_et_enfants_944b1d34-1d4a-47b4-b1f3-1f4381155bcc.jpg?v=1762974497", "description_meta": "Explore our outdoor clothing and accessories for babies and children, including our adaptable merino wool clothing, perfect for little adventurers who love to play outside. Our eco-responsible products offer comfort, quality and durability for nature adventures!", "site_name": "Timininous"}
\ No newline at end of file
added data/enrich_cache/toilesbsl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "toilesbsl.com", "logo_url": "https://toilesbsl.com/wp-content/uploads/2019/06/favicon.jpg", "cover_url": null, "description_meta": "Les experts des toiles, auvents, portiques, abris, garages et autres produits sp\u00e9cialis\u00e9s en toile au Bas-Saint-Laurent.", "site_name": "Les Toiles du Bas-St-Laurent"}
\ No newline at end of file
added data/enrich_cache/tokidos.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tokidos.com", "logo_url": "https://tokidos.com/cdn/shop/files/Favicon_920cd4cb-60a6-42e2-84ca-e95926968a13.png?crop=center&height=32&v=1727984639&width=32", "cover_url": "http://tokidos.com/cdn/shop/files/TOKIDOS_23_August_2025_-_Photo_by_Steve_Gerrard-14_0671bd02-2ca6-4eb3-8f1b-dcc7793d0c8c.jpg?v=1776118409", "description_meta": "Tokidos PlayCubes are a screen-free, science powered game system for kids aged 3-8. Educational games that spark curiosity and develop childhood skills.", "site_name": "Tokidos"}
\ No newline at end of file
added data/enrich_cache/tokilab.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tokilab.ca", "logo_url": "https://www.tokilab.ca/app/themes/tokilab-v2/public/images/favicon/apple-touch-icon.b6bbeb.png", "cover_url": "https://www.tokilab.ca/app/uploads/2024/08/tokilab-fb-img.jpg", "description_meta": "Cr\u00e9ation de solutions num\u00e9riques sur mesure, conception et optimisation sites web, pour une pr\u00e9sence en ligne r\u00e9ussie !", "site_name": "Agence web Tokilab"}
\ No newline at end of file
added data/enrich_cache/tomapure.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tomapure.com", "logo_url": "https://tomapure.com/wp-content/themes/tomapure/images/favicon.png", "cover_url": "https://tomapure.com/wp-content/uploads/fbimage.jpg", "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/topglaciers.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "topglaciers.com", "logo_url": "https://topglaciers.com/wp-content/uploads/favicon-2.png", "cover_url": null, "description_meta": "Les meilleurs glaciers du Qu\u00e9bec se sont unis pour offrir des cr\u00e8mes glac\u00e9es, sorbets et desserts glac\u00e9s aux saveurs exceptionnelles. D\u00e9couvrez TOP Glaciers!", "site_name": "TOP Glaciers Inc."}
\ No newline at end of file
added data/enrich_cache/toqueettablier.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "toqueettablier.ca", "logo_url": "https://toqueettablier.ca/cdn/shop/files/T_T_194x194_crop_center.png?v=1613548993", "cover_url": null, "description_meta": "Toque &amp; Tablier est une entreprise artisanale Montr\u00e9alaise, ax\u00e9e sur la cr\u00e9ativit\u00e9 culinaire. Sp\u00e9cialis\u00e9e dans la fabrication de g\u00e2teaux aux fruits affin\u00e9es \u00e0 l&#39;alcool haut de gamme.", "site_name": "Toque et Tablier"}
\ No newline at end of file
added data/enrich_cache/torrefacteursansfrontiere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "torrefacteursansfrontiere.com", "logo_url": "https://torrefacteursansfrontiere.com/wp-content/uploads/2021/11/favicon-chaga-torrefaction-cafe-espresso-frais-veloute-brulerie.png", "cover_url": "https://torrefacteursansfrontiere.com/wp-content/uploads/2026/01/image-partage-medias-sociaux-torrefacteur-sans-frontiere.jpg", "description_meta": "Br\u00fblerie sp\u00e9cialis\u00e9e dans la torr\u00e9faction de grains de caf\u00e9 en Abitibi-T\u00e9miscamingue. Caf\u00e9 de sp\u00e9cialit\u00e9. Chaga. Boutique en ligne.", "site_name": "Torr\u00e9facteur sans fronti\u00e8re"}
\ No newline at end of file
added data/enrich_cache/toscarleton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "toscarleton.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/60c3e17af424f2228efc3837/a874321e-adb6-4227-ad09-633d79c21652/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/60c3e17af424f2228efc3837/t/60c6ac05dffa1e7df895b061/1623632908223/LOGO_TOSCA_2x2.jpg?format=1500w", "description_meta": "Restaurant Italien a Carleton sur Mer. Notre philosophie veut rendre hommage \u00e0 la cuisine italienne traditionelle, tout en mettant en valeur les produits du terroir gasp\u00e9sien.", "site_name": "Tosca Ristorante Italiano"}
\ No newline at end of file
added data/enrich_cache/totalfabrication.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "totalfabrication.ca", "logo_url": "https://www.totalfabrication.ca/wp-content/uploads/2023/02/cropped-ico-fav-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/touchokolat.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "touchokolat.com", "logo_url": "https://touchokolat.com/wp-content/uploads/2022/11/cropped-favicon-180x180.png", "cover_url": "https://touchokolat.com/wp-content/themes/module_base/assets/images/og.png", "description_meta": "Cr\u00e9ations artisanales de chocolat belge et fran\u00e7ais", "site_name": null}
\ No newline at end of file
added data/enrich_cache/touonbeauty.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "touonbeauty.com", "logo_url": "https://touonbeauty.com/favicon.ico", "cover_url": "https://touonbeauty.com/wp-content/uploads/2023/12/Beurre-corporel-1000x1500.jpg", "description_meta": "D\u00e9couvrez notre gamme de produits de beaut\u00e9 naturels et \u00e9thiques chez Touon Beaut\u00e9 \u00e0 Montr\u00e9al. Expertise, qualit\u00e9 et livraison gratuite pour 50 $ d&#039;achat.", "site_name": "Touon Beauty"}
\ No newline at end of file
added data/enrich_cache/tournevent.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tournevent.ca", "logo_url": "https://tournevent.ca/cdn/shop/files/FAVICON_Tournevent.png?crop=center&height=48&v=1761150165&width=48", "cover_url": "http://tournevent.ca/cdn/shop/files/Ferme_Tournevent_Equipe_2025.png?v=1771011014", "description_meta": "Ferme TournevenT - On r\u00e9colte et on s&#39;aime. L&#39;ardeur de semer, l&#39;art de cultiver, le plaisir de r\u00e9colter, la patience de trier et l&#39;initiative de transformer nous-m\u00eames le fruit de notre agriculture biologique, nous permet d&#39;apposer notre signature sur chacun de nos produits.", "site_name": "TournevenT"}
\ No newline at end of file
added data/enrich_cache/toutalerable.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "toutalerable.com", "logo_url": "https://toutalerable.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/toutdoux.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "toutdoux.ca", "logo_url": "https://www.toutdoux.ca/uploads/b/4837de60-a779-11eb-ba67-d9817c2f25c4/icon_180x180_ios_MzA1ND.png?width=180", "cover_url": "https://www.toutdoux.ca/uploads/b/4837de60-a779-11eb-ba67-d9817c2f25c4/tout-doux-accueil_MTk2Nz.PNG", "description_meta": "Les couvertures les plus douillettes qui soit! Fabriqu\u00e9 au Qu\u00e9bec avec amour.", "site_name": "Tout Doux"}
\ No newline at end of file
added data/enrich_cache/toutenpot.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "toutenpot.com", "logo_url": "https://toutenpot.com/wp-content/uploads/2021/04/ToutenPot_Logo_Favicon.png", "cover_url": "https://toutenpot.com/wp-content/uploads/2023/10/fbimage_2023-min.jpg", "description_meta": "Tout en Pot est une entreprise qui offre, aux familles du Qu\u00e9bec, des recettes en pot pr\u00eates-\u00e0-cuisiner faites d&#039;ingr\u00e9dients d\u00e9shydrat\u00e9s.", "site_name": "Tout en Pot"}
\ No newline at end of file
added data/enrich_cache/toutpretinc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "toutpretinc.ca", "logo_url": "https://www.toutpretinc.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/touverre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "touverre.com", "logo_url": "https://touverre.com/favicon.ico", "cover_url": "http://touverre.com/cdn/shop/files/logo-panier.png?height=628&pad_color=ffffff&v=1766091689&width=1200", "description_meta": "Magasinez des id\u00e9es cadeaux et des cr\u00e9ations uniques. Visitez l&#39;\u00e9conomus\u00e9e du verre souffl\u00e9 et participez \u00e0 des ateliers de polissage de pierres en famille.", "site_name": "Touverre"}
\ No newline at end of file
added data/enrich_cache/toysrus.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "toysrus.ca", "logo_url": "https://toysrus.ca/icons/toysrus/apple-icon.png", "cover_url": "https://toysrus.ca/icons/toysrus/apple-icon-180x180.png", "description_meta": "Canada&#39;s Favourite Toy Store", "site_name": "Toys R Us Canada"}
\ No newline at end of file
added data/enrich_cache/tracemaple.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tracemaple.com", "logo_url": "https://tracemaple.com/cdn/shop/files/trace-favicon_32x32.png?v=1741312065", "cover_url": "http://tracemaple.com/cdn/shop/files/Trace_logo_descrip._noir_1200x1200.png?v=1740342094", "description_meta": "Treat yourself and enjoy our maple products from the comfort of your home. Browse our wide selection of maple delights\u2014maple syrup, maple candy, maple caramel, and much more.", "site_name": "Trace - \u00c9rable &amp; Territoire"}
\ No newline at end of file
added data/enrich_cache/traineauchien.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "traineauchien.com", "logo_url": "https://traineauchien.com/wp-content/uploads/2019/07/cropped-chien_favicon-180x180.png", "cover_url": "https://traineauchien.com/wp-content/uploads/2016/04/traineau.jpg", "description_meta": "Traineau \u00e0 chien \u00e0 Baie-Saint-Paul dans Charlevoix. Chenil respectueux des chiens et meilleure exp\u00e9rience de chien de traineau.", "site_name": "La Reine et le Millionnaire"}
\ No newline at end of file
added data/enrich_cache/tranchedebois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tranchedebois.com", "logo_url": "https://tranchedebois.com/cdn/shop/files/tranche-de-bois-logo.png?crop=center&height=32&v=1759327231&width=32", "cover_url": "http://tranchedebois.com/cdn/shopifycloud/storefront/assets/no-image-100-2a702f30_small.gif", "description_meta": "D\u00e9couvrez des cr\u00e9ations uniques en bois revaloris\u00e9. Luminaires design, accessoires de cuisine et cadeaux corporatifs faits main au Saguenay. Achetez local et durable.", "site_name": "Tranche de bois"}
\ No newline at end of file
added data/enrich_cache/transcol.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "transcol.ca", "logo_url": "https://transcol.ca/images/favicon/apple-touch-icon.png", "cover_url": "https://transcol.ca/images/og-preview.jpg", "description_meta": "Entreprise du Saguenay \u2013 Lac St-Jean \u00e9tablie depuis 1994, Groupe Transcol a d\u00e9velopp\u00e9 une expertise dans le transport qui lui est propre. De nos terminus de Jonqui\u00e8re, Baie-Comeau, Sept-\u00celes et Chibougamau, nous offrons des services de transport g\u00e9n\u00e9ral et sp\u00e9cialis\u00e9 de Radisson \u00e0 Natashquan et la fiabilit\u00e9 de notre service est le gage de notre r\u00e9ussite.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/transportguyvoisine.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "transportguyvoisine.ca", "logo_url": "https://cdn.prod.website-files.com/65e1eb39e820febf8cca3c75/66572ab03c49bd1305da17ca_Frontal-Truck-webclip.png", "cover_url": "https://cdn.prod.website-files.com/65e1eb39e820febf8cca3c75/6657345500b3c2de5fb38224_OG.jpg", "description_meta": "Transport Guy Voisine poss\u00e8de une expertise d\u2019exception depuis plus de 40 ans dans le domaine du transport. Comprendre les besoins de sa client\u00e8le et r\u00e9pondre \u00e0 ceux-ci de fa\u00e7on s\u00e9curitaire et efficace sont la priorit\u00e9 de l\u2019entreprise.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/trappeafromage.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "trappeafromage.com", "logo_url": "https://trappeafromage.com/wp-content/uploads/2021/05/favicon.png", "cover_url": "https://trappeafromage.com/wp-content/uploads/2021/05/Logo-Footer.png", "description_meta": "Fromagerie avec des produits locaux et import\u00e9s frais du jour. \u00c9picerie fine avec sept succursales \u00e0 Gatineau-Ottawa. On fait du service traiteur \u00e0 Gatineau.", "site_name": "La Trappe \u00e0 Fromage"}
\ No newline at end of file
added data/enrich_cache/traverseedecharlevoix.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "traverseedecharlevoix.qc.ca", "logo_url": "https://www.traverseedecharlevoix.qc.ca/wp-content/uploads/Logo-La-Traversee-de-Charlevoix.svg", "cover_url": "https://www.traverseedecharlevoix.qc.ca/wp-content/uploads/lac.jpg", "description_meta": "\u26a0\ufe0fMISE \u00c0 JOUR DES CONDITIONS DES SENTIERS &#8211; mardi 30 juin 2026\u26a0\ufe0f Avec les pluies r\u00e9centes, plusieurs sections des sentiers sont boueuses ou inond\u00e9es. L\u2019eau d\u00e9passe parfois la cheville, donc pr\u00e9voyez que vos bottes seront mouill\u00e9es. En refuge, vous pourrez les faire s\u00e9cher; en camping, apportez une deuxi\u00e8me paire, puisque les feux ext\u00e9rieurs sont interdits En savoir plus... La Travers\u00e9e de Ch", "site_name": "La Travers\u00e9e de\u00a0Charlevoix"}
\ No newline at end of file
added data/enrich_cache/traverserdl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "traverserdl.com", "logo_url": "https://traverserdl.com/wp-content/uploads/2025/01/cropped-favicon-180x180.png", "cover_url": "https://traverserdl.com/wp-content/uploads/2025/01/cropped-logo.png", "description_meta": "Traverse Travers\u00e9es \u00e0 Venir Nos Services Bar Restaurant Boutique de souvenirs Accessible aux fauteuils roulants Voir tous les services Explorer la R\u00e9gion Explorez maintenant", "site_name": "Traverse RDL -"}
\ No newline at end of file
added data/enrich_cache/traversiercnb.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "traversiercnb.ca", "logo_url": "https://traversiercnb.ca/wp-content/uploads/2023/03/cropped-3402-2268-max-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/traversiers.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "traversiers.com", "logo_url": "https://www.traversiers.com/_assets/26dcebd1710e5fe9e47e5c1f9979e512/images/favicon.png", "cover_url": null, "description_meta": "De Montr\u00e9al \u00e0 Blanc-Sablon, en passant par les \u00eeles de la Madeleine, la Soci\u00e9t\u00e9 des traversiers du Qu\u00e9bec exploite un r\u00e9seau de 13 traverses et dessertes maritimes le long du majestueux fleuve Saint-Laurent.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/treko.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "treko.ca", "logo_url": "https://www.treko.ca/cdn/shop/files/Treko_K_plein_32x32.png?v=1744216715", "cover_url": "https://www.treko.ca/cdn/shop/files/Treko_1324x630.png?v=1744372986", "description_meta": "Discover Treko freeze-dried meals for your outdoor adventures. Eco-friendly and nutritious, go on an adventure without compromise!", "site_name": "Treko"}
\ No newline at end of file
added data/enrich_cache/tremblayexpress.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tremblayexpress.com", "logo_url": "https://www.tremblayexpress.com/favicon.png", "cover_url": null, "description_meta": null, "site_name": "Tremblay Express"}
\ No newline at end of file
added data/enrich_cache/trendinnovations.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "trendinnovations.ca", "logo_url": "https://www.trendinnovations.ca/wp-content/uploads/2021/04/cropped-Untitled-1-1-180x180.png", "cover_url": "http://www.trendinnovations.ca/wp-content/uploads/2021/04/Screen-Shot-2021-04-23-at-2.56.37-PM.png", "description_meta": null, "site_name": "TREND Innovations"}
\ No newline at end of file
added data/enrich_cache/tresorsdesbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tresorsdesbois.com", "logo_url": "https://rumus.iptvstr.shop/iconruangwd.webp", "cover_url": "https://i.pinimg.com/1200x/47/07/c6/4707c64ce60d93e6287b9db465ccd227.jpg", "description_meta": "Temukan pengalaman taruhan togel online terbaik di RUANGWD. Platform resmi pilihan generasi masa kini yang menyajikan pasaran asia terlengkap dan hadiah 4d terbesar.", "site_name": "TeePublic"}
\ No newline at end of file
added data/enrich_cache/tresorsdesbois2.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tresorsdesbois2.com", "logo_url": "https://tresorsdesbois2.com/boutique/image/catalog/logoTDB.png", "cover_url": null, "description_meta": "Produits bios, sauvages et naturels du terroir de la C\u00f4te-Nord.\r\nHerbes, \u00e9pices, condiments, champignons, marinades, tisanes, th\u00e9s, gel\u00e9es, compotes et confitures.", "site_name": "Boutique Tr\u00e9sors des Bois"}
\ No newline at end of file
added data/enrich_cache/trevi.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "trevi.ca", "logo_url": "https://trevi.com/cdn/shop/files/favicon-96x96.png?crop=center&height=48&v=1782844962&width=48", "cover_url": "http://trevi.com/cdn/shop/files/og-image.jpg?v=1742413182&width=1200", "description_meta": "D\u00e9couvrez piscines hors terre et creus\u00e9es, spas, thermopompes, accessoires, produits d\u2019entretien, gazebos et mobilier de jardin. Achetez en ligne ou visitez les magasins Tr\u00e9vi au Qu\u00e9bec.", "site_name": "Magasins Trevi inc."}
\ No newline at end of file
added data/enrich_cache/triathloncharlevoix.org.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "triathloncharlevoix.org", "logo_url": "https://static.wixstatic.com/media/d8b41c_3297c38fa17440a395e0dbe8667d27f9.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/d8b41c_3297c38fa17440a395e0dbe8667d27f9.png", "cover_url": null, "description_meta": "Relevez le d\u00e9fi du Triathlon situ\u00e9 en plein c\u0153ur de la r\u00e9gion de Charlevoix sur un parcours exceptionnel bord\u00e9 d", "site_name": "triathlon-charlevoix"}
\ No newline at end of file
added data/enrich_cache/triguena.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "triguena.ca", "logo_url": "https://triguena.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/trisamare.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "trisamare.ca", "logo_url": "https://trisamare.ca/favicon.ico", "cover_url": "http://trisamare.ca/cdn/shop/files/2_7952deba-ae9d-40cd-a32f-4dc12a2b766c_1200x1200.png?v=1631799668", "description_meta": "Sirop d&#39;\u00e9rable d&#39;exception et biologique Coffret-cadeau prestige Sucre d&#39;\u00e9rable biologique Beurre d&#39;\u00e9rable", "site_name": "Or - \u00c0 m\u00eame la source"}
\ No newline at end of file
added data/enrich_cache/trisamare.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "trisamare.com", "logo_url": "https://trisamare.com/favicon.ico", "cover_url": "http://trisamare.ca/cdn/shop/files/2_7952deba-ae9d-40cd-a32f-4dc12a2b766c_1200x1200.png?v=1631799668", "description_meta": "Sirop d&#39;\u00e9rable d&#39;exception et biologique Coffret-cadeau prestige Sucre d&#39;\u00e9rable biologique Beurre d&#39;\u00e9rable", "site_name": "Or - \u00c0 m\u00eame la source"}
\ No newline at end of file
added data/enrich_cache/troisfoisparjour.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "troisfoisparjour.com", "logo_url": "https://www.troisfoisparjour.com/app/themes/3fpj/dist/images/favicon/favicon-196x196.png", "cover_url": "http://s3-ca-central-1.amazonaws.com/tfpj-s3.troisfoisparjour.com/app/uploads/2018/09/16165327/3fpj_fb_img.jpg", "description_meta": "Trois fois par jour est n\u00e9e de la passion de Marilou pour la cuisine et de son d\u00e9sir de transformer, pour le mieux, la relation des gens avec la nourriture.", "site_name": "Trois fois par jour"}
\ No newline at end of file
added data/enrich_cache/troisiemecoulee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "troisiemecoulee.com", "logo_url": "https://troisiemecoulee.com/wp-content/uploads/2017/08/LOGO_3ecoulee_72dpi_300px.png", "cover_url": "https://troisiemecoulee.com/wp-content/uploads/2017/09/hometop.jpg", "description_meta": "L&#039;\u00e9rabli\u00e8re Une Troisi\u00e8me Coul\u00e9e est situ\u00e9e \u00e0 Saint-Sylvestre-de-Lotbini\u00e8re, dans la r\u00e9gion de Chaudi\u00e8re-Appalaches, r\u00e9put\u00e9e pour sa production ac\u00e9ricole.", "site_name": "Une troisi\u00e8me coul\u00e9e"}
\ No newline at end of file
added data/enrich_cache/troisvallees.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "troisvallees.ca", "logo_url": "https://www.troisvallees.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Laiterie des Trois Vall\u00e9es"}
\ No newline at end of file
added data/enrich_cache/trucsdenfants.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "trucsdenfants.com", "logo_url": "https://trucsdenfants.com/favicon.ico", "cover_url": "http://trucsdenfants.com/cdn/shop/files/Trucs_denfants-Marie-Jo_Dorval-Logo_Officiel_-_Noir.png?height=628&pad_color=ffffff&v=1786395423&width=1200", "description_meta": "Kid\u2019s Stuff [Trucs d\u2019enfants] use eco-friendly fabric to make functional clothes for your fast growing minis.", "site_name": "Kid&#39;s Stuff [Trucs d&#39;enfants]"}
\ No newline at end of file
added data/enrich_cache/tsurprise.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tsurprise.com", "logo_url": "https://tsurprise.com/cdn/shop/files/T-Surprise_logo_transparent_5c941f88-72e0-421b-a9f4-3f8a9c731547_32x32.png?v=1767793031", "cover_url": "http://tsurprise.com/cdn/shop/files/Abonnement_de_th_s_et_infusions.jpg?v=1767842559", "description_meta": "Discover T\u2022Surprise: themed tea and infusion gift sets, perfect for treating yourself or someone special. Flexible subscriptions, delivery included in Quebec and Ontario.", "site_name": "T\u2022Surprise"}
\ No newline at end of file
added data/enrich_cache/tuckhingfoods.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tuckhingfoods.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/e0f60ea9-d536-44ef-9f0e-abc7fac6213c/products.jpg", "description_meta": "Tuck Hing Food products inc. noodles cuisine nouilles wonton is one of the few companies in Quebec to produce fresh Asian noodles, and such a wide variety.", "site_name": "ALIMENTS TUCK HING"}
\ No newline at end of file
added data/enrich_cache/tulipjuvenile.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tulipjuvenile.com", "logo_url": "https://tulipjuvenile.com/wp-content/uploads/2020/07/fav-icon-tulip.png", "cover_url": "https://tulipjuvenile.com/wp-content/uploads/2017/09/leander-linea-dresser-babycot-white-1-scaled.jpg", "description_meta": "Tulip Juvenile is part of the largest manufacturer of baby furniture, Tulip Juvenile.", "site_name": "Tulip Juvenile"}
\ No newline at end of file
added data/enrich_cache/tungstene.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tungstene.ca", "logo_url": "https://tungstene.ca/wp-content/uploads/fbrfg/apple-touch-icon.png", "cover_url": "https://tungstene.ca/wp-content/uploads/elementor/thumbs/Design-materiaux-marbre-oyy0rvxvcayuaqueiu1mhizh3vevr0ulbkvbqrb4sg.jpg", "description_meta": "Fond\u00e9e en 2016, Tungstene est une entreprise Montr\u00e9alaise de conception de luminaires cr\u00e9atifs.", "site_name": "Tungstene"}
\ No newline at end of file
added data/enrich_cache/turlo.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "turlo.ca", "logo_url": "https://turlo.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/tutacoco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tutacoco.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5458fed7e4b0632613859a3d/17fe16b9-1352-48e4-8f04-71df76c111f3/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5458fed7e4b0632613859a3d/t/5c487aa7562fa723659058d5/1548253879795/IMG_8486.JPG?format=1500w", "description_meta": "Garder et transformer l\u2019art de vos enfants en de beaux livres, affiches, calendriers et plus.", "site_name": "TUTA &amp; COCO"}
\ No newline at end of file
added data/enrich_cache/tvcotv.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "tvcotv.com", "logo_url": "https://tvcotv.com/wp-content/uploads/2024/01/cropped-apple-icon-180x180-1-180x180.png", "cover_url": "https://tvcotv.com/wp-content/uploads/2025/10/actu-2-avec-logo.jpg", "description_meta": "Nouvelles Charlevoix, Actualit\u00e9 Charlevoix, Baie-Saint-Paul, TVCO, TVC, T\u00e9l\u00e9baie, COGECO TV, NOUSTV, T\u00e9l\u00e9vision communautaire, T\u00e9l\u00e9vision Charlevoix, T\u00e9l\u00e9vision communautaire Charlevoix, Charlevoix-Ouest, reportages Charlevoix, Images Charlevoix, m\u00e9dias Charlevoix, Journaliste Charlevoix, Information r\u00e9gionale, Information Charlevoix, Politique Charlevoix", "site_name": "TVCO"}
\ No newline at end of file
added data/enrich_cache/u-main.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "u-main.ca", "logo_url": "https://u-main.ca/cdn/shop/files/Logo_Favicon_2023.png?crop=center&height=32&v=1700601632&width=32", "cover_url": "http://u-main.ca/cdn/shop/files/mozzarella_perejilito_square_con_kit_2024.png?v=1725556735", "description_meta": "Discover U MAIN cheese making kits to make fresh cheese at home. Includes cultures, ingredients, tools, and step-by-step recipes for beginners.", "site_name": "Kits U MAIN"}
\ No newline at end of file
added data/enrich_cache/ubald.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ubald.ca", "logo_url": "https://ubald.ca/cdn/shop/files/favicon-ubald_32x32.png?v=1613727770", "cover_url": "http://ubald.ca/cdn/shop/files/ubald-v2_1200x1200.png?v=1621954796", "description_meta": "Ubald Distillerie", "site_name": "Ubald Distillerie"}
\ No newline at end of file
added data/enrich_cache/ultratrailcanada.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ultratrailcanada.com", "logo_url": "https://ultratrailcanada.com/wp-content/themes/qmt/assets/images/icones/favicon.png", "cover_url": null, "description_meta": null, "site_name": "Qu\u00e9bec Mega Trail"}
\ No newline at end of file
added data/enrich_cache/ultratrailharricana.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ultratrailharricana.com", "logo_url": "https://ultratrailharricana.com/favicon.ico", "cover_url": "https://ultratrailharricana.com/wp-content/uploads/2023/09/ianroberge-125km-0022.jpg", "description_meta": "D\u00e9couvrez des paysages uniques, une faune et flore exceptionnelles, et laissez courir votre loup int\u00e9rieur. Inscriptions ouvertes !", "site_name": "Ultra-Trail Harricana du Canada UTHC Trail Running Quebec"}
\ No newline at end of file
added data/enrich_cache/umain.co.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "umain.co", "logo_url": "https://img1.wsimg.com/isteam/ip/cf14bc85-ae8a-4b26-8a79-bd8b9fe8dc55/favicon/6134d6c8-1eef-4ed4-bee8-55393bca5138.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/cf14bc85-ae8a-4b26-8a79-bd8b9fe8dc55/umain_logo_couleur.jpg", "description_meta": null, "site_name": "UMAIN Joaillerie"}
\ No newline at end of file
added data/enrich_cache/umam.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "umam.ca", "logo_url": "https://www.umam.ca/cdn/shop/files/Sauce_poisson_UMAM_symbole_favicon.png?crop=center&height=32&v=1742209811&width=32", "cover_url": "http://www.umam.ca/cdn/shop/files/UMAM_sauce_poisson_-_logo_et_illustration.png?v=1742210936", "description_meta": "Fabriqu\u00e9e au Qu\u00e9bec avec le savoir-faire vietnamien, notre sauce de poisson d&#39;UMAM r\u00e9invente un classique de l\u2019umami. Confectionn\u00e9e \u00e0 partir de capelan p\u00each\u00e9 dans les eaux froides du Saint-Laurent, elle offre un go\u00fbt riche et naturel.", "site_name": "UMAM"}
\ No newline at end of file
added data/enrich_cache/umamichampignon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "umamichampignon.com", "logo_url": "https://www.umamichampignon.com/favicon.ico", "cover_url": null, "description_meta": "Umami champignon", "site_name": "Umami champignon"}
\ No newline at end of file
added data/enrich_cache/umamiepicerie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "umamiepicerie.com", "logo_url": "https://umamiepicerie.com/wp-content/uploads/2021/07/cropped-umami-favicon-logo-180x180.png", "cover_url": "https://umamiepicerie.com/wp-content/uploads/2022/03/Produits-tous4549-copy.jpg", "description_meta": "Umami \u00c9picerie offre aux \u00e9piceries des produits v\u00e9g\u00e9taliens et \u00e9coresponsables inspir\u00e9s de la gastronomie japonaise confectionn\u00e9s de fa\u00e7on artisanale \u00e0 Montr\u00e9al.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/umano.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "umano.ca", "logo_url": "https://www.umano.ca/cdn/shop/files/ICONE_EQUITABLE_BLEU_32x32.svg?v=1758654945", "cover_url": "http://www.umano.ca/cdn/shop/files/umano-logo-seul.svg?v=1712945098", "description_meta": "Umano est un importateur et distributeur de produits pour la majorit\u00e9 certifi\u00e9s \u00e9quitables et biologiques. Notre gamme de produits allie sant\u00e9, plaisir et conscience. Elle comprend des caf\u00e9s, des th\u00e9s, des \u00e9pices, des chocolats, du karit\u00e9, des noix, des graines et des fruits s\u00e9ch\u00e9s.", "site_name": "Umano"}
\ No newline at end of file
added data/enrich_cache/unetouchedail.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "unetouchedail.ca", "logo_url": "https://i0.wp.com/unetouchedail.ca/wp-content/uploads/2021/05/cropped-cropped-newLogo-1.jpg?fit=180%2C180&#038;ssl=1", "cover_url": "https://unetouchedail.ca/wp-content/uploads/2025/10/2025-05-26-toucheail-061-Modifier_clear-2-1024x1024.png", "description_meta": "Fier producteur d&#039;ail du Qu\u00e9bec, nous cultivons l&#039;ail et la fleur d&#039;ail depuis 2016 sur nos terres a Saint-Anicet.", "site_name": "Une Touche d&#039;ail"}
\ No newline at end of file
added data/enrich_cache/ungavaco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ungavaco.com", "logo_url": "https://ungavaco.com/wp-content/uploads/2025/02/cropped-ungava-co-fav-icon-1-180x180.png", "cover_url": null, "description_meta": "Les Spiritueux Ungava est un important producteur de spiritueux artisanaux de qualit\u00e9 sup\u00e9rieure. Maintes fois r\u00e9compens\u00e9s \u00e0 travers le monde.", "site_name": "Les Spiritueux Ungava Spirits Co."}
\ No newline at end of file
added data/enrich_cache/ungoutdemiel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ungoutdemiel.com", "logo_url": "https://www.ungoutdemiel.com/cdn/shop/files/un-gout-de-miel-noir.jpg?crop=center&height=32&v=1658938908&width=32", "cover_url": "http://www.ungoutdemiel.com/cdn/shop/files/un-gout-de-miel-noir_a30aa86f-1c5f-485b-be3f-58eb11461dd7.jpg?v=1663786369", "description_meta": "Savourez l&#39;authenticit\u00e9 du miel qu\u00e9b\u00e9cois avec Un Gout de Miel. Miels artisanaux et desserts sucr\u00e9s pour une exp\u00e9rience gustative unique.", "site_name": "Un go\u00fbt de miel"}
\ No newline at end of file
added data/enrich_cache/unibroue.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "unibroue.com", "logo_url": "https://www.unibroue.com/resources/assets/images/favicon-32x32.png", "cover_url": "https://s3.ca-central-1.amazonaws.com/cdn-unibroue-site/production/seo/_1200x630_crop_center-center_82_none/partage-generique-v2.jpg?mtime=1617797032", "description_meta": "D\u00e9couvrez les bi\u00e8res Unibroue, une brasserie qu\u00e9b\u00e9coise bas\u00e9e \u00e0 Chambly dont les produits renomm\u00e9s mondialement d\u00e9lectent les amateurs de bi\u00e8re de qualit\u00e9\u2026", "site_name": "Unibroue"}
\ No newline at end of file
added data/enrich_cache/unisham.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "unisham.ca", "logo_url": "https://unisham.ca/cdn/shop/files/Favicon_Square_A-01.jpg?crop=center&height=32&v=1741136488&width=32", "cover_url": "http://unisham.ca/cdn/shop/files/F17UNISHAM_LOGO_BANDEAU.png?v=1777573445", "description_meta": "UNISHAM is an Indigenous artisanal leather goods company offering handmade leather accessories in Quebec. Each piece is unique, durable, and customizable, combining tradition, design, and authentic craftsmanship.", "site_name": "UNISHAM"}
\ No newline at end of file
added data/enrich_cache/unisoya.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "unisoya.com", "logo_url": "https://unisoya.com/wp-content/uploads/2026/03/cropped-UNISOYA_RGB_Principal_Couleur-180x180.jpg", "cover_url": "https://unisoya.com/wp-content/uploads/2026/03/UNISOYA_RGB_Principal_Couleur-1.jpg", "description_meta": "Le #1 au Qu\u00e9bec et le plus prot\u00e9in\u00e9. Notre tofu est tr\u00e8s ferme et se travaille facilement. Unisoya transforme le soya d&#039;ici en tofu de qualit\u00e9.", "site_name": "Unisoya"}
\ No newline at end of file
added data/enrich_cache/universo-cibo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "universo-cibo.com", "logo_url": "https://universo-cibo.com/wp-content/themes/blitzWP_v5/assets/favicons/favicon-196x196.png", "cover_url": "https://universo-cibo.com/wp-content/uploads/2026/05/Share-image.png", "description_meta": "P\u00e2tes fra\u00eeches, pizzas al taglio, smash burgers artisanaux et service de traiteur italien. Trois concepts uniques r\u00e9unis sous un m\u00eame toit \u00e0 Chicoutimi.", "site_name": "Universo"}
\ No newline at end of file
added data/enrich_cache/unscentedco.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "unscentedco.com", "logo_url": "https://unscentedco.com/cdn/shop/files/TUC_DROP_FAV_WHITE_CONTOUR.png?crop=center&height=32&v=1742048440&width=32", "cover_url": "http://unscentedco.com/cdn/shop/files/TUC_LOGO_LINEAR.jpg?height=628&pad_color=fff&v=1742048773&width=1200", "description_meta": "We create effective unscented home and body care smartly designed for eco conscious living and a sustainable future.", "site_name": "Unscented Co."}
\ No newline at end of file
added data/enrich_cache/untoitpourmoncoeur.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "untoitpourmoncoeur.com", "logo_url": "https://untoitpourmoncoeur.com/favicon.ico", "cover_url": null, "description_meta": "Campagne de financement", "site_name": null}
\ No newline at end of file
added data/enrich_cache/urantiasolutions.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "urantiasolutions.com", "logo_url": "https://urantiasolutions.com/favicon.ico", "cover_url": "https://urantiasolutions.com/wp-content/uploads/2024/09/FullLogo_Transparent_NoBuffer_WB.png", "description_meta": "Product\u2011first software development company offering high\u2011performance referral products, custom digital solutions, and efficient workflow automations.", "site_name": "Urantia Solutions"}
\ No newline at end of file
added data/enrich_cache/urbanithe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "urbanithe.com", "logo_url": "https://urbanithe.com/favicon.ico", "cover_url": "http:Liquid error (snippets/social-meta-tags line 8): invalid url input", "description_meta": "Chez Urbanith\u00e9, vous retrouverez: th\u00e9, infusion, matcha, accessoire de th\u00e9, coffret cadeau et plus. Magasinez en ligne ou dans nos diff\u00e9rents points de vente. Contactez-nous au (819) 840-9299", "site_name": "Urbanith\u00e9"}
\ No newline at end of file
added data/enrich_cache/utopiesnow.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "utopiesnow.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/526c24f8e4b0b725baaf29b4/b65dcf09-c9c3-49f2-b32d-28093b5c460d/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/526c24f8e4b0b725baaf29b4/t/6291adf6349ae21f79ad71be/1653714422258/logo+oli.png?format=1500w", "description_meta": "Nous sommes une usine sp\u00e9cialis\u00e9e dans la fabrication de Skis et Snowboards en sous-traitance depuis 2003. Notre objectif est de fabriqu\u00e9 et de livr\u00e9 des produits de hautes performances en mettant l\u2019accent sur le design, le \u00ab craftmenship \u00bb et la qualit\u00e9. Chaque jour, Utopie MFG travail avec ses cli", "site_name": "UTOPIE MFG"}
\ No newline at end of file
added data/enrich_cache/uvarmure.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "uvarmure.com", "logo_url": "https://uvarmure.com/cdn/shop/files/android-chrome-512x512.png?crop=center&height=32&v=1777150261&width=32", "cover_url": "http://uvarmure.com/cdn/shop/files/LOGO_UVA__modifiee_Plan_de_travail_1_copie_2_2.png?v=1777149946", "description_meta": "V\u00eatements Protection Solaire - UVArmure \u00c9co-responsable", "site_name": "UVArmure"}
\ No newline at end of file
added data/enrich_cache/v25inc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "v25inc.com", "logo_url": "https://v25inc.com/favicon.ico", "cover_url": null, "description_meta": "D\u00e9couvrez V25, ferme familiale productrice de veaux de grain, poulet et ail. Vente directe \u00e0 la ferme, alimentation locale et savoureuse.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/vacheamaillotte.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vacheamaillotte.com", "logo_url": "https://vacheamaillotte.com/wp-content/uploads/2026/02/logo-fromagerie-vache-a-maillotte-300x300.png", "cover_url": "https://vacheamaillotte.com/wp-content/uploads/2026/04/fbimage-vache-a-maillotte.jpg", "description_meta": "La Fromagerie La Vache \u00e0 Maillotte confectionne des fromages du terroir selon un savoir-faire artisanal et r\u00e9gional.", "site_name": "Fromagerie La Vache \u00e0 Maillotte"}
\ No newline at end of file
added data/enrich_cache/vachon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vachon.com", "logo_url": "https://www.vachon.com/themes/custom/bc_brand/src/favicon/apple-touch-icon.png", "cover_url": null, "description_meta": "The home of all-time-favourite feel-good snacks including Jos Louis, Passion Flakie, Ah Caramel!, Jelly Log and \u00bd Moon.", "site_name": "Vachon"}
\ No newline at end of file
added data/enrich_cache/vachonknives.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vachonknives.com", "logo_url": "https://images.squarespace-cdn.com/content/v1/5826834b15d5dbb8580b25f6/1610159821061-2ASTPWFB7G4Q0Z2KAC59/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5826834b15d5dbb8580b25f6/t/582e760629687f9013fbf2b0/1479439881062/KV_CompleteLogo.png?format=1500w", "description_meta": null, "site_name": "Vachon Knives"}
\ No newline at end of file
added data/enrich_cache/vaillancourt.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vaillancourt.ca", "logo_url": "https://www.vaillancourt.ca/favicon.ico", "cover_url": "https://www.vaillancourt.ca/images/OGimage.jpg", "description_meta": "Vaillancourt : fabricant qu&#xE9;b&#xE9;cois de portes et fen&#xEA;tres. Produits 100 % fabriqu&#xE9;s au Qu&#xE9;bec et la meilleure garantie &#xE0; vie* de l&#x2019;industrie.", "site_name": "Vaillancourt Portes et Fen&#xEA;tres"}
\ No newline at end of file
added data/enrich_cache/val-saint-francois.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "val-saint-francois.qc.ca", "logo_url": "https://val-saint-francois.qc.ca/wp-content/uploads/2018/07/VSF_logo.png", "cover_url": "https://val-saint-francois.qc.ca/wp-content/uploads/2020/10/imageSEO.png", "description_meta": "De culture innovante", "site_name": "MRC Val-Saint-Fran\u00e7ois"}
\ No newline at end of file
added data/enrich_cache/valeriecdesign.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "valeriecdesign.ca", "logo_url": "https://valeriecdesign.ca/cdn/shop/files/Logo_noir_fonds_blanc.png?crop=center&height=32&v=1738357822&width=32", "cover_url": null, "description_meta": "EFFORTLESS LUXURY V\u00eatements ajustables - Tissus de haute qualit\u00e9 - Designs uniques - Confort absolu | Chez VALERIE C., nous croyons en une mode durable et plus \u00e9thique. Nous d\u00e9sirons offrir le confort \u00e0 travers des v\u00eatements luxueux de tous les jours tout en encourageant notre expertise qu\u00e9b\u00e9coise.", "site_name": "VALERIE C. DESIGN"}
\ No newline at end of file
added data/enrich_cache/vallee-des-grands-potagers.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vallee-des-grands-potagers.ca", "logo_url": "https://vallee-des-grands-potagers.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vallee.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vallee.ca", "logo_url": "https://vallee.ca/wp-content/uploads/2021/11/favicon-2.png", "cover_url": "https://vallee.ca/wp-content/uploads/2025/09/20230511_150656-scaled-600x450.jpg.webp", "description_meta": "Vall\u00e9e est un chef de file reconnu, en Am\u00e9rique du Nord, pour ses innovations en mati\u00e8re de chariots \u00e9l\u00e9vateurs articul\u00e9s et d&#039;accessoires de manutention", "site_name": "Vall\u00e9e"}
\ No newline at end of file
added data/enrich_cache/vallonsdeseboulements.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vallonsdeseboulements.com", "logo_url": "https://vallonsdeseboulements.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/valoy.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "valoy.ca", "logo_url": "https://valoy.ca/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/valupierre.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "valupierre.com", "logo_url": "https://valupierre.com/wp-content/uploads/2018/12/cropped-feuille-180x180.png", "cover_url": "https://valupierre.com/wp-content/uploads/2019/04/image-principale-FermeValupierre-FR.jpg", "description_meta": "Ferme Valupierre est une entreprise familiale situ\u00e9e sur l\u2019\u00cele d\u2019Orl\u00e9ans qui cultive la pomme de terre de g\u00e9n\u00e9ration en g\u00e9n\u00e9ration. Soucieux de la qualit\u00e9 de ce tr\u00e9sor de notre agriculture au Qu\u00e9bec, nous cultivons la terre avec soin et sommes toujours \u00e0 l\u2019aff\u00fbt des tendances du march\u00e9. C&#039;est un v\u00e9ritable plaisir de partager notre passion avec vous! D\u00e9couvrez notre gamme de pommes de terres c", "site_name": "Ferme Valupierre"}
\ No newline at end of file
added data/enrich_cache/vanaelle.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vanaelle.com", "logo_url": "https://vanaelle.com/cdn/shop/files/favicon-vanaelle.jpg?v=1697741939&width=180", "cover_url": "http://vanaelle.com/cdn/shop/files/1600X400.jpg?v=1741786286&width=2048", "description_meta": "Vana\u00eblle is a hand-carved jewelry company made from wood, resin and semi-precious stone and has a mission to honor the hearts of women in addition to offering a commemorative collection. Noble materials, quality products designed using jewelry techniques.", "site_name": "Vana\u00eblle"}
\ No newline at end of file
added data/enrich_cache/varin.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "varin.ca", "logo_url": "https://varin.ca/owebo-votresite/sites/default/files/images/IMG_2456.PNG", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vaudryvilleneuve.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vaudryvilleneuve.ca", "logo_url": "https://vaudryvilleneuve.ca/wp-content/uploads/2025/03/cropped-httpswww.vaudryvilleneuve.ca_-180x180.png", "cover_url": "https://vaudryvilleneuve.ca/wp-content/uploads/2026/02/Les-avantages-des-rampes-et-garde-corps-en-verre-trempe.jpg", "description_meta": "Fabricant et installateur de rampes, balcons, escaliers et auvents en aluminium et fibre de verre \u00e0 Terrebonne. Licence RBQ, +25 ans. Soumission gratuite.", "site_name": "Vaudry Villeneuve"}
\ No newline at end of file
added data/enrich_cache/vdmt.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vdmt.ca", "logo_url": "https://vdmt.ca/favicon.ico", "cover_url": "https://vdmt.ca/themes/mont-tremblant/assets/medias/images/share.jpg", "description_meta": "D&#x00E9;couvrez&#x20;le&#x20;site&#x20;de&#x20;la&#x20;Ville&#x20;de&#x20;Mont-Tremblant&#x20;&#x3A;&#x20;une&#x20;destination&#x20;touristique&#x20;de&#x20;classe&#x20;internationale&#x20;qui&#x20;se&#x20;d&#x00E9;veloppe&#x20;en&#x20;harmonie&#x20;avec&#x20;sa&#x20;communaut&#x00E9;&#x20;et&#x20;son&#x20;environnement.", "site_name": "Mont-Tremblant"}
\ No newline at end of file
added data/enrich_cache/vegetolab.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vegetolab.com", "logo_url": "https://vegetolab.com/wp-content/uploads/2021/11/cropped-Favicon-180x180.png", "cover_url": "https://vegetolab.com/wp-content/uploads/2021/11/HEADER-Facebook-\u2013-820x360-1.jpg", "description_meta": "ACHETER EN LIGNE \u2192 Grossiste de plants fruitiers produits in vitro et par propagation conventionnelle. \u2192 Livraison partout au Canada.", "site_name": "V\u00e9g\u00e9tolab \u2192 Grossiste fruitier - Culture In-vitro de v\u00e9g\u00e9taux multiplicateur de "}
\ No newline at end of file
added data/enrich_cache/vegpro.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vegpro.com", "logo_url": "https://vegpro.com/wp-content/uploads/2024/07/cropped-favicon_vegpro-180x180.png", "cover_url": "https://vegpro.com/wp-content/uploads/2024/10/img_Vegpro_produits_CTA.jpg", "description_meta": "Nous sommes le plus grand producteur-emballeur de laitues et l\u00e9gumes frais au Canada. Bas\u00e9s au Qu\u00e9bec, en Colombie-Britannique et en Floride, nous desservons les principales enseignes alimentaires au pays et sur l\u2019ensemble de la c\u00f4te est des \u00c9tats-Unis.", "site_name": "Vegpro"}
\ No newline at end of file
added data/enrich_cache/veillesurtoi.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "veillesurtoi.com", "logo_url": "https://veillesurtoi.com/cdn/shop/files/VST_Logo_Nuage_255x_2x_3a5f004f-ccf6-4fc1-938b-b702a166121c_96x.webp?v=1758909707", "cover_url": "https://cdn.shopify.com/s/files/1/0267/7352/0559/files/test_shopify.png?v=1683727797", "description_meta": "Entreprise qu\u00e9b\u00e9coise sp\u00e9cialis\u00e9e dans la fabrication de veilleuses pour tout-petits depuis 2013. Veille sur toi a aussi une charmante boutique de jouets \u00e0 Laval!", "site_name": "Veille sur toi"}
\ No newline at end of file
added data/enrich_cache/veinage.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "veinage.ca", "logo_url": "https://veinage.ca/cdn/shop/files/favico_32x32.png?v=1613688770", "cover_url": "http://veinage.ca/cdn/shop/files/Entete_Shopify_Veinage_15_years_1200x1200.png?v=1756910124", "description_meta": "Discover&#39;s our leather backpacks, handbags and jewelry.", "site_name": "Veinage"}
\ No newline at end of file
added data/enrich_cache/velocharlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "velocharlevoix.ca", "logo_url": "https://www.velocharlevoix.ca/wp-content/uploads/2017/03/cropped-Sans-titre-1-280x280.webp", "cover_url": "https://www.velocharlevoix.ca/wp-content/uploads/2023/02/cropped-VC.png", "description_meta": "De la vill\u00e9giature \u00e0 l\u2019aventure : Charlevoix \u00e0 v\u00e9lo Nich\u00e9e entre fleuve et montagnes, Charlevoix est l&#039;une des rares r\u00e9gions du monde fa\u00e7onn\u00e9es par un impact m\u00e9t\u00e9oritique. Ce choc colossal, survenu il y a 400 millions d\u2019ann\u00e9es, a donn\u00e9 naissance \u00e0 un relief accident\u00e9, sculpt\u00e9 par le temps, qui fait aujourd\u2019hui le bonheur des cyclistes", "site_name": "V\u00c9LO CHARLEVOIX | Viens Rouler"}
\ No newline at end of file
added data/enrich_cache/velocoudres.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "velocoudres.com", "logo_url": "http://velocoudres.com/favicon.ico", "cover_url": null, "description_meta": "Location, V\u00e9lo-Coudres, V\u00e9lo, Coudres, Location de V\u00e9lo, Location de Quadricycles, Location de Mobylettes, Ile aux Coudres, Isle aux Coudres, Randonn\u00e9es, Plein-Air, Tourisme, Touristique, Charlevoix, Qu\u00e9bec, Canada", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ventilation-maximum.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ventilation-maximum.com", "logo_url": "https://ventilation-maximum.com/wp-content/uploads/2023/11/cropped-20230765-VM-BLUE-Emblem-iso-1-180x180.png", "cover_url": "https://ventilation-maximum.com/wp-content/uploads/2024/05/locate-1024x1020.png", "description_meta": "Ventilateurs de toit, clapets et entr\u00e9es d&#039;air performants : des produits durables choisis par les couvreurs au Qu\u00e9bec.", "site_name": "Ventilation Maximum"}
\ No newline at end of file
added data/enrich_cache/veosprings.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "veosprings.com", "logo_url": "https://veosprings.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/verbois.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "verbois.com", "logo_url": "https://verbois.com/wp-content/uploads/2025/04/cropped-favicon-32x32-1-180x180.png", "cover_url": "https://verbois.com/wp-content/uploads/2025/08/cropped-cropped-Galerie-Verbois.jpg", "description_meta": "Chaque meuble prend vie au Bas-Saint-Laurent. Entre for\u00eats et fleuve, notre \u00e9quipe de cr\u00e9ateurs, d\u2019artisans et de penseurs imagine, con\u00e7oit et fabrique du\u2026", "site_name": "Verbois"}
\ No newline at end of file
added data/enrich_cache/vergerapipomme.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerapipomme.com", "logo_url": "https://img1.wsimg.com/isteam/ip/1671e565-eb7e-4dfc-a680-d3fd9c4d0e3a/2AD4E544-D944-421C-8518-250B13BD74F0.png/:/rs=w:180,h:180,m", "cover_url": "https://i.vimeocdn.com/video/1678938170-29ea322a248c8332b6163537c671b5a4e7e1fe0f9e1098ccec57bf0db525a770-d_1920x1080?&amp;r=pad", "description_meta": "D\u00e9couvrez le verger Api-Pomme, ferme biologique. Un espace \u00e9coresponsable pour les activit\u00e9s \u00e0 la ferme, belv\u00e9d\u00e8re, sentier, aires de d\u00e9tentes, jeux pour enfants, auto-cueillette, boutique champ\u00eatre, produits locaux, aliments du terroir, rafraichissements, patisseries maisons, croustade aux pommes.", "site_name": "Verger Api-Pomme"}
\ No newline at end of file
added data/enrich_cache/vergerbellacroquer.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerbellacroquer.ca", "logo_url": "https://static.wixstatic.com/media/1d2419_e410614db8fb4ff3a9c50378e15b67cf%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1d2419_e410614db8fb4ff3a9c50378e15b67cf%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergerbois-francs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerbois-francs.com", "logo_url": "https://www.vergerbois-francs.com/verger/wp-content/uploads/2016/01/favicon_3742.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergercote.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergercote.com", "logo_url": "http://vergercote.com/wp-content/themes/bridge/img/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergercroquepomme.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergercroquepomme.ca", "logo_url": "https://vergercroquepomme.ca/medias/2017/07/favicon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergercusteau.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergercusteau.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/886e8b64-3d64-43bf-95c4-17cfac5d019b/blob.png", "description_meta": "pomme, auto-cueillette, verger, jus, famille, pique-nique, nature, agriculture, poire, prune, terroir", "site_name": "Ferme fruiti\u00e8re"}
\ No newline at end of file
added data/enrich_cache/vergerdetilly.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerdetilly.ca", "logo_url": "https://vergerdetilly.ca/wp-content/uploads/2024/10/favicon.svg", "cover_url": "https://vergerdetilly.ca/wp-content/uploads/2025/01/social_share.jpg", "description_meta": "Explorez un vaste site enchanteur et familial o\u00f9 de passionn\u00e9s artisans de la pomme vous feront d\u00e9couvrir toutes les subtilit\u00e9s de ce d\u00e9licieux fruits.", "site_name": "Verger de Tilly | Bien plus qu\u2019un verger !"}
\ No newline at end of file
added data/enrich_cache/vergerdugrand.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerdugrand.com", "logo_url": "https://vergerdugrand.com/wp-content/uploads/2019/08/logo-verger-favicon.png", "cover_url": "https://vergerdugrand.com/wp-content/uploads/2019/08/IMG_2232-min.jpg", "description_meta": "Le Verger du Grand est une entreprise familiale sp\u00e9cialis\u00e9e dans la production et la mise en march\u00e9 de pommes. - Auto-cueillette et visites \u00e9ducatives.", "site_name": "Verger du Grand"}
\ No newline at end of file
added data/enrich_cache/vergerduparadis.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerduparadis.ca", "logo_url": "https://vergerduparadis.ca/wp-content/uploads/2023/01/cropped-favicon-180x180.png", "cover_url": "https://vergerduparadis.ca/wp-content/uploads/2022/07/verger-du-paradis-biologiques.png", "description_meta": null, "site_name": "Verger du paradis"}
\ No newline at end of file
added data/enrich_cache/vergerferland.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerferland.com", "logo_url": "https://i0.wp.com/vergerferland.com/wp-content/uploads/2026/07/v_f__logo_5_sans_fond.png?fit=152%2C180&#038;ssl=1", "cover_url": "https://i0.wp.com/vergerferland.com/wp-content/uploads/2026/07/v_f__logo_2_beige.png?fit=4540%2C2541&#038;ssl=1", "description_meta": "Verger, cidrerie et autocueillette \u00e0 Compton, Estrie.", "site_name": "VERGER FERLAND"}
\ No newline at end of file
added data/enrich_cache/vergerivanhoefaille.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerivanhoefaille.com", "logo_url": "https://vergerivanhoefaille.com/lvif/wp-content/themes/ivanhoe/favicon_64.png", "cover_url": "http://vergerivanhoefaille.com/lvif/wp-content/uploads/2015/09/logo_vergersfaille_noir.png", "description_meta": "Les Vergers Ivanho\u00eb Faille offrent des produits de l\u2019\u00e9rable, de bleuets, et de pommes. Situ\u00e9 sur la Covey Hill, il est possible de cueillir vos fruits.", "site_name": "Les Vergers Ivanh\u00f6e Faille"}
\ No newline at end of file
added data/enrich_cache/vergerlesjardinsdemilie.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerlesjardinsdemilie.ca", "logo_url": "https://vergerlesjardinsdemilie.ca/favicons/apple-touch-icon.png", "cover_url": "https://vergerlesjardinsdemilie.ca/img/client/img-fb.jpg", "description_meta": "Commande en ligne, pr\u00eat-\u00e0-manger, paniers de fruits et l\u00e9gumes, le verger Les Jardins d", "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergerrustik.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerrustik.com", "logo_url": "https://vergerrustik.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergerscassidy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerscassidy.com", "logo_url": "https://vergerscassidy.com/wp-content/uploads/vergers-cassidy-favicon-300x300.png", "cover_url": "https://vergerscassidy.com/wp-content/uploads/ogimage.jpg", "description_meta": "Les Vergers Cassidy L\u00c3\u00a0 o\u00c3\u00b9 l\u00e2\u0080\u0099auto-cueillette est une tradition! En 1892, la famille Cassidy acquiert la ferme situ\u00c3\u00a9e sur la vieille route 52 (aujourd\u00e2\u0080\u0099hui devenue route 202). Les Cassidy innovent vers les ann\u00c3\u00a9es 1960 en cr\u00c3\u00a9ant le premier U-Pick de la r\u00c3\u00a9gion et un kiosque de pommes \u00c3\u00a0 la route avec \u00c2\u00abPaiement d\u00e2\u0080\u0099honneur.\u00c2\u00bbExistant encore aujourd\u00e2\u0080\u0099hui [&hellip;]", "site_name": "Les Vergers Cassidy"}
\ No newline at end of file
added data/enrich_cache/vergerscataphard.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerscataphard.com", "logo_url": "https://vergerscataphard.com/wp-content/uploads/2022/07/Vcataphard-fils.jpg", "cover_url": "https://vergerscataphard.com/wp-content/uploads/2016/03/cropped-cropped-512-1.png", "description_meta": "Ici la QUALIT\u00c9 est le mot d\u2019ordre! Des pommes savoureuses qui respectent les standards de l\u2019industrie de la pomme du Qu\u00e9bec.", "site_name": "Les Vergers Cataphard"}
\ No newline at end of file
added data/enrich_cache/vergerscharbonneau.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerscharbonneau.com", "logo_url": "https://vergerscharbonneau.com/icon.png?icon.0i33a8cvggrnk.png?dpl=dpl_9v7eH4WgDB5GsWgP8Ep1A7UjEQP8", "cover_url": null, "description_meta": "Verger familial \u00e0 Mont-Saint-Gr\u00e9goire depuis 1981. Autocueillette, cidrerie, cr\u00eaperie bretonne, caf\u00e9-bistro et boutique gourmande.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergersdevelours.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergersdevelours.com", "logo_url": "https://static.wixstatic.com/media/e6bd4c_0ef50149c635453796500ad3fa1b06d6.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/e6bd4c_0ef50149c635453796500ad3fa1b06d6.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergershillspring.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergershillspring.com", "logo_url": "https://vergershillspring.com/cdn/shop/files/Verge_Logo_Hillspring_Blanc_5_152x.png?v=1622512458", "cover_url": null, "description_meta": "Verger en Mont\u00e9r\u00e9gie", "site_name": "Vergers Hillspring"}
\ No newline at end of file
added data/enrich_cache/vergerspetchorchards.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerspetchorchards.com", "logo_url": "https://vergerspetchorchards.com/wp-content/uploads/2021/09/cropped-petch-favicon-180x180.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergersphilion.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergersphilion.com", "logo_url": "https://vergersphilion.com/favicon.ico", "cover_url": null, "description_meta": "Un site utilisant WordPress", "site_name": null}
\ No newline at end of file
added data/enrich_cache/vergersrockburnorchards.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergersrockburnorchards.com", "logo_url": "https://www.vergersrockburnorchards.com/uploads/b/1c5ba1b0-6f9f-11ea-a920-c92aa3dba0d5/icon_180x180_ios_ODQwOT.png?width=180", "cover_url": null, "description_meta": "Order your products online to pick up conveniently in store, or get certain products shipped right to your door.", "site_name": "Vergers Rockburn Orchards"}
\ No newline at end of file
added data/enrich_cache/vergerstpaul.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vergerstpaul.ca", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/stock/56693", "description_meta": "Les Croquantes et Les Petites Croquantes! Ces pommes sont cultiv\u00e9es et choisies avec soin pour leur saveur et leur fermet\u00e9!", "site_name": "Vergers St-Paul"}
\ No newline at end of file
added data/enrich_cache/verifruit.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "verifruit.ca", "logo_url": "https://cdn.prod.website-files.com/6137619ca4c6d43e9e7fe342/61433d6e4909ca5825a72930_verifruit_favicon_webclip.png", "cover_url": "https://cdn.prod.website-files.com/6137619ca4c6d43e9e7fe342/61433fda6ed4376704228cda_Verifruit_OG.jpg", "description_meta": "De v\u00e9ritables fruits soigneusement cueillis et un chocolat noir de qualit\u00e9 sup\u00e9rieure. Pourquoi r\u00e9sister?", "site_name": null}
\ No newline at end of file
added data/enrich_cache/veritable.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "veritable.ca", "logo_url": "https://veritable.ca/wp-content/uploads/2024/10/cropped-Fav-180x180.png", "cover_url": "https://veritable.ca/wp-content/uploads/2024/11/og-veritable.jpg", "description_meta": null, "site_name": "V\u00e9ritable"}
\ No newline at end of file
added data/enrich_cache/veroniquedaragon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "veroniquedaragon.com", "logo_url": "https://veroniquedaragon.com/favicon.ico", "cover_url": "https://veroniquedaragon.com/wp-content/uploads/2024/01/Conge-des-Fetes.png", "description_meta": "La sp&eacute;cificit&eacute; de ma collection r&eacute;side dans ses collages aux motifs divers (tons, textures et couleurs), qui ne sont pas sans rappeler les valeurs de notre&#8230;", "site_name": "V\u00e9ronique d&#039;Aragon"}
\ No newline at end of file
added data/enrich_cache/verredonge.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "verredonge.com", "logo_url": "https://cdn.prod.website-files.com/5e8e8e2ee300e4f75264ce84/5eb4f34e4c8c0c1c042cec85_webclip.jpg", "cover_url": "https://cdn.prod.website-files.com/5e8e8e2ee300e4f75264ce84/68afad12cea0be45307fcbd0_44ad9f124e1606cd26cb85d5572c3d17_verre-donge-photo-lien-web-celia-spenard-ko.jpg", "description_meta": "Pi\u00e8ces uniques en verre souffl\u00e9 bouche, fait \u00e0 Montr\u00e9al.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/verrelime.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "verrelime.ca", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/versantfruitier.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "versantfruitier.com", "logo_url": "http://versantfruitier.com/favicon.ico", "cover_url": "http://www.versantfruitier.com/ewExternalFiles/Image%20panier.png", "description_meta": "Ferme le versant fruitier", "site_name": null}
\ No newline at end of file
added data/enrich_cache/versomicrobrasserie.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "versomicrobrasserie.com", "logo_url": "https://versomicrobrasserie.com/wp-content/themes/verso/favicon/favicon-194x194.png", "cover_url": "https://cdn.versomicrobrasserie.com/wp-content/uploads/2026/07/30134814/Verso-Ete.jpg", "description_meta": "Microbrasserie \u00e0 Lac-Etchemin : des bi\u00e8res brass\u00e9es sur place, le Pub du Lac ouvert \u00e0 l&#039;ann\u00e9e et le Pub Alpin au Mont-Orignal. Le lac, la montagne.", "site_name": "Verso Microbrasserie"}
\ No newline at end of file
added data/enrich_cache/vertiberry.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vertiberry.com", "logo_url": "https://vertiberry.com/wp-content/uploads/2024/09/cropped-LinkedLogo-180x180.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/veterinov.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "veterinov.ca", "logo_url": "https://veterinov.ca/wp-content/themes/veterinov/assets/images/favicon/android-icon-192x192.png", "cover_url": "https://veterinov.ca/wp-content/uploads/2025/10/screenshot.png", "description_meta": "D\u00e9couvrez le nouveau standard de l\u2019\u00e9quipement v\u00e9t\u00e9rinaire \u2013 Fabriqu\u00e9 au Canada", "site_name": "V\u00e9t\u00e9rinov"}
\ No newline at end of file
added data/enrich_cache/vggourmet.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vggourmet.com", "logo_url": "https://www.vggourmet.com/wp-content/uploads/2022/04/cropped-eggplant-tahini-burger-180x180.png", "cover_url": "https://www.vggourmet.com/wp-content/uploads/2024/09/eggplant-tahini-burger1.png1-ezgif.com-webp-to-png-converter-1-1-1.png", "description_meta": "Welcome to VG Gourmet, where big bold flavors meet fresh, plant-based ingredients. Discover our gourmet taste with a range of vegan products, all made with locally sourced veggies and a commitment to quality. Join our journey of love, triumph, and delicious food, all in harmony with the earth.", "site_name": "VG Gourmet"}
\ No newline at end of file
added data/enrich_cache/viandescds.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "viandescds.com", "logo_url": "https://viandescds.com/app/themes/arsenalweb/assets/favicon/apple-touch-icon.png", "cover_url": "https://viandescds.com/app/uploads/2024/04/Bacon_104868-1.jpg", "description_meta": "Viandes CDS - description", "site_name": "Viandes CDS"}
\ No newline at end of file
added data/enrich_cache/vieuxsainteustache.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vieuxsainteustache.com", "logo_url": "https://www.vieuxsainteustache.com/favicon.ico", "cover_url": "https://www.vieuxsainteustache.com/wp-content/uploads/2022/11/texte-institutions-museales.png", "description_meta": "D\u00e9couvrir ESPACE MUS\u00c9AL DU MANOIR Globensky Moulin L\u00e9gar\u00e9 D\u00e9couvrir Maison Ch\u00e9nier-Sauv\u00e9 D\u00e9couvrir D\u00e9couvrir Festival de la Galette D\u00e9couvrir \u00c9glise de Saint-Eustache Circuits et visitesd\u00e9couvertes DU VIEUX-SAINT-EUSTACHE D\u00e9couvrir \u00e9ducationet groupes D\u00e9couvrir [&hellip;]", "site_name": "Vieux-Saint-Eustache"}
\ No newline at end of file
added data/enrich_cache/vignoblebromont.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignoblebromont.ca", "logo_url": "https://vignoblebromont.ca/cdn/shop/files/vignoble-favicon_32x32.png?v=1614356753", "cover_url": "https://cdn.shopify.com/s/files/1/0282/8353/5457/files/vignoble-logo_4x.png?height=628&pad_color=ffffff&v=1614353336&width=1200", "description_meta": "Vignoble Bromont", "site_name": "Vignoble Bromont"}
\ No newline at end of file
added data/enrich_cache/vignoblecamy.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignoblecamy.com", "logo_url": "https://static.wixstatic.com/media/26428f_1fe3877d7e4542f29f248eb91f462698%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/26428f_1fe3877d7e4542f29f248eb91f462698%7Emv2.png", "cover_url": "https://static.wixstatic.com/media/26428f_f0f4964460154ca38a4d22925cb59935~mv2.jpg/v1/fill/w_1600,h_1065,al_c/26428f_f0f4964460154ca38a4d22925cb59935~mv2.jpg", "description_meta": "Vignoble CAMY - Producteur de Grands Crus d\u2019ici.\nNos vins prestigieux sont servis dans les meilleurs restaurants du Qu\u00e9bec et jusqu\u2019aux tables \u00e9toil\u00e9es Michelin \u00e0 Paris!", "site_name": "Vignoble Camy"}
\ No newline at end of file
added data/enrich_cache/vignoblechdelariviere.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignoblechdelariviere.com", "logo_url": "https://static.parastorage.com/client/pfavico.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vignobledesbattures.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignobledesbattures.com", "logo_url": "https://static.wixstatic.com/media/1d2419_1069c1d9c96f4460a8801fd82536074a%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/1d2419_1069c1d9c96f4460a8801fd82536074a%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vignobledomainebresee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignobledomainebresee.com", "logo_url": "https://cdn.prod.website-files.com/6590554ad6b0574d4e758125/66e4830883921a34b547a70d_BRESEE_Web-Assets_WebClip.png", "cover_url": "https://cdn.prod.website-files.com/6590554ad6b0574d4e758125/66e481eed78e38e7d6376515_BRESEE_Web-Assets_OpenGraph.webp", "description_meta": "Explorez l&#x27;essence de notre vignoble familial \u00e0 Sutton dans les Cantons de L&#x27;Est. D\u00e9couvrez nos vins prim\u00e9s et notre b\u0153uf local, ainsi que nos exp\u00e9riences uniques au c\u0153ur de la viticulture.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/vignobleduclosdelisle.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignobleduclosdelisle.ca", "logo_url": "https://vignobleduclosdelisle.ca/favicon.ico", "cover_url": null, "description_meta": "Vignoble situ\u00e9 \u00e0 B\u00e9cancour. Explorez nos vignes, d\u00e9gustez nos vins et laissez-vous charmer par la beaut\u00e9 du d\u00e9cor.", "site_name": "Domaine du Clos de l&#039;Isle"}
\ No newline at end of file
added data/enrich_cache/vignoblegagliano.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignoblegagliano.com", "logo_url": "https://vignoblegagliano.com/favicon.ico", "cover_url": "https://vignoblegagliano.com/wp-content/uploads/2022/09/Gagliano-Family.jpg", "description_meta": "Welcome to Gagliano Vineyards On August 21st 2008, the Gagliano family acquired this beautiful winery and changed its name to \u201cVIGNOBLE GAGLIANO VINEYARDS\u201d to personalize its character. Our wines Season of tasting for Gagliano wine We offer a \u00a0great variety of wine for every price point and any occasion, from light and fruity to bold [&hellip;]", "site_name": "Vignoble Gagliano Vineyards"}
\ No newline at end of file
added data/enrich_cache/vignoblelacantina.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignoblelacantina.ca", "logo_url": "https://vignoblelacantina.ca/favicon.ico", "cover_url": "https://vignoblelacantina.ca/wp-content/uploads/2022/06/Banniere-CTND-VRDC-juin2022.jpg", "description_meta": "D\u00e9couvrez le Vignoble La Cantina - Vall\u00e9e d&#039;Oka dans les Basses-Laurentides. Vins IGP Qu\u00e9bec issus d\u2019un terroir unique, savoir-faire local, d\u00e9gustations et exp\u00e9riences au c\u0153ur des vignes.", "site_name": "Vignoble La Cantina"}
\ No newline at end of file
added data/enrich_cache/vignoblelavalleedesnuages.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignoblelavalleedesnuages.com", "logo_url": "https://vignoblelavalleedesnuages.com/favicon.ico", "cover_url": "https://vignoblelavalleedesnuages.com/vignoblelavalleedesnuages/wp-content/uploads/2020/03/101.jpg", "description_meta": "Le vignoble La vall\u00e9e des nuages vous fera vivre une exp\u00e9rience unique o\u00f9 les sens sont \u00e0 l\u2019honneur avec des produits transform\u00e9s sur place", "site_name": "Vignoble La vall\u00e9e des nuages"}
\ No newline at end of file
added data/enrich_cache/vignoblelescollines.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignoblelescollines.ca", "logo_url": "https://vignoblelescollines.ca/wp-content/uploads/2026/07/Logo_Fond-Noir2-scaled.jpg", "cover_url": null, "description_meta": "Un terroir unique dans le Pontiac!", "site_name": "Vignoble Les Collines"}
\ No newline at end of file
added data/enrich_cache/vignobleriviereduchene.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vignobleriviereduchene.ca", "logo_url": "https://vignobleriviereduchene.ca/favicon.ico", "cover_url": "https://vignobleriviereduchene.ca/wp-content/uploads/2024/03/Vignoble-Riviere-du-Chene_2023.png", "description_meta": "D\u00e9couvrez le Vignoble Rivi\u00e8re du Ch\u00eane \u00e0 Saint-Eustache : vins qu\u00e9b\u00e9cois prim\u00e9s, Bistro gourmand et exp\u00e9riences \u0153notouristiques au c\u0153ur des Basses-Laurentides.", "site_name": "Vignoble Rivi\u00e8re du Ch\u00eane"}
\ No newline at end of file
added data/enrich_cache/villagemajopial.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "villagemajopial.ca", "logo_url": "https://villagemajopial.ca/wp-content/uploads/2017/07/favicon.png", "cover_url": "https://villagemajopial.ca/wp-content/uploads/2017/07/Icone_chalets-1.png", "description_meta": "Site de vill\u00e9giature au bord du lac des 31 Milles offrant location de chalets, chambres \u00e0 l&#039;auberge et un restaurant gastronomique, L&#039;Huile d&#039;Olive.", "site_name": "Village Majopial, Lac 31 Milles"}
\ No newline at end of file
added data/enrich_cache/villamarvic.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "villamarvic.com", "logo_url": "data:image/svg+xml,%3csvg%20xmlns=", "cover_url": "https://www.villamarvic.com/images/og-default.png", "description_meta": "7 000 pieds carr\u00c3\u00a9s d\u00c3\u00a9cor\u00c3\u00a9s avec \u00c3\u00a9l\u00c3\u00a9gance, surplombant le spectaculaire fleuve Saint-Laurent, au c\u00c5\u0093ur de la majestueuse r\u00c3\u00a9gion de Charlevoix.", "site_name": "Villa Marvic"}
\ No newline at end of file
added data/enrich_cache/villavillaexperience.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "villavillaexperience.com", "logo_url": "https://villavillaexperience.com/favicon.ico", "cover_url": "https://villavillaexperience.com/static/uploads/publication/thumbs/1-y0x6q.jpg", "description_meta": "Propri\u00e9t\u00e9s d\u2019exception \u00e0 louer", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ville.clermont.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ville.clermont.qc.ca", "logo_url": "https://ville.clermont.qc.ca/favicon.ico", "cover_url": "http://www.ville.clermont.qc.ca/http://via.placeholder.com/200x200", "description_meta": "Situ\u00e9 entre l&#039;arri\u00e8re-pays de Charlevoix et le fleuve Saint-Laurent, Clermont vous re\u00e7oit dans son site enchanteur, bord\u00e9 par la Rivi\u00e8re-Malbaie.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/ville.farnham.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ville.farnham.qc.ca", "logo_url": "https://ville.farnham.qc.ca/wp-content/uploads/2024/08/cropped-favicon-180x180.png", "cover_url": null, "description_meta": "Acc\u00e9dez rapidement \u00e0 tous nos services Bienvenue \u00e0 Farnham ! \u00c0 NE PAS MANQUER Calendrier des \u00e9v\u00e9nements Acc\u00e8s rapides DEMANDES DE PERMIS CARTE ACC\u00c8S FARNHAM s\u00e9ances du conseil programmation du 150e BIBLIOTH\u00c8QUE R\u00d4LE D\u2019\u00c9VALUATION INSCRIPTION AUX ALERTES COLLECTES Informations importantes RESTEZ INFORM\u00c9 Actualit\u00e9s VIVRE ICI, S\u2019\u00c9PANOUIR. S\u2019\u00e9tablir \u00e0 Farnham Situ\u00e9e \u00e0 la porte de l\u2019Estrie", "site_name": "Ville de Farnham - Ville de Farnham | Grandir ensemble !"}
\ No newline at end of file
added data/enrich_cache/ville.lamalbaie.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ville.lamalbaie.qc.ca", "logo_url": "https://www.ville.lamalbaie.qc.ca/favicon.ico", "cover_url": "https://www.ville.lamalbaie.qc.ca/wp-content/uploads/2018/09/building.png", "description_meta": "Site officiel de la Ville de La Malbaie - Pour tout savoir \u00e0 propos de la Ville de La Malbaie", "site_name": "Ville de La Malbaie"}
\ No newline at end of file
added data/enrich_cache/ville.montmagny.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ville.montmagny.qc.ca", "logo_url": "https://www.ville.montmagny.qc.ca/images/icones/apple_touch_57.png", "cover_url": "https://www.ville.montmagny.qc.ca/images/site/facebook.jpg", "description_meta": "Situ\u00e9e \u00e0 45 minutes des ponts de Qu\u00e9bec, la ville de Montmagny vous offre le meilleur des deux mondes : la beaut\u00e9 et le calme des grands espaces, et l", "site_name": "Ville de Montmagny"}
\ No newline at end of file
added data/enrich_cache/ville.valleyfield.qc.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ville.valleyfield.qc.ca", "logo_url": "https://www.ville.valleyfield.qc.ca/img/favicon.png", "cover_url": "https://valleyfield.imgix.net/content/contenu/valley-og.jpg?w=1200&h=630&fm=jpg&fit=crop", "description_meta": "Salaberry-de-Valleyfield est une ville qu\u00e9b\u00e9coise situ\u00e9e dans la MRC de Beauharnois-Salaberry dans la r\u00e9gion de la Mont\u00e9r\u00e9gie.", "site_name": "Ville de Salaberry-de-Valleyfield"}
\ No newline at end of file
added data/enrich_cache/villenewrichmond.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "villenewrichmond.com", "logo_url": "https://villenewrichmond.com/favicon.ico", "cover_url": "https://villenewrichmond.com/wp-content/uploads/2022/02/Pointe-Taylor-scaled.jpg", "description_meta": null, "site_name": "Ville de New Richmond"}
\ No newline at end of file
added data/enrich_cache/villescjc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "villescjc.com", "logo_url": "https://www.villescjc.com/favicon.ico", "cover_url": "https://www.villescjc.com/themes/sainte-catherine-de-la-jacques-cartier/assets/medias/images/share.png", "description_meta": "Bienvenue&#x20;sur&#x20;le&#x20;site&#x20;de&#x20;Sainte-Catherine-de-la-Jacques-Cartier&#x20;&#x3A;&#x20;votre&#x20;r&#x00E9;f&#x00E9;rence&#x20;pour&#x20;les&#x20;services,&#x20;les&#x20;loisirs&#x20;et&#x20;activit&#x00E9;s,&#x20;les&#x20;infos&#x20;pratiques&#x20;et&#x20;bien&#x20;plus&#x21;", "site_name": "Ville de Sainte-Catherine-de-la-Jacques-Cartier"}
\ No newline at end of file
added data/enrich_cache/vinaigreriemcduff.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vinaigreriemcduff.ca", "logo_url": "https://static.wixstatic.com/media/46efd8_0d505326ac46428fa9a1e46a299a7522%7Emv2_d_1299_1299_s_2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/46efd8_0d505326ac46428fa9a1e46a299a7522%7Emv2_d_1299_1299_s_2.jpg", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/vinaigreriemcduff.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vinaigreriemcduff.com", "logo_url": "https://vinaigreriemcduff.com/cdn/shop/files/lyme.webp?crop=center&height=32&v=1698590777&width=32", "cover_url": "http://vinaigreriemcduff.com/cdn/shop/files/Vinaigrerie-McDuff-Artisanale-Large.webp?height=628&pad_color=fff&v=1694627722&width=1200", "description_meta": "La Vinaigrerie Artisanale Mc Duff est la division agroalimentaire de Raspberry Scientific Inc. Elle fut cr\u00e9\u00e9e dans le but de soutenir le d\u00e9veloppement d\u2019un puissant outil de diagnostic m\u00e9dical. Ainsi, chaque dollar g\u00e9n\u00e9r\u00e9 par la vente de nos vinaigres de cassonade sera investi pour le bien de tous et chacun.", "site_name": "Vinaigrerie Artisanale McDuff"}
\ No newline at end of file
added data/enrich_cache/vinaigrettesvio.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vinaigrettesvio.com", "logo_url": "https://vinaigrettesvio.com/favicon/apple-touch-icon.png", "cover_url": "https://vinaigrettesvio.com/media/dfcdkysz/accueil-banner-1.webp?width=1200&amp;height=630&amp;v=1dca656029e4f80", "description_meta": "Vinaigrettes VIO est une marque canadienne de vinaigrettes artisanales pr&#xE9;par&#xE9;es avec des ingr&#xE9;dients de qualit&#xE9;, dont du miel local. Go&#xFB;t authentique et potentiel national.", "site_name": "Vinaigrettes VIO"}
\ No newline at end of file
added data/enrich_cache/vintageautovalue.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vintageautovalue.com", "logo_url": "https://www.vintageautovalue.com/apple-touch-icon.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/violonetchampignon.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "violonetchampignon.com", "logo_url": "https://violonetchampignon.com/cdn/shop/t/9/assets/touch-icon.png?v=53046206341435847131633641079", "cover_url": "https://violonetchampignon.com/cdn/shop/t/9/assets/share.png?v=115281291144902929811633641077", "description_meta": "La r\u00e9f\u00e9rence en culture de champignons comestibles, vente de myc\u00e9lium de qualit\u00e9 et formations sur les champignons.", "site_name": "Violon et Champignon"}
\ No newline at end of file
added data/enrich_cache/viralbeverages.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "viralbeverages.ca", "logo_url": "https://viralbeverages.ca/cdn/shop/files/FUSEE_ICONE.png?crop=center&height=32&v=1763400125&width=32", "cover_url": "http://viralbeverages.ca/cdn/shop/files/VIRAL_LOGO_1200x628_bf08d208-1e37-41df-bc67-686d69ee577e.png?v=1764301460", "description_meta": "Viral\u2122 Beverages est une entreprise canadienne sp\u00e9cialis\u00e9e dans le d\u00e9veloppement de marques de boissons innovantes. D\u00e9couvrez Galactix Energy et nos cr\u00e9ations exclusives.", "site_name": "Viral Beverages"}
\ No newline at end of file
added data/enrich_cache/vireenordique.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vireenordique.com", "logo_url": "https://vireenordique.com/wp-content/uploads/2021/09/cropped-favicon-180x180.png", "cover_url": "https://vireenordique.com/wp-content/uploads/2023/10/logo-viree-nordique-BLANC.png", "description_meta": "13 au 15 f\u00e9vrier 2026 S&rsquo;inscrire Plusieurs nouveaut\u00e9s au programme en 2026!\u00a0 L\u2019\u00e9dition 2026 de la Vir\u00e9e Nordique de Charlevoix marquera un tournant important dans l&rsquo;histoire de l&rsquo;\u00e9v\u00e9nement, avec plusieurs nouveaut\u00e9s, con\u00e7ues pour s\u2019adapter aux r\u00e9alit\u00e9s des changements climatiques qui ont complexifi\u00e9 la tenue d\u2019activit\u00e9s en bordure du fleuve ces derni\u00e8res ann\u00e9es. Le coup d\u2019envoi [", "site_name": "Vir&eacute;e Nordique de Charlevoix"}
\ No newline at end of file
added data/enrich_cache/virginhillcoffee.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "virginhillcoffee.com", "logo_url": "https://virginhillcoffee.com/cdn/shop/files/Virgin_Hill_logo_blue_pantone_7546_C.png?crop=center&height=194&v=1733769298&width=194", "cover_url": "http://virginhillcoffee.com/cdn/shop/files/21647_-_VH_bandeau_web_1400x580px_logo_bleu.jpg?v=1717613543", "description_meta": "Discover the incredible flavors of Virgin Hill Coffee. Elevate your coffee experience with our selection of premium coffees, roasted with the best beans.", "site_name": "Virgin Hill Coffee"}
\ No newline at end of file
added data/enrich_cache/virginmady.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "virginmady.com", "logo_url": "https://virginmady.com/cdn/shop/files/favicon.png?crop=center&height=32&v=1771957559&width=32", "cover_url": "http://virginmady.com/cdn/shop/files/virginmady-logotype-dark.svg?v=1782240798", "description_meta": "L\u2019entreprise familiale Virgin Mady offre des sirops, des beurres, des gel\u00e9es et plusieurs autres produits d\u2019\u00e9rable biologiques de qualit\u00e9 faits \u00e0 la main.", "site_name": "Virgin Mady"}
\ No newline at end of file
added data/enrich_cache/vitali-t.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vitali-t.ca", "logo_url": "https://vitali-t.ca/cdn/shop/files/android-chrome-512x512.png?crop=center&height=32&v=1763055755&width=32", "cover_url": "http://vitali-t.ca/cdn/shop/files/assortiment_de_collations_energetique_vitali-t.b_140c93cc-99b2-4160-9117-554db9f597af.jpg?v=1739918641", "description_meta": "D\u00e9couvrez nos collations naturelles, prot\u00e9in\u00e9es et pratiques pour les journ\u00e9es bien remplies. Parfaites pour les gens au mode de vie actif.", "site_name": "Vitali-T Snacks/Collations"}
\ No newline at end of file
added data/enrich_cache/vitalitefrelighsburg.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vitalitefrelighsburg.ca", "logo_url": "https://www.vitalitefrelighsburg.ca/favicon.ico", "cover_url": "http://static1.squarespace.com/static/6904d24e6e9b406bd7ac113c/t/695479be48c9364a1ca807ae/1767143870687/Vitalit%C3%A9+%282%29.png?format=1500w", "description_meta": null, "site_name": "VITALIT\u00c9 FRELIGHSBURG"}
\ No newline at end of file
added data/enrich_cache/vivapanettone.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vivapanettone.com", "logo_url": "https://www.vivapanettone.com/cdn/shop/files/logo_200_x_200_1_32x32.png?v=1780501213", "cover_url": "http://www.vivapanettone.com/cdn/shop/files/582_19712-23094_99_A3.jpg?v=1782406523", "description_meta": "Panettones artisanaux 100% naturels faits \u00e0 la main \u00e0 Montr\u00e9al", "site_name": "Viva panettone"}
\ No newline at end of file
added data/enrich_cache/vivelesepices.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vivelesepices.com", "logo_url": "https://vivelesepices.com/boutique/image/catalog/vive les \u00e9pices.jpg", "cover_url": null, "description_meta": null, "site_name": "Vive les \u00c9pices"}
\ No newline at end of file
added data/enrich_cache/vivremcs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vivremcs.com", "logo_url": "https://vivremcs.com/cdn/shop/files/FavIcon.png?v=1753285564&width=180", "cover_url": "http://vivremcs.com/cdn/shop/files/MCS_1920x1460_70f6fabf-5c70-4850-a668-5a187b1d0978.png?v=1760024667&width=2048", "description_meta": "MCS marine collagen supplements: created by Marie-Claude Savard for your beauty, energy and well-being. Discover MCS PURE, MCS \u00c9NERGIE, Beauty Trio.", "site_name": "Vivre MCS"}
\ No newline at end of file
added data/enrich_cache/vladaventure.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vladaventure.com", "logo_url": "https://static.wixstatic.com/media/991b4c_91d12de5bce946ac835c4ee774bb6579%7Emv2.png/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/991b4c_91d12de5bce946ac835c4ee774bb6579%7Emv2.png", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/volaillesdangele.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "volaillesdangele.com", "logo_url": "https://www.volaillesdangele.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": "Les Volailles d&#039;Ang\u00e8le"}
\ No newline at end of file
added data/enrich_cache/volaillesetgibiersfernando.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "volaillesetgibiersfernando.com", "logo_url": "https://www.volaillesetgibiersfernando.com/favicon-512x512.png", "cover_url": null, "description_meta": "Situ\u00e9e \u00e0 Montr\u00e9al, la boucherie Les Volailles Et Gibiers Fernando propose un grand choix de produits comme de la charcuterie et des plats cuisin\u00e9s.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/volprive.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "volprive.ca", "logo_url": "https://volprive.ca/cdn/shop/files/Asset_1_2x_5efaf8d2-8180-4cfc-afbb-d57aba173ac1.png?crop=center&height=32&v=1614313665&width=32", "cover_url": "http://volprive.ca/cdn/shop/files/DES_Multi_Horiz_W_36d6cd20-8948-4f5a-9255-706fb6c96289.jpg?crop=center&height=1200&v=1711292640&width=1200", "description_meta": "Accessoires de voyage et de d\u00e9tente fabriqu\u00e9s au Canada \u00e0 partir de laine m\u00e9rinos pour l&#39;aventurier exigeant qui ne d\u00e9sire pas faire de compromis sur son confort peu importe l&#39;endroit ou il se trouve. Design moderne, pratique, lavable, ajustable, durable. Le confort de voyage r\u00e9invent\u00e9, bienvenue \u00e0 bord de Volpriv\u00e9!", "site_name": "Volpriv\u00e9"}
\ No newline at end of file
added data/enrich_cache/volton.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "volton.com", "logo_url": "https://www.volton.com/gx/apple-touch-icon.png", "cover_url": "https://www.volton.com/gx/partage.jpg?v=2", "description_meta": "Volton est une entreprise de fabrication et de distribution d&#39;&#xe9;l&#xe9;ments chauffants de haute qualit&#xe9;. Explorez nos produits et d&#xe9;couvrez ce qui nous distingue.", "site_name": "Volton"}
\ No newline at end of file
added data/enrich_cache/vortex-intl.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vortex-intl.com", "logo_url": "https://www.vortex-intl.com/wp-content/themes/vortex/dist/images/favicons/android-chrome-512x512_6ab52ddc.png", "cover_url": "https://www.vortex-intl.com/wp-content/uploads/2023/12/inserted/schema-organization-logo400x400.jpg", "description_meta": "Vortex designs Splashpad\u00ae solutions, water play and aquatic attractions for municipal parks and commercial destinations worldwide.", "site_name": "VORTEX"}
\ No newline at end of file
added data/enrich_cache/votregreenbeaver.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "votregreenbeaver.com", "logo_url": "https://greenbeaver.com/cdn/shop/files/favicon_86a0dae0-be9f-4a4a-a045-37c77925118d.png?crop=center&height=32&v=1783696569&width=32", "cover_url": "http://greenbeaver.com/cdn/shop/files/green-beaver-logo-social.jpg?v=1697465660", "description_meta": "Shop Green Beaver&#39;s all-natural, aluminum-free antiperspirant, toothpaste, sunscreen and more. Proudly Canadian!", "site_name": "Green Beaver"}
\ No newline at end of file
added data/enrich_cache/voxandoz.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "voxandoz.com", "logo_url": "https://voxandoz.com/cdn/shop/files/LOGO-voxandoz-carre-512x512px_32x32.jpg?v=1661359922", "cover_url": "http://voxandoz.com/cdn/shop/files/LOGO_1200x628_884e6e52-2603-428c-9b00-bffb661caac5.jpg?v=1603978927", "description_meta": "Ethical 3D-printed jewelry made in Quebec, Canada. Ultra-light, colorful, hypoallergenic pieces \u2013 handcrafted and shipped across Canada.", "site_name": "Vox &amp; Oz"}
\ No newline at end of file
added data/enrich_cache/voyou.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "voyou.com", "logo_url": "https://www.voyou.com/app/smush-webp/2024/06/favicon-voyou-300x300.png.webp", "cover_url": "https://www.voyou.com/app/uploads/2024/10/voyou-creatif-1985-og-image.png", "description_meta": "L&#039;agence de publicit\u00e9 Voyou est sp\u00e9cialis\u00e9e en strat\u00e9gie, cr\u00e9ation, design, Web, cr\u00e9ativit\u00e9 m\u00e9dia et marketing Web. Agence de publicit\u00e9!", "site_name": "Voyou"}
\ No newline at end of file
added data/enrich_cache/vpj.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vpj.ca", "logo_url": "https://www.vpj.ca/wp-content/uploads/2022/07/cropped-favicon-vpj-180x180.png", "cover_url": "https://www.vpj.ca/wp-content/uploads/2025/05/Gamme-signature-1.png", "description_meta": "Du verger \u00e0 votre table D\u00e9couvrez nos marques de produits Les vergers Paul Jodoin Les sept vergers de l\u2019entreprise totalisent 600 acres en superficie et sont r\u00e9partis dans quatre municipalit\u00e9s sur les flancs du Mont Rougemont et du Mont-St-Hilaire. \u00a0 En savoir plus sur notre histoire Nos valeurs L\u2019Engagement \u00catre responsable vis-\u00e0-vis notre client\u00e8le. L\u2019innovation [&hellip;]", "site_name": "Vergers Jodoin"}
\ No newline at end of file
added data/enrich_cache/vraiplaisir.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vraiplaisir.com", "logo_url": "https://www.vraiplaisir.com/web/image/website/1/favicon?unique=d9bc9bd", "cover_url": "https://www.vraiplaisir.com/unsplash/w9UGNdQkIGM/817/fondant.jpg?unique=7dd04d19", "description_meta": "Vrai Plaisir propose un savoir-faire innovant et unique, permettant de rendre accessibles \u00e0 tous des gourmandises de haute qualit\u00e9, r\u00e9duites en sucre, saines et \u00e9quilibr\u00e9es, faites avec des ingr\u00e9dients \u00e0 indice glyc\u00e9mique bas.", "site_name": "vrai plaisir"}
\ No newline at end of file
added data/enrich_cache/vsj.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "vsj.ca", "logo_url": "https://www.vsj.ca/wp-content/themes/vsj.ca/assets/favicon/apple-touch-icon.png", "cover_url": "https://www.vsj.ca/wp-content/uploads/2020/09/image_partage2.jpg", "description_meta": "Bienvenue sur le site web officiel de la Ville de Saint-J\u00e9r\u00f4me. D\u00e9couvrez toutes les infos sur la magnifique capitale des Laurentides au Qu\u00e9bec", "site_name": "Ville de Saint-J\u00e9r\u00f4me"}
\ No newline at end of file
added data/enrich_cache/wachiya.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wachiya.com", "logo_url": "https://wachiya.com/cdn/shop/files/favicon-cnaca_32x32.png?v=1675101458", "cover_url": "http://wachiya.com/cdn/shop/files/Website_Share_Banner_Social_1200x1200.png?v=1679104280", "description_meta": "Authentic Cree products from Eeyou Istchee.", "site_name": "Wachiya"}
\ No newline at end of file
added data/enrich_cache/wallabyboomerangs.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wallabyboomerangs.com", "logo_url": "https://wallabyboomerangs.com/favicon.ico", "cover_url": "http://wallabyboomerangs.com/cdn/shop/files/LogoOfficielWallabyBoomerangs2020Clair_7ee3b296-25ae-46db-8171-c81e18f1e0ac.png?v=1613066904", "description_meta": "For over 30 years, the French specialist in handmade wooden boomerangs for the whole family. They are available here!", "site_name": "Wallaby boomerangs"}
\ No newline at end of file
added data/enrich_cache/waltercafe.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "waltercafe.com", "logo_url": "https://www.waltercafe.com/web/image/website/1/favicon?unique=cc7db37", "cover_url": "https://www.waltercafe.com/web/image/website/1/logo?unique=cc7db37", "description_meta": "This is the homepage of the website", "site_name": "WalterCafe"}
\ No newline at end of file
added data/enrich_cache/wambraceramics.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wambraceramics.com", "logo_url": "https://wambraceramics.com/cdn/shop/files/wambra-logo-fav-icon.jpg?crop=center&height=32&v=1700484922&width=32", "cover_url": "http://wambraceramics.com/cdn/shop/files/1.png?v=1634930901", "description_meta": "Handmade ceramic items for you", "site_name": "WAMBRA CERAMICS"}
\ No newline at end of file
added data/enrich_cache/wampole.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wampole.ca", "logo_url": "https://www.wampole.ca/wp-content/uploads/2022/03/fav.png", "cover_url": "https://www.wampole.ca/wp-content/uploads/2022/10/fb-share.jpg", "description_meta": "Canadian leader in vitamins and minerals supplement nutritional and herbal products, Wampole is associated with quality and value.", "site_name": "Wampole"}
\ No newline at end of file
added data/enrich_cache/web.isf.ca.payfacto.cloud.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "web.isf.ca.payfacto.cloud", "logo_url": "https://web.isf.ca.payfacto.cloud/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/wfedistillery.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wfedistillery.com", "logo_url": "https://wfedistillery.com/wp-content/uploads/2026/04/85d8def0-b784-489b-8b3a-d870eb71af94-300x300.png", "cover_url": null, "description_meta": "Avez-vous l\u2019\u00e2ge l\u00e9gal pour consommer de l\u2019alcool dans votre r\u00e9gion ? oui non", "site_name": "Wfe Distillery"}
\ No newline at end of file
added data/enrich_cache/wickstation.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wickstation.com", "logo_url": "https://www.wickstation.com/assets/img/apple-touch-icon.png?v=FFv0SW34XKODJNxH", "cover_url": "https://www.wickstation.com/assets/img/og-image.jpg?v=FFv0SW34XKODJNxH", "description_meta": "La Wick Station, c\u2019est tout un monde avec des bi\u00e8res de microbrasserie, une salle \u00e0 manger et une terrasse ouverte \u00e0 l\u2019ann\u00e9e pour des soir\u00e9es qui rockent!", "site_name": null}
\ No newline at end of file
added data/enrich_cache/widget.libroreserve.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "widget.libroreserve.com", "logo_url": "https://widget.libroreserve.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/wild-blueberries.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wild-blueberries.com", "logo_url": "https://www.wild-blueberries.com/app/uploads/2024/02/favicon.png", "cover_url": null, "description_meta": "Groupe Bleuets sauvages est le plus important producteur et transformateur de bleuets sauvages 100 % naturels (bor\u00e9aux) et biologiques au monde.", "site_name": "Bleuets sauvages du Qu\u00e9bec"}
\ No newline at end of file
added data/enrich_cache/williamjwalter.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "williamjwalter.com", "logo_url": "https://williamjwalter.com/app/uploads/2024/07/cropped-favicon-williamjwalter-1-180x180.png", "cover_url": "https://williamjwalter.com/app/uploads/2024/11/william-j-walter-og-image.jpg", "description_meta": "William J. Walter, entreprise familiale qu\u00e9b\u00e9coise, propose un concept unique avec plus de 60 vari\u00e9t\u00e9s de saucisses fra\u00eeches et fum\u00e9es de haute qualit\u00e9. D\u00e9couvrez nos saveurs d\u00e8s maintenant !", "site_name": "William J. Walter"}
\ No newline at end of file
added data/enrich_cache/wonderblush.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wonderblush.com", "logo_url": "https://wonderblush.com/cdn/shop/files/Wonderblush_32x32.png?v=1689366391", "cover_url": "http://wonderblush.com/cdn/shop/files/Secondary_logo.png?v=1689365711", "description_meta": "Wonderblush is a clean, vegan, cruelty-free makeup brand made in Montreal, creating effortless everyday essentials in flattering, wearable shades.", "site_name": "Wonderblush"}
\ No newline at end of file
added data/enrich_cache/wonderbrands.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wonderbrands.com", "logo_url": "https://wonderbrands.com/wp-content/uploads/2023/10/wb-favicon-1.jpg", "cover_url": null, "description_meta": "Wonderbrands is home to brands you know and love. Wonder\u00ae, Country Harvest\u00ae, D\u2019Italiano\u00ae, and more.", "site_name": "Wonderbrands"}
\ No newline at end of file
added data/enrich_cache/wufshop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "wufshop.com", "logo_url": "https://wufshop.com/favicon.ico", "cover_url": "http://wufshop.com/cdn/shop/files/thumbnail_wuf_OLIVIER-03_1024x.jpg?v=1622480473", "description_meta": null, "site_name": "TUQUES WUF"}
\ No newline at end of file
added data/enrich_cache/ww1.erablierehilltop.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ww1.erablierehilltop.com", "logo_url": "http://ww1.erablierehilltop.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ww1.lesailespiquantesbuffalo.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ww1.lesailespiquantesbuffalo.com", "logo_url": "http://ww1.lesailespiquantesbuffalo.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/ww19.croc.bio.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "ww19.croc.bio", "logo_url": "http://ww19.croc.bio/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/xn--fracheursdebellechasse-ncc.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "xn--fracheursdebellechasse-ncc.com", "logo_url": "https://www.xn--fracheursdebellechasse-ncc.com/favicon.ico", "cover_url": "http://static1.squarespace.com/static/698084596898810feb88c523/t/698e8abf047a1b4bebabeff7/1770949311684/Horizontal-Coul.png?format=1500w", "description_meta": null, "site_name": "Fra\u00eecheurs de Bellechasse"}
\ No newline at end of file
added data/enrich_cache/xn--lacabanedemonpre-6pb.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "xn--lacabanedemonpre-6pb.com", "logo_url": "https://img1.wsimg.com/isteam/ip/static/pwa-app/logo-default.png/:/rs=w:180,h:180,m", "cover_url": "https://img1.wsimg.com/isteam/ip/6fbec153-1e81-4ebb-8d5f-d64a7ba6a08b/B380B659-EB66-4C18-8F24-D3CEA00E9DE4.jpeg", "description_meta": null, "site_name": "La cabane de mon p\u00e8re"}
\ No newline at end of file
added data/enrich_cache/xplorremorques.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "xplorremorques.ca", "logo_url": "https://xplorremorques.ca/favicon.ico", "cover_url": "https://xplorremorques.ca/wp-content/uploads/2024/09/timthumb-1.jpeg", "description_meta": "Anciennement Toit Design, Xplor fabrique des remorques ferm\u00e9es robustes et fiables pour transporter motoneiges, VTT, motos, Spyder et autres v\u00e9hicules.", "site_name": "Xplor"}
\ No newline at end of file
added data/enrich_cache/yataceramiques.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "yataceramiques.com", "logo_url": "https://s2.wp.com/i/webclip.png?m=1713868326i", "cover_url": "https://i0.wp.com/yataceramiques.com/wp-content/uploads/2025/07/pxl_20250621_182711804.jpg?fit=1200%2C904&#038;ssl=1", "description_meta": "L&#039;h\u00e9ritage Wendat fa\u00e7onn\u00e9 dans l&#039;argile Wendat heritage etched in clay Collections Moza\u00efk Nouveau monde Aqua M\u00e9moire Rouge Wendat Ya&#039;ta&#039; Installations Mon approche exp\u00e9rimentale nourrit mon expression artistique. En savoir plus https://www.instagram.com/reel/CuIuTy9MZnz Contact C\u2019est dans les Appalaches du sud du Qu\u00e9bec, dans les Cantons-de-l\u2019Est, que se trouve mon univers de c", "site_name": null}
\ No newline at end of file
added data/enrich_cache/yellowshoes.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "yellowshoes.com", "logo_url": "https://www.yellowshoes.com/cdn/shop/files/favicon-32x32_9ccc5ea7-9a28-4065-aecb-02c312eccc76.png?crop=center&height=180&v=1638127452&width=180", "cover_url": "http://www.yellowshoes.com/cdn/shop/files/92245776_3821072174600093_5458488599504748544_n_c7bc7535-15cd-4622-9803-b12a4206fbdc.jpg?crop=center&height=1200&v=1724260718&width=1200", "description_meta": "Yellow Shoes has a selection of footwear that everyone in the family will enjoy. Discover our latest shoes, boots and accessories for the entire family, women, men and kids on our official site. Fast delivery and easy returns! Shop now and Save!", "site_name": "Yellow Shoes"}
\ No newline at end of file
added data/enrich_cache/yesjerky.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "yesjerky.ca", "logo_url": "https://yesjerky.ca/cdn/shop/files/Capture_d_ecran_2025-10-12_a_14.25.53.png?crop=center&height=32&v=1760293572&width=32", "cover_url": "http://yesjerky.ca/cdn/shop/files/Capture_d_ecran_2025-10-12_a_11.51.27.png?height=628&pad_color=ffffff&v=1760290458&width=1200", "description_meta": "Ye\u2019s Jerky offers handcrafted, preservative-free beef jerky made for active lifestyles. Packed with protein, full of flavor, and made in Canada. Taste adventure in every bite!", "site_name": "Ye&#39;s Jerky"}
\ No newline at end of file
added data/enrich_cache/yolonuts.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "yolonuts.com", "logo_url": "https://www.yolonuts.com/cdn/shop/files/fav.png?crop=center&height=32&v=1709604430&width=32", "cover_url": "http://www.yolonuts.com/cdn/shop/files/Logo_Yolo_Large_dff22b40-568f-4fb4-9536-c4a26e89a26c.png?v=1758110122", "description_meta": "YOLO Nuts c&#39;est une petite entreprise de tartinades de noix et arachides et de cr\u00e8me de pistaches. Inspir\u00e9e par l\u2019amour du beurre d\u2019arachides et du sirop d\u2019\u00e9rable, cette recette a rapidement conquis les papilles de nos premiers clients. Chaque pot de tartinade est confectionn\u00e9 \u00e0 la main, avec soin et amour.", "site_name": "www.yolonuts.com"}
\ No newline at end of file
added data/enrich_cache/yourbarfactory.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "yourbarfactory.com", "logo_url": "https://yourbarfactory.com/wp-content/uploads/2024/12/cropped-cropped-favicon-180x180.png", "cover_url": "https://yourbarfactory.com/wp-content/uploads/2024/11/main.jpg", "description_meta": "Yourbarfactory est votre manufacturier de barres sans allerg\u00e8nes pour grandes entreprises et marque priv\u00e9es. Usine certifi\u00e9e BRC et B-CORP.", "site_name": "Yourbarfactory"}
\ No newline at end of file
added data/enrich_cache/yourteexperiencecharlevoix.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "yourteexperiencecharlevoix.ca", "logo_url": "https://cdn.prod.website-files.com/63c599f1b0c1adceae5bb98c/63ea8fbbc6a3192d1857b3d8_webclip.png", "cover_url": "https://cdn.prod.website-files.com/63c599f1b0c1adceae5bb98c/63ea8caac6a31980435785f1_OG_image.png", "description_meta": "Pour un h\u00e9bergement insolite en famille, entre amis ou en couple, choisissez une exp\u00e9rience en yourte 4 saisons de luxe. Situ\u00e9 dans la r\u00e9gion de Charlevoix-Est, pr\u00e8s de La Malbaie.", "site_name": null}
\ No newline at end of file
added data/enrich_cache/zamalek.ca.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zamalek.ca", "logo_url": "https://images.squarespace-cdn.com/content/v1/5edfa1ca10136f0e2e44e5fd/e0fb8d34-8113-4dec-a99f-c162275255d6/favicon.ico?format=100w", "cover_url": "http://static1.squarespace.com/static/5edfa1ca10136f0e2e44e5fd/t/6626b20532548e49c6266eaa/1713811977729/Stickers.jpg?format=1500w", "description_meta": "Zamalek\u2019s organic hibiscus beverages bring the vibrant flavours of Egyptian karkad\u00e9 to life. Crafted with organic ingredients, our refreshing, non-alcoholic sodas celebrate tradition, community, and Montreal\u2019s multicultural spirit.", "site_name": "Zamalek"}
\ No newline at end of file
added data/enrich_cache/zazibel.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zazibel.com", "logo_url": "https://www.zazibel.com/wp-content/uploads/2018/11/cropped-ETSY500X500-180x180.jpg", "cover_url": "https://www.zazibel.com/wp-content/uploads/2018/11/cropped-cropped-cropped-ETSY500X500-3.jpg", "description_meta": "D\u00e9couvrez mes peluches artisanales, faites main au Qu\u00e9bec. Doudous personnalis\u00e9s et doux pour enfants. Id\u00e9e cadeau de naissance unique et Qu\u00e9b\u00e9cois", "site_name": "Zazibel.com - Une douceur pour le coeur, un petit geste pour la plan\u00e8te"}
\ No newline at end of file
added data/enrich_cache/zecbuteux.reseauzec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zecbuteux.reseauzec.com", "logo_url": "https://zecbuteux.reseauzec.com/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "Explorez la Zec Buteux-Bas-Saguenay : p\u00eache, camping, randonn\u00e9e et h\u00e9bergement unique pour toute la famille, au c\u0153ur du Saguenay et Charlevoix.", "site_name": "R\u00e9seau Zec"}
\ No newline at end of file
added data/enrich_cache/zecdesmartres.reseauzec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zecdesmartres.reseauzec.com", "logo_url": "https://zecdesmartres.reseauzec.com/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "L\u2019escalade, le canot-camping, la randonn\u00e9e, le v\u00e9lo de montagne, la chasse et la p\u00eache ne sont que quelques-unes des activit\u00e9s que vous pourrez pratiquer sur le territoire de la zec des Martres au Qu\u00e9bec! Cette zec est situ\u00e9e dans la r\u00e9gion de Charlevoix, reconnue pour ses paysages \u00e0 couper le souffle.", "site_name": "R\u00e9seau Zec"}
\ No newline at end of file
added data/enrich_cache/zeclacausable.reseauzec.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zeclacausable.reseauzec.com", "logo_url": "https://zeclacausable.reseauzec.com/favicons/apple-touch-icon.png", "cover_url": null, "description_meta": "Les points de vue spectaculaires ne manquent pas sur le territoire de la Zec Lac-au-Sable, o\u00f9 vous pourrez aussi parcourir l\u2019un des sentiers de randonn\u00e9e ou encore taquiner l\u2019omble de fontaine. La cueillette de champignons et de petits fruits est \u00e9galement tr\u00e8s populaire dans cette zec situ\u00e9e dans la r\u00e9gion de Charlevoix.", "site_name": "R\u00e9seau Zec"}
\ No newline at end of file
added data/enrich_cache/zenevasionspa.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zenevasionspa.com", "logo_url": "https://www.zenevasionspa.com/favicon.ico", "cover_url": null, "description_meta": null, "site_name": null}
\ No newline at end of file
added data/enrich_cache/zenitnutrition.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zenitnutrition.com", "logo_url": "https://zenitnutrition.com/cdn/shop/files/favicon-zenit_194x194_crop_center.png?v=1614292994", "cover_url": null, "description_meta": "D\u00e9couvrez Zenit: Une gamme de collations saines con\u00e7ue par une nutritionniste sportive avec des ingr\u00e9dients naturels, locaux et/ou bio. Commandez et recevez vos collations au go\u00fbt maison \u00e0 domicile pour \u00eatre au top de votre \u00e9nergie.", "site_name": "Zenit Nutrition"}
\ No newline at end of file
added data/enrich_cache/zozoetarty.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zozoetarty.com", "logo_url": "https://www.zozoetarty.com/cdn/shop/files/Zozo_et_Arty_-_Dessin_pastille_50_x_50_c2595280-31e5-4b3f-b0eb-a66dafcb1c82.png?crop=center&height=32&v=1706560558&width=32", "cover_url": "http://www.zozoetarty.com/cdn/shop/files/Logos_rectangulaires_1920_x_800_px_9.png?v=1778372439", "description_meta": "Zozo et Arty est une boutique concept offrant des produits d&#39;entretien et de soins corporels \u00e9cologiques en vrac, des \u0153uvres d&#39;artistes locaux, ainsi que des v\u00eatements et accessoires, neufs et de seconde main, pour les 0 \u00e0 6 ans.", "site_name": "Zozo et Arty"}
\ No newline at end of file
added data/enrich_cache/zylverybijouxdesign.com.json +1 −0
@@ -0,0 +1 @@
1 +{"domain": "zylverybijouxdesign.com", "logo_url": "https://zylverybijouxdesign.com/boutique/image/catalog/favicon.png", "cover_url": null, "description_meta": "Cr\u00e9ation personnalis\u00e9e et unique - Bijoux en argent sterling - unique &amp; collection limit\u00e9e - Designer Joalli\u00e8re: Sylvie Payette", "site_name": "Zylvery Bijoux Design"}
\ No newline at end of file
modified data/enriched/candidates.jsonl +136 −26
@@ -81,7 +81,7 @@
81 81 {"domain": "aloreedeschamps.com", "urls": ["https://www.aloreedeschamps.com/", "https://www.aloreedeschamps.com"], "names": ["ÉCONOMUSÉE® de la charcutière d’agneau", "À l’Orée des champs"], "sources": ["artisansaloeuvre", "zoneboreale"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-la-charcutiere-dagneau/", "https://zoneboreale.com/entreprises/a-loree-des-champs/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/Or%C3%A9e-180619915303035/", "https://www.instagram.com/loreedeschamps/", "https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.youtube.com/watch?v=8DDUmUFHq_g", "https://www.facebook.com/pages/%C3%80-lOr%C3%A9e-des-Champs/180619915303035"], "postal_prefix": "G0W", "phone": "418 669 3038", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
82 82 {"domain": "alpagabersi.ca", "urls": ["http://www.alpagabersi.ca", "https://alpagabersi.ca/boutique/"], "names": ["Alpaga Bersi"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/alpaga-bersi/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Alpaga-Bersi-151037988336378/?fref=ts", "https://www.instagram.com/alpagabersi/"], "postal_prefix": "G7H", "phone": "418 690-0896", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
83 83 {"domain": "alpagadore.com", "urls": ["https://alpagadore.com/boutique/", "https://alpagadore.com"], "names": ["AlpagAdore"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/alpagadore"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J0S", "phone": "514 847-9799", "regions_mentioned": ["Montérégie"]}
84 −{"domain": "alpagaselect.ca", "urls": ["https://www.alpagaselect.ca/a-propos/la-ferme/"], "names": ["Alpagaselect - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/alpagaselect-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G6J", "phone": "514 847-9799", "regions_mentioned": []}
84 +{"domain": "alpagaselect.ca", "urls": ["https://www.alpagaselect.ca/a-propos/la-ferme/", "https://www.alpagaselect.ca/a-propos/galerie-artisane-linda-gagne"], "names": ["Alpagaselect - CMAQ", "Alpaga Select"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/alpagaselect-cmaq", "Alpaga Select Linda Gagné feutrier québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G6J", "phone": "514 847-9799", "regions_mentioned": ["Lévis, QC"]}
85 85 {"domain": "alpagasfibrefine.com", "urls": ["https://www.alpagasfibrefine.com/boutique/"], "names": ["Alpagas Fibrefine"], "sources": ["search_sweep_nonfood"], "source_pages": ["Alpagas Fibrefine Sainte-Eulalie textile alpaga boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Centre-du-Québec (Sainte-Eulalie)"]}
86 86 {"domain": "alphasigna.com", "urls": ["https://alphasigna.com"], "names": ["Alpha Signa"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois signalisation boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Boucherville, QC"]}
87 87 {"domain": "alphatango.ca", "urls": ["http://alphatango.ca"], "names": ["Spiritueux Alpha Tango"], "sources": ["distilleriesduquebec"], "source_pages": ["https://distilleriesduquebec.com/fr/le-repertoire-des-distilleries/spiritueux-alpha-tango"], "socials": ["https://www.facebook.com/alphatango.ca/", "http://instagram.com/alphatango.ca/", "https://www.facebook.com/distilleriedequebec/", "https://www.instagram.com/distilleriedequebec/", "https://www.linkedin.com/company/union-québécoise-des-microdistilleries/?originalSubdomain=ca", "https://www.youtube.com/@distilleriesqc"], "postal_prefix": "J9P", "phone": "819 824-2212", "regions_mentioned": []}
@@ -100,6 +100,7 @@
100 100 {"domain": "amospewter.com", "urls": ["https://www.amospewter.com/"], "names": ["ÉCONOMUSÉE® du potier d'étain"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-du-potier-detain/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/amospewter", "https://www.instagram.com/amospewter/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
101 101 {"domain": "amourliquide.com", "urls": ["https://amourliquide.com/fr/"], "names": ["Amour liquide"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/amour-liquide/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/amour.liquide", "https://www.instagram.com/amour.liquide/#"], "postal_prefix": "G0V", "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
102 102 {"domain": "amuletteboutique.com", "urls": ["https://www.amuletteboutique.com", "https://www.amuletteboutique.com/"], "names": ["Joaillerie L'Amulette"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/joaillerie-lamulette"], "socials": ["https://www.facebook.com/joaillerie.amulette/", "https://www.instagram.com/joaillerie.amulette/?hl=fr", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G5A", "phone": "418 665-7995", "regions_mentioned": ["Saguenay"]}
103 +{"domain": "aniello-atelier.com", "urls": ["https://www.aniello-atelier.com"], "names": ["Aniello Atelier"], "sources": ["search_sweep_cmaq"], "source_pages": ["Aniello Atelier Emilie Dell'Aniello joaillier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Louiseville, QC"]}
103 104 {"domain": "annaart7.jimdo.com", "urls": ["http://annaart7.jimdo.com"], "names": ["TOILE EN ACRYLIQUE -Le Party - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/toile-en-acrylique-le-party/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montreal", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
104 105 {"domain": "annemariechagnon.com", "urls": ["https://annemariechagnon.com/en", "https://annemariechagnon.com"], "names": ["Anne-Marie Chagnon"], "sources": ["search_sweep_nonfood", "search_sweep_urban"], "source_pages": ["bijoux faits main Québec boutique en ligne", "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)", "Montréal"]}
105 106 {"domain": "annerenedecotret.com", "urls": ["https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-jabdz1xb", "https://www.annerenedecotret.com", "https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-jm9em5fd", "https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-kpwmp0kq", "https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-jcl24x11", "https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-kljytssm", "https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-l1pbff77", "https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-kgqyxp7t", "https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-jfwupl9g", "https://www.annerenedecotret.com/galerie-1-?lightbox=dataItem-khxtdqup"], "names": ["Airs bucoliques - Acheter québécois", "Azur - Acheter québécois", "Dans le sous-bois - Acheter québécois", "Eaux Sôleil couchant - Acheter québécois", "Flores rojas - Acheter québécois", "L'envolée du soir - Acheter québécois", "Passiflora - Acheter québécois", "Songe d'été - Acheter québécois", "With all my love - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/airs-bucoliques/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/azur/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/dans-le-sous-bois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/eaux-soleil-couchant/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/flores-rojas/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/lenvolee-du-soir/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/passiflora/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/songe-dete/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/with-all-my-love/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
@@ -126,6 +127,7 @@
126 127 {"domain": "arico.ca", "urls": ["https://arico.ca/?aftag=269b752477f516e226fbd75fe8c8682a&utm_medium=afocus", "https://arico.ca/", "https://arico.ca"], "names": ["ARICO", "Arico", "Arico.ca"], "sources": ["icq_resolved", "lesproduitsduquebec_ent", "search_sweep_vendors"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/arico/", "https://lesproduitsduquebec.com/entreprises-adherentes/arico", "\"Arico.ca\" coussins bean bag Québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G1N", "phone": "514 847-9799", "regions_mentioned": ["Québec City, QC"]}
127 128 {"domain": "arida.ca", "urls": ["https://arida.ca/"], "names": ["Les aliments Arida inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-aliments-arida-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J5N", "phone": null, "regions_mentioned": ["Laurentides"]}
128 129 {"domain": "aristocuisine.com", "urls": ["http://www.aristocuisine.com"], "names": ["Aristo Sandwichs et Salades"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/aristo-sandwichs-et-salades"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H4N", "phone": null, "regions_mentioned": ["Montréal"]}
130 +{"domain": "arquebuserie.ca", "urls": ["https://arquebuserie.ca"], "names": ["Arquebuserie Abitibi"], "sources": ["search_sweep_cmaq"], "source_pages": ["Arquebuserie Abitibi Karl Gibbs armurier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Abitibi-Témiscamingue, QC"]}
129 131 {"domain": "arsenaldistillerie.com", "urls": ["https://arsenaldistillerie.com/", "https://arsenaldistillerie.com/distillerie/visites/"], "names": ["ÉCONOMUSÉE® de la distillation", "Distillerie Arsenal", "Distillerie Arsenal & Co"], "sources": ["artisansaloeuvre", "distilleriesduquebec", "erabledici"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-la-distillation/", "https://distilleriesduquebec.com/fr/le-repertoire-des-distilleries/distillerie-arsenal", "https://www.erabledici.ca/fr/erabliere/distillerie-arsenal-co/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/arsenal.distillerie", "https://www.instagram.com/arsenal.distillerie/", "https://www.instagram.com/@arsenal.distillerie", "http://tiktok.com/@distillerie.arsenal", "https://www.facebook.com/distilleriedequebec/", "https://www.instagram.com/distilleriedequebec/", "https://www.linkedin.com/company/union-québécoise-des-microdistilleries/?originalSubdomain=ca", "https://www.youtube.com/@distilleriesqc", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/distillerie-arsenal-co/", "https://twitter.com/intent/tweet?text=Distillerie+Arsenal+%26+Co https://www.erabledici.ca/fr/erabliere/distillerie-arsenal-co/"], "postal_prefix": "G1N", "phone": "418 842-9076", "regions_mentioned": ["Lac-Saint-Jean", "Capitale-Nationale"]}
130 132 {"domain": "arsenalweb.ca", "urls": ["https://arsenalweb.ca"], "names": ["Boucherie Charcuterie Perron", "Boucherie Daniel et Rémy", "Boucherie Le Bouvillon JAK", "Boulangerie du Royaume", "Charcuterie Fortin", "Chocolat Lulu", "Chocolaterie au Coeur fondant", "De Fleurs en pots", "Ferme Almas Simard et Murielle Beaulieu", "Ferme Trompe-Souris", "Boosthé", "Serres Belle de jour", "Jardins Terra Terre", "Jardins Gobeil", "Laiterie de La Baie", "Ferme Patrimoniale", "Verger Synergie", "Le jardin des Canards bleus", "Les gâteaux MB", "Verger Marie-Soleil", "Vignoble Couchepagane", "Les Petits Fruits de Lizon (Ferme 3J)", "La Recette", "Boulangerie La Maison du Pain (Chicoutimi)", "Verger CamNord", "Les Entreprises R.N. Perron Inc.", "Ferme Voltige", "La Patate Lac-Saint-Jean", "Le Chevrier du Nord", "Chez Roger", "Fleurs de la Friche", "La shop à farine", "Coop Lac Kéno", "Domaine Boréal", "Pépinière du cerneau", "Serre des jardins, Fleuriste Bagotville et Arc-en-ciel", "La Pâterie", "Les Petits Jardins de Normandin (S.E.N.C.)", "Ribozome", "Boucherie Jacko", "Boucherie Raymond et André", "Boulangerie Chambord", "Ferme du ruisseau clair", "Les Gâteaux Jul’imagine", "Mellonia", "Fromagerie St-Laurent", "La Voie Maltée", "Camerises Bistro", "Fromagerie au Pays-des-Bleuets (Ferme 3J)", "Brasserie Walkyrie", "La ferme de l’être boréal", "Verger de la Mistassini", "Serres Toundra", "Fermette Accapella", "Ferme Ruisseau des Chasseurs", "Ferme Harvey", "Morille Québec", "SIMIA Chocolat", "Cuit-Ziné-Moi", "Caramello 7", "Domaine L’Orée des Bois", "Ferme Monarque", "Café Marc Robitaille", "Les Cafés d’Aurélie", "Kafea", "Bougre d’Or", "Les Herbes du Lac", "Labrador Production", "Verger Mésy", "Les Jardins Bio-Forestiers", "Sauces marinades DG", "Les Fleurs Maltais", "Le maraîcher des basses terres du Saguenay", "Les Jardins Baie lactée", "Ferme OLAC", "Merci La Terre", "Ferme Multi-Fruits", "Microlaiterie Riverin du Lac", "Serres Dame Nature", "Verger Api-Pomme", "Bouchard Artisan Bio", "Ferme aux trois soleils", "Ferme Dan Nature", "Sorrento Pizzeria", "La Ferme Olofée", "Ferme avicole O’Sag", "Maraîchers Vé-Jé", "Stacychoux", "Dépanneur chez Pierrette", "Les Bouchées Doubles", "Ferme apicole du Lac", "Le ranch à Pinard", "Ferme Laterroise", "Boucherie Claude Fortier", "Ferme Denis Gaudreault & Fils", "Vignoble Joli Chambord", "Fritolac", "Chez Georges", "Essaim Boréal", "Apicurieux miellerie et L’Atelier", "Boulangerie Médard", "BIZZ coopérative d’alimentation locale", "Chez Perron – Restaurant et Boutique", "Chocolaterie Rose Élisabeth", "Pépinière Boréalis", "Breuvages Red Champagne", "Fromagerie Blackburn", "Coop IGA Extra D’Alma", "Laiterie Laroche", "Légunord", "Alimentation Catherine Verreault", "IGA Régnier Talbot", "Vergers de Velours", "IGA Famille Cloutier", "La Fabrique 1870", "IGA Jean-Marie Tremblay & fils inc.", "IGA Marché Lamontagne et fille", "Transport Guy Voisine", "CPE la Cajolerie – Côte Réserve", "Eugène Allard", "IGA Régnier", "IGA Régnier Chicoutimi-Nord", "Joli Rouge", "Microbrasserie Pavillon Noir", "CPE Aux petites joies", "Supermarché IGA Mellon", "Auberge Le Camp de Base", "Auberge Presbytère Mont-Lac-Vert", "IGA Gravel & Fille", "Transcol", "Cuisine Fusion Météore", "IGA Supermarché Saint-Hubert", "La Chasse-Pinte", "Le Central", "Le légendaire", "Au coeur des bois", "Tremblay Express", "Groupe Morneau", "Ail du Moulin", "La Tablée du Lac", "Craler", "Le Magasin", "Verre lime", "CPE Les petits Cailloux – St-Fulgence", "CPE Petits Cailloux Installation milieu de travail", "CPE Les Petits Cailloux – Saint-Charles-de-Bourget", "CPE Les petits Cailloux – Installation du Milieu étudiant – Chicoutimi", "CPE Les petits Cailloux – Saint-David-de-Falardeau", "Messagerie D.M.G.", "CPE Les petits Cailloux – Bégin", "CPE Les petits Cailloux – St-Ambroise", "Marché Centre-Ville", "Le Baumier", "PAG Produits Alimentaires", "CPE Les petits Cailloux – Chicoutimi", "CPE La Cajolerie #2", "Horizon – restaurant & bar à vin", "CPE La Cajolerie #1", "CPE Les Trottineurs", "Ferme Tournevent", "Verger Bella Croquer", "À Contre-Vent", "Maxi Chicoutimi Barette", "Maxi Chicoutimi Nord", "Maxi Jonquière", "Maxi La Baie", "Maxi Pont Nord", "L’Achillée", "Maxi Roberval", "Maxi Roussel", "CPE l’Oasis des Picassos – Saint-Nazaire", "CPE Les Picassos de L’Île – Alma", "Maxi Mistassini", "La Cuisine", "Maxi Chicoutimi Talbot", "Délices du Lac-Saint-Jean", "Metro Alma", "Microbrasserie Le Coureur des Bois", "Les Produits la la Inc", "Metro Delisle", "CPE Mikueniss", "Metro Rivière-du-Moulin", "Metro Plus Chicoutimi", "Viandes CDS – Charcuteries ROCH", "CPE Mini-monde", "Metro Plus D. Boutin", "Aux Fleurs Ensorcelées", "Metro D. Boutin", "Metro Plus Jonquière", "Metro Plus Thibeault", "CPE Plein soleil", "Garderie Le Petit Monde des arts et des sports", "La Maison du Bleuet", "RL Énergies Chicoutimi-Nord", "Bergerie du Nord", "RL Énergies Dolbeau", "RL Énergies Laterrière", "RL Énergies Mistassini", "Café Cambio", "RL Énergies Saint-Ambroise", "Vignoble des battures", "Garderie Nature", "Super C Chicoutimi", "CPE L’Enfanthèque", "Les Petits Gâteaux de Maman", "Le jardin des Défricheurs", "Viandomax", "Boucherie Chez Manon", "CPE La grange aux lutins", "CPE Au pays des lutins", "CPE Alouette", "Boucherie chez Ti-John (Ferme 3J)", "CPE La Bambinerie", "Fromagerie Perron", "Marché Richelieu Épicerie Florent Lachance Inc", "La Maison des étoiles", "Le Jardin des Étoiles", "Domaine Amblay", "Serres Louise Turcotte", "Blanc Meringue", "Le monde des enfants", "Le Jardin Ensanté", "Ferme Sylvain Tremblay", "Le royaume des enfants", "Miss Gâteaux", "Bleuet Nordic", "Fromagerie Lehmann", "Bleuet Royal", "Bleuet Sauvage", "Bleuetière aux Gros Bleuets", "Usine de Congélation de Dolbeau", "Usine de Congélation de Saint-Félicien", "Bleuets sauvages du Québec", "Le Saint-Fût", "Bleu Nature", "Ferme et Bleuetière Tournesol", "Temaki", "Bleuetière du Cap Bleu", "Fromagerie L’Autre Versant", "Ferme Giroly", "Passionément chocolat", "Alimentation Nouvelle-Orléans", "Ferme JC Cyr", "Bergerie St-Antoine", "Ferme Lavoie Inc", "Service alimentaire Gordon", "Ferme le Filon", "Amour liquide", "Ferme Les Alpagas là là", "Ferme Les Moutaines", "Ferme Louise Gagnon", "Ferme Magi S.E.N.C", "Propur Frais", "Ranch du Vrai Nord", "Rebel Karma Café", "Ferme Villoise", "Microbrasserie Lion Bleu", "Potager de Valérie", "Kao Chocolat", "Mermax", "Verger des Grands-Ducs-Camerises", "KWE Cocktails", "Distillerie du Fjord", "La Boucanerie d’Henri", "Produits Alimentaires Bouchard", "La Bouche qui rie", "Bleu Vallin", "Bleuetière Ferland Boileau", "La Boucherie Nadeau", "Ferme au Jardin Potager", "Fraises-O-Bec", "La Cabane à glaces", "La chèvrerie les filles du roy", "Fromagerie La Normandinoise", "Fromagerie Médard", "La Chocolaterie des Pères de Mistassini", "Halte gourmande du quai municipal", "La croisée des pains", "Fromagerie Boivin", "Jardin Scullion", "Jardins de la source", "La Ferme à l’Envers", "Jardins Mistouk", "La Ferme d’en haut", "La Ferme du Forestier-Maraîcher", "FÜM FÜM", "Bons Délices", "Les paysans du Fjord", "La petite ferme à Orace", "Les Jardins de Saint-Martin", "La plateforme bioalimentaire boréale Solidar", "Les Jardins d’Éloïse", "La Vieille Ferme", "Herboréal", "Bistro Café Summum, Chicoutimi", "Jardins de Sophie, ferme & resto", "Primordium", "Les Maraichers Potvin", "Pousses Égales", "Le Domaine de La Roche à l’Épervière", "Les miels du Terroir", "Découpe Line Landreville", "Les Miels Raphael", "Potager Grandmont", "Les Pastilles charbonneau", "Les poules à Meggy", "Les Serres en Plein Champs", "Les producteurs de camerises Inc.", "Les Produits DAMN", "Pie Braque Microbrasserie Coopérative", "La Mini Boulangerie F.C.", "Les Vergers Métabetchouan", "L’évolution fruitée", "Maïs du Rang 4", "Les sauces du Fjord", "Microbrasserie Riverbend", "Marché public de Saint-Gédéon", "Pépinière Aux Bons Jardins", "Miel Boréal", "Miel des Ruisseaux", "Menu Verger", "Boucherie Les Chefs", "Pêcherie Manicouagan", "Miel Picard", "Marché d’Ici et d’Ailleurs", "Les Jardins de Saint-Félicien", "Pausematic", "Dixie et Paul", "Pâtisserie QueBeclava", "Boulangerie Artisanale Nuances de Grains", "Pépinière Boucher-Oh M’ail M’ail", "Micro pousses et cie", "Boulangerie La Boîte à sucre", "Café Chaga Boréal", "Boulangerie Pâtisserie le Viennois", "Boulangerie-Pâtisserie Lesage", "Champignon boréal", "Maison Gourmande", "Par 3 La Tablée", "Cétrobon", "Cosmo Lyo", "Manon Brassard, Terroir et décoration", "l’Univers des poupons", "CESAME", "Pains Lalancette", "Cerfs Rouges Michaud", "Couvoir de Chicoutimi", "Marché d’Arvida", "Cornet Givré", "Cerfs du Royaume", "Charcuterie La Bastille", "Invasion sucrée", "Choco Accro", "Microbrasserie La Chouape", "Chocolaterie Royale", "Coopérative bleuetière Saint-Augustin", "Les Serres St-Do", "Coffrets du Royaume", "Coop forestière Ferland-Boilleau", "L’Exode Café", "Ibride Cidre Nature", "Pearson", "Cafés Dominic St-Pierre", "Brasserie Port-Alfred", "Ferme des camerises", "La Boulangerie Moisson d’Or", "Canada Sauce", "Bleuetière l’Anse-aux-bleuets", "Domaine Carpe Diem", "Arvida Roasting Co", "Bleuetière Saguenoise", "Aliments Fabbrica", "Makabon", "LaurieGinale", "Salsa Le Marché", "Verger La Bonbonnière", "Le Jardin de Marguerite", "Les Anarchoux", "Bleuetière touristique de Saint-François-de-Sales", "Ferme Eloise Truchon; Abattoir", "À l’Orée des champs", "Saint-Crème", "Les Jardins La Martine", "Saveurs BeeZee", "Aventure Rose des vents", "Produits alimentaires VIO", "Savonnerie au pays des bleuets", "Resto des Battures", "Salaison Besson", "CPE Gari-Gatou", "Hiberna – Congelerie Heritier", "Fraisière biologique Chambord", "La boulangerie Normandin", "Les Serres Arc-en-ciel", "Les vergers bleus des battures", "O’Gélato et Cacao", "Bercée Microbrasserie", "Potager Fleuri du Lac", "Rose CHOCO-là", "Pâtisserie Ladouche", "Valé O Miel", "Végétolab", "Pâtisserie Boulangerie Mergeay", "Écomarché NORD-Bio", "Les Jardins du Saguenay", "Domaine d’Oscar", "VERIFRUIT", "Les reines et colonies du Lac", "Les Jardins Rustiques", "Pensée Sauvage de stacy", "Boucherie Salaison Turcot", "Barbe noire", "Bleuetière coopérative de Saint-Eugène", "Chez Bébé", "Chez Turcotte-Cabane à Sucre", "Ferme avicole Bergeron & fils SENC", "Ferme Daniro", "Ferme La Rouquine", "Ferme Lapin du Nord", "HMN", "L’Affamé Boutique Prêt à manger", "Les maraîchers Harfo", "Les P’tits Midis De Val", "Moisson Saguenay-Lac-Saint-Jean", "Usine de Congélation de St-Bruno", "Bleuetière Saveurs du Verger", "Le café maraîcher", "Les Entreprises Fortin-Tremblay & Fils Inc.", "Ferme JMDSL", "Bleuetière Garnier", "Bleuets Fortin & Fils Inc", "Les Miels du Lac", "Le St-Gourmand", "Miel des Vallons", "Alpaga Bersi", "Vignoble La Bonté DiVigne", "Les Douceurs de Mulâne", "Ferme T. McNicoll", "Aurel et Compagnie", "Les Jardins chez Bettez", "Boeuf Alfred", "Érablière au Sucre d’Or", "Ferme Bouchard et filles", "Verger du Paradis", "Les Jardins de la Montagne", "Camerise Milou", "Ferme Les bons plans", "La mie de Saint-Antoine", "Ferme Gilbert et Fils", "Charcuterie de la Gare", "Vite des Péchés", "Lanvert", "Rubis Rouge", "Bar laitier Pinocchio et ses sucreries", "Épicerie communautaire Le Garde Manger", "Intermarché Bourget", "Magasin Général du Quai", "Pralines et Cacao", "De Miel en Bleuets", "Musée de La Vieille fromagerie Perron", "Notre vraie Nature", "Microbrasserie Saint-Honoré", "Passion Camerise", "Hopera – Microbrasserie et Pizzeria", "Aux Jardins d’Alex et Jennie", "Cultures Soleil Rouge", "Les Mômes du Fjord", "Vignoble Chambordais St-Vincent", "Camerises Mistouk – Économusée & Distillerie", "Boutique Vachement Boeuf", "Ferme Nelson Paradis", "Walter Café", "Cuisine Soleil", "Nutrinor Coopérative", "La Maison Gourmande d’Alma", "La Cuisine À Tom", "Boucherie St-Hilaire", "L’Époké Boréale", "Bleuetière touristique de Dolbeau-Mistassini", "Ferme Junique", "Bergerie Létulip", "La Salaison du Bistro D", "Les Aliments du Royaume", "La Bricole", "Ferme Lapointe", "ArboreAgro", "La ferme végétale", "L’appétrio", "Bar laitier La Vache Copine", "Auberge du Cap au leste", "Épicerie du quartier", "Norbleu", "LactoLac", "Les Bleuets Mistassini", "Boucherie PMA", "La Réserve du Draveur", "Les Ailes Bergy", "La Fournée", "Le Pétrin – Bagel & Buvette", "Microbrasserie du Lac St-Jean", "Les Alpagas de la Relève", "Boulangerie Farine", "À l’Apéro Alma", "Universo – Cibo Italiano", "Complexe touristique du bleuet/ Bleuetière St-Léon", "Ferme Luc Dufour", "Moulin du Lac", "Potager Mistook"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/boucherie-charcuterie-perron/", "https://zoneboreale.com/entreprises/boucherie-daniel-remy/", "https://zoneboreale.com/entreprises/boucherie-le-bouvillon-jak/", "https://zoneboreale.com/entreprises/boulangerie-du-royaume/", "https://zoneboreale.com/entreprises/charcuterie-fortin/", "https://zoneboreale.com/entreprises/chocolat-lulu/", "https://zoneboreale.com/entreprises/chocolaterie-au-coeur-fondant/", "https://zoneboreale.com/entreprises/de-fleurs-en-pots/", "https://zoneboreale.com/entreprises/ferme-almas-simard-et-murielle-beaulieu/", "https://zoneboreale.com/entreprises/ferme-trompe-souris/", "https://zoneboreale.com/entreprises/boosthe/", "https://zoneboreale.com/entreprises/serres-belle-de-jour/", "https://zoneboreale.com/entreprises/jardins-terra-terre/", "https://zoneboreale.com/entreprises/jardins-gobeil/", "https://zoneboreale.com/entreprises/laiterie-de-la-baie/", "https://zoneboreale.com/entreprises/ferme-patrimoniale/", "https://zoneboreale.com/entreprises/verger-synergie/", "https://zoneboreale.com/entreprises/le-jardin-des-canards-bleus/", "https://zoneboreale.com/entreprises/les-gateaux-mb/", "https://zoneboreale.com/entreprises/verger-marie-soleil/", "https://zoneboreale.com/entreprises/vignoble-couchepagane/", "https://zoneboreale.com/entreprises/les-petits-fruits-de-lizon-ferme-3j/", "https://zoneboreale.com/entreprises/la-recette/", "https://zoneboreale.com/entreprises/la-maison-du-pain-chicoutimi/", "https://zoneboreale.com/entreprises/verger-camnord/", "https://zoneboreale.com/entreprises/r-n-perron/", "https://zoneboreale.com/entreprises/ferme-voltige/", "https://zoneboreale.com/entreprises/la-patate-lac-st-jean/", "https://zoneboreale.com/entreprises/le-chevrier-du-nord/", "https://zoneboreale.com/entreprises/chez-roger/", "https://zoneboreale.com/entreprises/fleurs-de-la-friche/", "https://zoneboreale.com/entreprises/la-shop-a-farine/", "https://zoneboreale.com/entreprises/coop-lac-keno/", "https://zoneboreale.com/entreprises/gestion-agricole-boreale/", "https://zoneboreale.com/entreprises/pepiniere-du-cerneau/", "https://zoneboreale.com/entreprises/serre-des-jardins-fleuriste-bagotville-et-arc-en-ciel/", "https://zoneboreale.com/entreprises/la-paterie/", "https://zoneboreale.com/entreprises/les-petits-jardins-de-normandin/", "https://zoneboreale.com/entreprises/ribozome-canada/", "https://zoneboreale.com/entreprises/boucherie-jacko/", "https://zoneboreale.com/entreprises/boucherie-raymond-et-andre/", "https://zoneboreale.com/entreprises/boulangerie-chambord/", "https://zoneboreale.com/entreprises/ferme-du-ruisseau-clair/", "https://zoneboreale.com/entreprises/les-gateaux-julimagine/", "https://zoneboreale.com/entreprises/mellonia/", "https://zoneboreale.com/entreprises/fromagerie-saint-laurent/", "https://zoneboreale.com/entreprises/la-voie-maltee-jonquiere/", "https://zoneboreale.com/entreprises/camerises-bistro/", "https://zoneboreale.com/entreprises/fromagerie-au-pays-des-bleuets-ferme-3j/", "https://zoneboreale.com/entreprises/brasserie-walkyrie/", "https://zoneboreale.com/entreprises/ferme-sebastien-girard/", "https://zoneboreale.com/entreprises/verger-de-la-mistassini/", "https://zoneboreale.com/entreprises/les-serres-toundra/", "https://zoneboreale.com/entreprises/fermette-accapella/", "https://zoneboreale.com/entreprises/ferme-ruisseau-des-chasseurs/", "https://zoneboreale.com/entreprises/ferme-harvey/", "https://zoneboreale.com/entreprises/morille-quebec/", "https://zoneboreale.com/entreprises/simia-chocolat/", "https://zoneboreale.com/entreprises/cuit-zine-moi/", "https://zoneboreale.com/entreprises/caramello-7/", "https://zoneboreale.com/entreprises/domaine-loree-des-bois/", "https://zoneboreale.com/entreprises/ferme-monarque/", "https://zoneboreale.com/entreprises/cafe-marc-robitaille/", "https://zoneboreale.com/entreprises/les-cafes-daurelie/", "https://zoneboreale.com/entreprises/kafea/", "https://zoneboreale.com/entreprises/bougre-dor/", "https://zoneboreale.com/entreprises/les-herbes-du-lac/", "https://zoneboreale.com/entreprises/labrador-production/", "https://zoneboreale.com/entreprises/verger-mesy/", "https://zoneboreale.com/entreprises/les-jardins-bio-forestier/", "https://zoneboreale.com/entreprises/sauces-marinades-dg/", "https://zoneboreale.com/entreprises/les-fleurs-maltais/", "https://zoneboreale.com/entreprises/le-maraicher-des-basses-terres-du-saguenay/", "https://zoneboreale.com/entreprises/les-jardins-baielactee/", "https://zoneboreale.com/entreprises/ferme-olac/", "https://zoneboreale.com/entreprises/merci-la-terre/", "https://zoneboreale.com/entreprises/ferme-multi-fruits/", "https://zoneboreale.com/entreprises/microlaiterie-riverin-du-lac/", "https://zoneboreale.com/entreprises/serres-dame-nature/", "https://zoneboreale.com/entreprises/happy-pomme/", "https://zoneboreale.com/entreprises/bouchard-artisan-bio/", "https://zoneboreale.com/entreprises/ferme-aux-trois-soleils/", "https://zoneboreale.com/entreprises/ferme-dan-nature/", "https://zoneboreale.com/entreprises/sorrento-pizzeria/", "https://zoneboreale.com/entreprises/la-ferme-olofee/", "https://zoneboreale.com/entreprises/ferme-avicole-osag/", "https://zoneboreale.com/entreprises/maraichers-ve-je/", "https://zoneboreale.com/entreprises/stacychoux/", "https://zoneboreale.com/entreprises/depanneur-chez-pierrette/", "https://zoneboreale.com/entreprises/les-bouchees-doubles/", "https://zoneboreale.com/entreprises/ferme-apicole-du-lac/", "https://zoneboreale.com/entreprises/le-ranch-a-pinard/", "https://zoneboreale.com/entreprises/ferme-laterroise/", "https://zoneboreale.com/entreprises/boucherie-claude-fortier/", "https://zoneboreale.com/entreprises/ferme-denis-gaudreault-fils/", "https://zoneboreale.com/entreprises/vignoble-joli-chambord/", "https://zoneboreale.com/entreprises/fritolac/", "https://zoneboreale.com/entreprises/chez-georges/", "https://zoneboreale.com/entreprises/essaim-boreal/", "https://zoneboreale.com/entreprises/apicurieux/", "https://zoneboreale.com/entreprises/bistro-boulangerie-medard/", "https://zoneboreale.com/entreprises/bizz-cooperative-dalimentation-locale/", "https://zoneboreale.com/entreprises/chez-perron-restaurant-et-boutique/", "https://zoneboreale.com/entreprises/chocolaterie-rose-elisabeth/", "https://zoneboreale.com/entreprises/pepiniere-borealis/", "https://zoneboreale.com/entreprises/breuvages-red-champagne/", "https://zoneboreale.com/entreprises/fromagerie-blackburn/", "https://zoneboreale.com/entreprises/coop-iga-extra-dalma/", "https://zoneboreale.com/entreprises/laiterie-laroche/", "https://zoneboreale.com/entreprises/legunord/", "https://zoneboreale.com/entreprises/iga-alimentation-c-verreault/", "https://zoneboreale.com/entreprises/iga-alimentation-yvon-hache/", "https://zoneboreale.com/entreprises/vergers-de-velours/", "https://zoneboreale.com/entreprises/iga-gestion-tremblay-et-leboeuf-inc/", "https://zoneboreale.com/entreprises/artisans-1870/", "https://zoneboreale.com/entreprises/iga-j-m-tremblay-et-fils-inc/", "https://zoneboreale.com/entreprises/iga-marche-lamontagne-et-fille/", "https://zoneboreale.com/entreprises/transport-guy-voisine/", "https://zoneboreale.com/entreprises/cpe-la-cajolerie-cote-reserve/", "https://zoneboreale.com/entreprises/eugene-allard/", "https://zoneboreale.com/entreprises/iga-regnier/", "https://zoneboreale.com/entreprises/iga-regnier-chicoutimi-nord/", "https://zoneboreale.com/entreprises/joli-rouge/", "https://zoneboreale.com/entreprises/microbrasserie-pavillon-noir/", "https://zoneboreale.com/entreprises/cpe-aux-petites-joies/", "https://zoneboreale.com/entreprises/iga-supermarche-mellon-inc/", "https://zoneboreale.com/entreprises/auberge-le-camp-de-base/", "https://zoneboreale.com/entreprises/auberge-presbytere-mont-lac-vert/", "https://zoneboreale.com/entreprises/iga-supermarche-roberval-inc/", "https://zoneboreale.com/entreprises/transcol/", "https://zoneboreale.com/entreprises/cuisine-fusion-meteore/", "https://zoneboreale.com/entreprises/iga-supermarche-saint-hubert/", "https://zoneboreale.com/entreprises/la-chasse-pinte/", "https://zoneboreale.com/entreprises/le-central/", "https://zoneboreale.com/entreprises/le-legendaire/", "https://zoneboreale.com/entreprises/au-coeur-des-bois/", "https://zoneboreale.com/entreprises/avantage-logistique/", "https://zoneboreale.com/entreprises/groupe-morneau/", "https://zoneboreale.com/entreprises/ail-du-moulin/", "https://zoneboreale.com/entreprises/la-tablee-du-lac/", "https://zoneboreale.com/entreprises/craler/", "https://zoneboreale.com/entreprises/le-magasin/", "https://zoneboreale.com/entreprises/verre-lime/", "https://zoneboreale.com/entreprises/cpe-les-petits-cailloux-st-fulgence/", "https://zoneboreale.com/entreprises/cpe-petits-cailloux-installation-milieu-de-travail/", "https://zoneboreale.com/entreprises/cpe-les-petits-cailloux-saint-charles-de-bourget/", "https://zoneboreale.com/entreprises/cpe-les-petits-cailloux-installation-du-milieu-etudiant-chicoutimi/", "https://zoneboreale.com/entreprises/cpe-les-petits-cailloux-st-david-de-falardeau/", "https://zoneboreale.com/entreprises/messagerie-dmg/", "https://zoneboreale.com/entreprises/cpe-les-petits-cailloux-begin/", "https://zoneboreale.com/entreprises/cpe-les-petits-cailloux-st-ambroise/", "https://zoneboreale.com/entreprises/marche-centre-ville/", "https://zoneboreale.com/entreprises/le-baumier/", "https://zoneboreale.com/entreprises/pag-produits-alimentaires/", "https://zoneboreale.com/entreprises/cpe-les-petits-cailloux-chicoutimi/", "https://zoneboreale.com/entreprises/cpe-la-cajolerie-2/", "https://zoneboreale.com/entreprises/horizon-restaurant-bar-a-vin/", "https://zoneboreale.com/entreprises/cpe-la-cajolerie-saint-honore/", "https://zoneboreale.com/entreprises/cpe-les-trottineurs/", "https://zoneboreale.com/entreprises/ferme-tournevent/", "https://zoneboreale.com/entreprises/verger-bella-croquer/", "https://zoneboreale.com/entreprises/a-contre-vent/", "https://zoneboreale.com/entreprises/maxi-chicoutimi-barette/", "https://zoneboreale.com/entreprises/maxi-chicoutimi-nord/", "https://zoneboreale.com/entreprises/maxi-jonquiere/", "https://zoneboreale.com/entreprises/maxi-la-baie/", "https://zoneboreale.com/entreprises/maxi-pont-nord/", "https://zoneboreale.com/entreprises/lachillee/", "https://zoneboreale.com/entreprises/maxi-roberval/", "https://zoneboreale.com/entreprises/maxi-roussel/", "https://zoneboreale.com/entreprises/cpe-les-picassos-de-lile-saint-nazaire/", "https://zoneboreale.com/entreprises/cpe-les-picassos-de-lile/", "https://zoneboreale.com/entreprises/provigo-dolbeau-mistassini/", "https://zoneboreale.com/entreprises/la-cuisine/", "https://zoneboreale.com/entreprises/provigo-le-marche-chicoutimi/", "https://zoneboreale.com/entreprises/delices-du-lac-saint-jean/", "https://zoneboreale.com/entreprises/metro-alma/", "https://zoneboreale.com/entreprises/microbrasserie-le-coureur-des-bois/", "https://zoneboreale.com/entreprises/les-produits-lala-sauces-bobby/", "https://zoneboreale.com/entreprises/metro-delisle/", "https://zoneboreale.com/entreprises/cpe-mikueniss/", "https://zoneboreale.com/entreprises/metro-larouche/", "https://zoneboreale.com/entreprises/metro-plus-chicoutimi/", "https://zoneboreale.com/entreprises/viandes-cds-charcuteries-roch/", "https://zoneboreale.com/entreprises/cpe-mini-monde/", "https://zoneboreale.com/entreprises/metro-plus-d-boutin/", "https://zoneboreale.com/entreprises/aux-fleurs-ensorcelees/", "https://zoneboreale.com/entreprises/metro-plus-db/", "https://zoneboreale.com/entreprises/metro-plus-p-e-prix/", "https://zoneboreale.com/entreprises/metro-sagami-jonquiere/", "https://zoneboreale.com/entreprises/cpe-plein-soleil/", "https://zoneboreale.com/entreprises/le-petit-monde-des-arts-et-des-sports/", "https://zoneboreale.com/entreprises/la-maison-du-bleuet/", "https://zoneboreale.com/entreprises/rl-energies-chicoutimi-nord/", "https://zoneboreale.com/entreprises/bergerie-du-nord/", "https://zoneboreale.com/entreprises/rl-energies-dolbeau/", "https://zoneboreale.com/entreprises/rl-energies-laterriere/", "https://zoneboreale.com/entreprises/rl-energies-mistassini/", "https://zoneboreale.com/entreprises/cafe-cambio/", "https://zoneboreale.com/entreprises/rl-energies-saint-ambroise/", "https://zoneboreale.com/entreprises/vignoble-des-battures/", "https://zoneboreale.com/entreprises/garderie-nature/", "https://zoneboreale.com/entreprises/super-c-chicoutimi/", "https://zoneboreale.com/entreprises/cpe-lenfantheque/", "https://zoneboreale.com/entreprises/les-petits-gateaux-de-maman/", "https://zoneboreale.com/entreprises/le-jardin-des-defricheurs/", "https://zoneboreale.com/entreprises/viandomax/", "https://zoneboreale.com/entreprises/boucherie-chez-manon/", "https://zoneboreale.com/entreprises/cpe-la-grange-aux-lutins/", "https://zoneboreale.com/entreprises/cpe-au-pays-des-lutins/", "https://zoneboreale.com/entreprises/cpe-alouette/", "https://zoneboreale.com/entreprises/boucherie-chez-ti-john-ferme-3j/", "https://zoneboreale.com/entreprises/cpe-la-bambinerie/", "https://zoneboreale.com/entreprises/fromagerie-perron/", "https://zoneboreale.com/entreprises/marche-richelieu-epicerie-florent-lachance-inc/", "https://zoneboreale.com/entreprises/la-maison-des-etoiles/", "https://zoneboreale.com/entreprises/le-jardin-des-etoiles/", "https://zoneboreale.com/entreprises/domaine-amblay/", "https://zoneboreale.com/entreprises/serres-louise-turcotte/", "https://zoneboreale.com/entreprises/blanc-meringue/", "https://zoneboreale.com/entreprises/le-monde-des-enfants/", "https://zoneboreale.com/entreprises/le-jardin-ensante/", "https://zoneboreale.com/entreprises/ferme-sylvain-tremblay/", "https://zoneboreale.com/entreprises/le-royaume-des-enfants/", "https://zoneboreale.com/entreprises/miss-gateaux/", "https://zoneboreale.com/entreprises/bleuet-nordic/", "https://zoneboreale.com/entreprises/fromagerie-lehmann/", "https://zoneboreale.com/entreprises/bleuet-royal/", "https://zoneboreale.com/entreprises/bleuet-sauvage/", "https://zoneboreale.com/entreprises/bleuetiere-aux-gros-bleuets/", "https://zoneboreale.com/entreprises/usine-de-congelation-de-dolbeau/", "https://zoneboreale.com/entreprises/usine-de-congelation-de-saint-felicien/", "https://zoneboreale.com/entreprises/usine-de-congelation-saint-bruno/", "https://zoneboreale.com/entreprises/le-saint-fut/", "https://zoneboreale.com/entreprises/bleu-nature/", "https://zoneboreale.com/entreprises/ferme-et-bleuetiere-tournesol/", "https://zoneboreale.com/entreprises/temaki/", "https://zoneboreale.com/entreprises/bleuetiere-du-cap-bleu/", "https://zoneboreale.com/entreprises/fromagerie-lautre-versant/", "https://zoneboreale.com/entreprises/ferme-giroly/", "https://zoneboreale.com/entreprises/passionement-chocolat/", "https://zoneboreale.com/entreprises/alimentation-nouvelle-orleans/", "https://zoneboreale.com/entreprises/ferme-jc-cyr/", "https://zoneboreale.com/entreprises/bergerie-st-antoine/", "https://zoneboreale.com/entreprises/ferme-lavoie-inc/", "https://zoneboreale.com/entreprises/services-alimentaire-gordon/", "https://zoneboreale.com/entreprises/les-jardins-de-lily/", "https://zoneboreale.com/entreprises/amour-liquide/", "https://zoneboreale.com/entreprises/ferme-les-alpagas-la-la-du-domaine-des-rois/", "https://zoneboreale.com/entreprises/ferme-les-moutaines/", "https://zoneboreale.com/entreprises/ferme-louise-gagnon/", "https://zoneboreale.com/entreprises/ferme-magi-s-e-n-c/", "https://zoneboreale.com/entreprises/propur/", "https://zoneboreale.com/entreprises/ranch-du-vrai-nord/", "https://zoneboreale.com/entreprises/rebel-karma-cafe/", "https://zoneboreale.com/entreprises/ferme-villoise/", "https://zoneboreale.com/entreprises/microbrasserie-lion-bleu/", "https://zoneboreale.com/entreprises/potager-de-valerie/", "https://zoneboreale.com/entreprises/kao-chocolat/", "https://zoneboreale.com/entreprises/mermax/", "https://zoneboreale.com/entreprises/ferme-des-grands-ducs/", "https://zoneboreale.com/entreprises/kwe-cocktails/", "https://zoneboreale.com/entreprises/distillerie-du-fjord/", "https://zoneboreale.com/entreprises/la-boucanerie-dhenri/", "https://zoneboreale.com/entreprises/produits-alimentaires-bouchard/", "https://zoneboreale.com/entreprises/la-bouche-qui-rie/", "https://zoneboreale.com/entreprises/bleu-vallin/", "https://zoneboreale.com/entreprises/bleuetiere-ferland-boilleau/", "https://zoneboreale.com/entreprises/la-boucherie-nadeau/", "https://zoneboreale.com/entreprises/ferme-au-jardin-potager/", "https://zoneboreale.com/entreprises/fraises-o-bec/", "https://zoneboreale.com/entreprises/la-cabane-a-glaces/", "https://zoneboreale.com/entreprises/la-chevrerie-les-filles-du-roy/", "https://zoneboreale.com/entreprises/fromagerie-la-normandinoise/", "https://zoneboreale.com/entreprises/fromagerie-medard/", "https://zoneboreale.com/entreprises/chocolaterie-des-peres-de-mistassini/", "https://zoneboreale.com/entreprises/halte-gourmande-du-quai-municipal/", "https://zoneboreale.com/entreprises/la-croisee-des-pains/", "https://zoneboreale.com/entreprises/fromagerie-boivin/", "https://zoneboreale.com/entreprises/jardin-scullion/", "https://zoneboreale.com/entreprises/jardins-de-la-source/", "https://zoneboreale.com/entreprises/la-ferme-a-lenvers/", "https://zoneboreale.com/entreprises/les-jardins-mistouk/", "https://zoneboreale.com/entreprises/la-ferme-den-haut/", "https://zoneboreale.com/entreprises/la-ferme-du-forestier-maraicher/", "https://zoneboreale.com/entreprises/fum-fum/", "https://zoneboreale.com/entreprises/chocolaterie-bons-delices/", "https://zoneboreale.com/entreprises/les-paysans-du-fjord/", "https://zoneboreale.com/entreprises/la-petite-ferme-a-orace/", "https://zoneboreale.com/entreprises/les-jardins-de-st-martin/", "https://zoneboreale.com/entreprises/la-plateforme-bioalimentaire-boreale-solidar/", "https://zoneboreale.com/entreprises/les-jardins-deloise/", "https://zoneboreale.com/entreprises/bergerie-la-vieille-ferme/", "https://zoneboreale.com/entreprises/herboreal/", "https://zoneboreale.com/entreprises/bistro-cafe-summum-chicoutimi/", "https://zoneboreale.com/entreprises/les-jardins-de-sophie/", "https://zoneboreale.com/entreprises/primordium-createur-de-champignon-gastronomique/", "https://zoneboreale.com/entreprises/les-maraichers-potvin/", "https://zoneboreale.com/entreprises/pousses-egales/", "https://zoneboreale.com/entreprises/domaine-la-roche-a-leperviere/", "https://zoneboreale.com/entreprises/les-miels-du-terroir/", "https://zoneboreale.com/entreprises/decoupe-line-landreville/", "https://zoneboreale.com/entreprises/les-miels-raphael/", "https://zoneboreale.com/entreprises/potager-grandmont/", "https://zoneboreale.com/entreprises/les-pastilles-charbonneau/", "https://zoneboreale.com/entreprises/les-poules-a-meggy/", "https://zoneboreale.com/entreprises/les-serres-en-plein-champs/", "https://zoneboreale.com/entreprises/les-producteurs-de-camerises-inc/", "https://zoneboreale.com/entreprises/les-sauces-damn/", "https://zoneboreale.com/entreprises/pie-braque-microbrasserie-cooperative/", "https://zoneboreale.com/entreprises/la-mini-boulangerie-f-c/", "https://zoneboreale.com/entreprises/les-vergers-metabetchouan/", "https://zoneboreale.com/entreprises/levolution-fruitee/", "https://zoneboreale.com/entreprises/mais-du-rang-4/", "https://zoneboreale.com/entreprises/les-sauces-du-fjord/", "https://zoneboreale.com/entreprises/microbrasserie-riverbend/", "https://zoneboreale.com/entreprises/marche-public-de-st-gedeon/", "https://zoneboreale.com/entreprises/gite-aux-bons-jardins/", "https://zoneboreale.com/entreprises/miel-boreal/", "https://zoneboreale.com/entreprises/miel-des-ruisseaux/", "https://zoneboreale.com/entreprises/menu-verger/", "https://zoneboreale.com/entreprises/boucherie-les-chefs/", "https://zoneboreale.com/entreprises/pecherie-manicouagan/", "https://zoneboreale.com/entreprises/miel-picard/", "https://zoneboreale.com/entreprises/marche-dici-et-dailleurs/", "https://zoneboreale.com/entreprises/les-jardins-de-saint-felicien/", "https://zoneboreale.com/entreprises/pausematic/", "https://zoneboreale.com/entreprises/dixie-et-paul/", "https://zoneboreale.com/entreprises/patisserie-quebeclava/", "https://zoneboreale.com/entreprises/boulangerie-artisanale-nuances-de-grains/", "https://zoneboreale.com/entreprises/pepiniere-boucher-oh-mail-mail/", "https://zoneboreale.com/entreprises/micro-pousses-et-cie/", "https://zoneboreale.com/entreprises/boulangerie-patisserie-la-boite-a-sucre/", "https://zoneboreale.com/entreprises/cafe-chaga-boreal/", "https://zoneboreale.com/entreprises/boulangerie-patisserie-le-viennois/", "https://zoneboreale.com/entreprises/boulangerie-patisserie-lesage/", "https://zoneboreale.com/entreprises/champignon-boreal/", "https://zoneboreale.com/entreprises/maison-gourmande-dolbeau/", "https://zoneboreale.com/entreprises/par-3-la-tablee/", "https://zoneboreale.com/entreprises/cetrobon/", "https://zoneboreale.com/entreprises/cosmo-lyo/", "https://zoneboreale.com/entreprises/manon-brassard-terroir-et-decoration/", "https://zoneboreale.com/entreprises/lunivers-des-poupons/", "https://zoneboreale.com/entreprises/cesame/", "https://zoneboreale.com/entreprises/pains-lalancette/", "https://zoneboreale.com/entreprises/cerfs-rouges-michaud/", "https://zoneboreale.com/entreprises/couvoir-de-chicoutimi/", "https://zoneboreale.com/entreprises/les-marches-de-saguenay/", "https://zoneboreale.com/entreprises/cornet-givre/", "https://zoneboreale.com/entreprises/cerfs-du-royaume/", "https://zoneboreale.com/entreprises/charcuterie-la-bastille/", "https://zoneboreale.com/entreprises/invasion-sucree/", "https://zoneboreale.com/entreprises/choco-accro/", "https://zoneboreale.com/entreprises/microbrasserie-la-chouape/", "https://zoneboreale.com/entreprises/chocolaterie-royale/", "https://zoneboreale.com/entreprises/cooperative-bleuetiere-saint-augustin/", "https://zoneboreale.com/entreprises/les-serres-st-do/", "https://zoneboreale.com/entreprises/coffrets-du-royaume/", "https://zoneboreale.com/entreprises/cooperative-forestiere-ferland-boileau/", "https://zoneboreale.com/entreprises/lexode-cafe/", "https://zoneboreale.com/entreprises/cidre-ibride/", "https://zoneboreale.com/entreprises/pearson/", "https://zoneboreale.com/entreprises/cafes-dominic-saint-pierre/", "https://zoneboreale.com/entreprises/brasserie-port-alfred/", "https://zoneboreale.com/entreprises/ferme-des-camerises/", "https://zoneboreale.com/entreprises/la-boulangerie-moisson-dor/", "https://zoneboreale.com/entreprises/canada-sauce/", "https://zoneboreale.com/entreprises/bleuetiere-lanse-aux-bleuets/", "https://zoneboreale.com/entreprises/domaine-carpe-diem/", "https://zoneboreale.com/entreprises/arvida-roasting-co/", "https://zoneboreale.com/entreprises/bleuetiere-saguenoise/", "https://zoneboreale.com/entreprises/aliments-fabbrica/", "https://zoneboreale.com/entreprises/makabon/", "https://zoneboreale.com/entreprises/laurieginale/", "https://zoneboreale.com/entreprises/salsa-le-marche/", "https://zoneboreale.com/entreprises/verger-la-bonbonniere/", "https://zoneboreale.com/entreprises/le-jardin-de-marguerite/", "https://zoneboreale.com/entreprises/les-anarchoux/", "https://zoneboreale.com/entreprises/bleuetiere-touristique-de-saint-francois-de-sales/", "https://zoneboreale.com/entreprises/ferme-eloise-truchon-abattoir/", "https://zoneboreale.com/entreprises/a-loree-des-champs/", "https://zoneboreale.com/entreprises/saint-creme-bar-laitier/", "https://zoneboreale.com/entreprises/les-jardins-la-martine/", "https://zoneboreale.com/entreprises/saveurs-beezee/", "https://zoneboreale.com/entreprises/aventure-rose-des-vents/", "https://zoneboreale.com/entreprises/vinaigrettes-vio/", "https://zoneboreale.com/entreprises/savonnerie-au-pays-des-bleuets/", "https://zoneboreale.com/entreprises/resto-des-battures/", "https://zoneboreale.com/entreprises/salaison-besson/", "https://zoneboreale.com/entreprises/cpe-gari-gatou/", "https://zoneboreale.com/entreprises/congelerie-heritier/", "https://zoneboreale.com/entreprises/fraisiere-biologique-chambord/", "https://zoneboreale.com/entreprises/la-boulangerie-normandin/", "https://zoneboreale.com/entreprises/les-serres-arc-en-ciel/", "https://zoneboreale.com/entreprises/les-vergers-bleus-des-battures/", "https://zoneboreale.com/entreprises/maison-ogelato-cacao/", "https://zoneboreale.com/entreprises/microbrasserie-bercee/", "https://zoneboreale.com/entreprises/potager-fleuri-du-lac/", "https://zoneboreale.com/entreprises/rose-choco-la/", "https://zoneboreale.com/entreprises/serge-ladouche-boulangerie-et-patisserie/", "https://zoneboreale.com/entreprises/vale-o-miel/", "https://zoneboreale.com/entreprises/vegetolab/", "https://zoneboreale.com/entreprises/patisserie-boulangerie-mergeay/", "https://zoneboreale.com/entreprises/ecomarche-nord-bio/", "https://zoneboreale.com/entreprises/les-jardins-du-saguenay/", "https://zoneboreale.com/entreprises/7071/", "https://zoneboreale.com/entreprises/verifruit/", "https://zoneboreale.com/entreprises/les-reines-et-colonies-du-lac/", "https://zoneboreale.com/entreprises/les-jardins-rustiques/", "https://zoneboreale.com/entreprises/pensee-sauvage-de-stacy/", "https://zoneboreale.com/entreprises/boucherie-salaison-turcot/", "https://zoneboreale.com/entreprises/barbe-noir/", "https://zoneboreale.com/entreprises/bleuetiere-cooperative-de-saint-eugene/", "https://zoneboreale.com/entreprises/chez-bebe/", "https://zoneboreale.com/entreprises/cabane-a-sucre-chez-gervais/", "https://zoneboreale.com/entreprises/ferme-avicole-bergeron-fils/", "https://zoneboreale.com/entreprises/ferme-daniro/", "https://zoneboreale.com/entreprises/ferme-la-rouquine/", "https://zoneboreale.com/entreprises/ferme-lapin-du-nord/", "https://zoneboreale.com/entreprises/hmn/", "https://zoneboreale.com/entreprises/laffame-boutique-pret-a-manger/", "https://zoneboreale.com/entreprises/les-maraichers-harfo/", "https://zoneboreale.com/entreprises/les-ptits-midis-de-val/", "https://zoneboreale.com/entreprises/moisson-saguenay-lac-saint-jean/", "https://zoneboreale.com/entreprises/usine-de-congelation-de-st-bruno/", "https://zoneboreale.com/entreprises/saveurs-du-verger/", "https://zoneboreale.com/entreprises/le-cafe-maraicher/", "https://zoneboreale.com/entreprises/les-entreprises-fortin-tremblay-fils-inc/", "https://zoneboreale.com/entreprises/ferme-jmdsl/", "https://zoneboreale.com/entreprises/bleuetiere-garnier/", "https://zoneboreale.com/entreprises/bleuets-fortin-fils-inc/", "https://zoneboreale.com/entreprises/les-miels-du-lac/", "https://zoneboreale.com/entreprises/le-st-gourmand/", "https://zoneboreale.com/entreprises/miel-des-vallons/", "https://zoneboreale.com/entreprises/alpaga-bersi/", "https://zoneboreale.com/entreprises/vignoble-la-bonte-di-vigne/", "https://zoneboreale.com/entreprises/les-douceurs-de-mulane/", "https://zoneboreale.com/entreprises/ferme-t-mcnicoll/", "https://zoneboreale.com/entreprises/aurel-et-compagnie/", "https://zoneboreale.com/entreprises/les-jardins-chez-bettez/", "https://zoneboreale.com/entreprises/boeuf-alfred/", "https://zoneboreale.com/entreprises/erabliere-au-sucre-dor/", "https://zoneboreale.com/entreprises/ferme-bouchard-et-filles/", "https://zoneboreale.com/entreprises/verger-du-paradis/", "https://zoneboreale.com/entreprises/les-jardins-de-la-montagne/", "https://zoneboreale.com/entreprises/camerise-milou/", "https://zoneboreale.com/entreprises/ferme-les-bons-plans/", "https://zoneboreale.com/entreprises/la-mie-de-saint-antoine/", "https://zoneboreale.com/entreprises/ferme-benoit-et-diane-gilbert-et-fils/", "https://zoneboreale.com/entreprises/charcuterie-de-la-gare/", "https://zoneboreale.com/entreprises/vite-des-peches/", "https://zoneboreale.com/entreprises/lanvert/", "https://zoneboreale.com/entreprises/rubis-rouge/", "https://zoneboreale.com/entreprises/bar-laitier-pinocchio-et-ses-sucreries/", "https://zoneboreale.com/entreprises/epicerie-communautaire-le-garde-manger/", "https://zoneboreale.com/entreprises/linter-marche-bourget/", "https://zoneboreale.com/entreprises/magasin-general-du-quai/", "https://zoneboreale.com/entreprises/pralines-et-cacao/", "https://zoneboreale.com/entreprises/de-miel-en-bleuets/", "https://zoneboreale.com/entreprises/la-vieille-fromagerie-perron/", "https://zoneboreale.com/entreprises/notre-vraie-nature/", "https://zoneboreale.com/entreprises/microbrasserie-saint-honore/", "https://zoneboreale.com/entreprises/passion-camerise/", "https://zoneboreale.com/entreprises/hopera-microbrasserie-et-pizzeria/", "https://zoneboreale.com/entreprises/aux-jardins-dalex-et-jennie/", "https://zoneboreale.com/entreprises/cultures-soleil-rouge/", "https://zoneboreale.com/entreprises/les-momes-du-fjord/", "https://zoneboreale.com/entreprises/vignoble-chambordais-st-vincent/", "https://zoneboreale.com/entreprises/camerises-mistouk/", "https://zoneboreale.com/entreprises/vachement-boeuf/", "https://zoneboreale.com/entreprises/ferme-nelson-paradis/", "https://zoneboreale.com/entreprises/lerudit-cafe/", "https://zoneboreale.com/entreprises/moulin-a-coutu-cuisine-soleil/", "https://zoneboreale.com/entreprises/nutrinor-produits-laitiers/", "https://zoneboreale.com/entreprises/la-maison-gourmande-dalma/", "https://zoneboreale.com/entreprises/la-cuisine-a-tom/", "https://zoneboreale.com/entreprises/boucherie-saint-hilaire/", "https://zoneboreale.com/entreprises/lepoke-boreale/", "https://zoneboreale.com/entreprises/bleuetiere-touristique-de-dolbeau-mistassini/", "https://zoneboreale.com/entreprises/ferme-jasmin-theberge/", "https://zoneboreale.com/entreprises/bergerie-letulip/", "https://zoneboreale.com/entreprises/la-salaison-du-bistro-d/", "https://zoneboreale.com/entreprises/les-aliments-du-royaume/", "https://zoneboreale.com/entreprises/la-bricole/", "https://zoneboreale.com/entreprises/ferme-lapointe/", "https://zoneboreale.com/entreprises/arboreagro/", "https://zoneboreale.com/entreprises/la-ferme-vegetale/", "https://zoneboreale.com/entreprises/lappetrio/", "https://zoneboreale.com/entreprises/bar-laitier-la-vache-copine/", "https://zoneboreale.com/entreprises/auberge-du-cap-au-leste/", "https://zoneboreale.com/entreprises/epicerieduquartier/", "https://zoneboreale.com/entreprises/nasuco-canada-inc/", "https://zoneboreale.com/entreprises/lactolac/", "https://zoneboreale.com/entreprises/les-bleuets-mistassini/", "https://zoneboreale.com/entreprises/boucherie-pma/", "https://zoneboreale.com/entreprises/le-draveur-cookerie-bar/", "https://zoneboreale.com/entreprises/les-ailes-bergy/", "https://zoneboreale.com/entreprises/la-fournee/", "https://zoneboreale.com/entreprises/le-petrin-bagel-buvette/", "https://zoneboreale.com/entreprises/microbrasserie-du-lac-saint-jean/", "https://zoneboreale.com/entreprises/les-alpagas-de-la-releve/", "https://zoneboreale.com/entreprises/boulangeriefarine/", "https://zoneboreale.com/entreprises/a-lapero-alma/", "https://zoneboreale.com/entreprises/nuvola-pizza-e-focaccia/", "https://zoneboreale.com/entreprises/complexe-touristique-du-bleuet-bleuetiere-st-leon/", "https://zoneboreale.com/entreprises/ferme-luc-dufour/", "https://zoneboreale.com/entreprises/moulin-du-lac/", "https://zoneboreale.com/entreprises/potager-mistook/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/charcuterieperron", "https://www.facebook.com/profile.php?id=100057319523784", "https://www.facebook.com/bouvillonjak", "https://www.facebook.com/boulangerieduroyaume/", "https://www.instagram.com/boulangerieduroyaume/?hl=fr", "https://www.facebook.com/charcuteriefortin/", "https://www.facebook.com/ChocolatsLulu", "https://www.instagram.com/chocolat_lulu_officiel/?hl=fr", "https://www.facebook.com/pages/Chocolaterie-Au-Coeur-Fondant/220868287931847?rf=217439228300751", "https://www.facebook.com/miel.saguenay.lacstjean/", "https://www.facebook.com/FermeAlmasEtMurielle", "https://www.facebook.com/fermetrompesouris/?ref=page_internal", "https://www.facebook.com/boosthe.ca", "https://www.instagram.com/boosthe.ca?fbclid=IwAR2yCqc7AGJd8OVfv23N-TDh501bmTVbH0u8QODwqzGkcrz9SdzuDqJk6p0", "https://www.facebook.com/pages/Les-Serres-Belle-de-jour/349646738833", "https://www.instagram.com/serres_belle.de.jour/?hl=fr", "https://www.facebook.com/jardinsterraterre/", "https://www.facebook.com/jardins.gobeil.5", "https://www.facebook.com/laiteriedelabaie/", "https://www.facebook.com/profile.php?id=61553685561843", "https://www.facebook.com/vergersynergie", "https://www.facebook.com/lejardindescanardsbleus", "https://www.facebook.com/gateauxmb/", "https://www.instagram.com/gateauxmb/?hl=fr", "https://www.facebook.com/profile.php?id=100009836704712", "https://www.facebook.com/vignoblecouchepagane/?fref=ts", "https://www.facebook.com/ferme3j?fref=photo", "https://www.facebook.com/epicerie.larecette/", "https://www.facebook.com/maisondupainchicoutimi", "https://www.facebook.com/vergercamnord/", "https://www.youtube.com/channel/UCgMXgMmbb0qBGIqeftu931g", "https://www.facebook.com/fermevoltige", "http://www.facebook.com/Infoplsj/", "https://www.facebook.com/ChevrierduNord/?fref=ts", "https://www.facebook.com/Chez-Roger-325799867799828/", "https://www.facebook.com/profile.php?id=100083354166983", "https://www.facebook.com/profile.php?id=100095085765288", "https://www.facebook.com/pg/cooperativelackeno/about/?ref=page_internal", "https://www.facebook.com/Gestion-Agricole-Bor%C3%A9ale-2312030025688184/", "https://www.instagram.com/domaine.boreal/", "https://www.facebook.com/Pepiniereducerneau", "https://www.facebook.com/serresdesjardins/", "https://www.facebook.com/LaPaterie", "https://www.facebook.com/Lespetitsjardinsdenormandin", "https://www.instagram.com/ribozome_officiel/", "https://www.facebook.com/ribozomecanada", "https://www.facebook.com/BoucherieJacko", "https://www.facebook.com/pages/Boucherie-Raymond-et-Andre/180596578617040?fref=ts", "https://www.instagram.com/boucherieraymondetandre/", "https://www.facebook.com/boulangeriechambord/", "https://www.facebook.com/fermeruisseauclair", "https://www.facebook.com/Julimagine", "https://www.instagram.com/julimaginegateaux/", "https://www.facebook.com/ApicultureMellonia", "https://www.instagram.com/apiculture_mellonia/", "https://www.facebook.com/FromagerieStLaurent?fref=ts", "https://www.instagram.com/fromageriestlaurent/", "https://www.facebook.com/voiemaltee?fref=ts", "https://www.instagram.com/lavoiemaltee/", "https://www.facebook.com/camerisesbistro", "https://www.facebook.com/ferme3j", "https://www.facebook.com/BrasserieWalkyrie", "https://www.instagram.com/brasseriewalkyrie/", "https://www.facebook.com/profile.php?id=100090581345836", "https://www.facebook.com/vergerdelamistassini/?ref=page_internal", "https://www.facebook.com/Toundralegumes", "https://www.youtube.com/watch?v=f4YtoH-qXrk", "https://www.facebook.com/fermetteaccapella/?ref=page_internal", "https://www.facebook.com/pages/Ferme-Ruisseau-des-Chasseurs/327500780697706", "https://www.facebook.com/FermeHarvey/?epa=SEARCH_BOX", "https://www.facebook.com/pages/Morille-Qubec/193246660743857?fref=ts", "https://www.instagram.com/morillequebec/?hl=fr", "https://www.facebook.com/SIMIA-Chocolat-224655904967999/", "https://www.instagram.com/simiachocolat/", "https://www.facebook.com/Cuitzinemoi", "https://www.instagram.com/cuitzinemoi/?hl=fr", "https://www.facebook.com/pages/LOree-des-Bois/352594671428373?ref=ts", "https://www.instagram.com/domaine_loree_des_bois/?hl=fr", "https://www.facebook.com/fermemonarque/?fref=ts", "https://www.facebook.com/cafemarcrobitaille", "https://www.facebook.com/lescafesdaurelie", "https://www.facebook.com/profile.php?id=100083389920305", "https://www.facebook.com/BougredorCLamonde/?locale=fr_FR", "https://www.facebook.com/LesHerbesDuLac/?fref=ts", "https://www.instagram.com/LesHerbesDuLac?fbclid=IwY2xjawG1dzJleHRuA2FlbQIxMAABHRfYVuRBC1HpnSxUB_3OGvBxl8MEMdWr9WtCX_gozcKHUpNlsG_HAyFgMQ_aem_8IaTJ_ocA_L72CaDqxjJ9A", "https://www.facebook.com/Labrador-Production-110969242698883", "https://www.facebook.com/Verger-M%C3%A9sy-autocueillette-690588687713318/", "https://www.facebook.com/Les-Jardins-Bio-Forestiers-213786232113568", "https://www.facebook.com/profile.php?id=100063781352668", "https://www.instagram.com/saucesetmarinadesdg/", "https://www.facebook.com/lesfleursmaltais/", "https://www.instagram.com/lesfleursmaltais/", "https://www.facebook.com/Le-maracher-des-basses-terres-du-Saguenay-1589794751303725/", "https://www.facebook.com/pages/Jardins-Baielacte/1422606144652738?fref=photo", "https://www.facebook.com/FermeOlac/", "https://www.instagram.com/fermeolac/", "https://www.facebook.com/mercilaterrebio", "https://www.instagram.com/merci_la_terre/?fbclid=IwAR0VL2flkWg3KPdbJZPiuVeXUknJmfarbF7vGRXuB1lL2GIdtVu7-qkeh-Y", "https://www.facebook.com/Ferme-Multi-Fruits-1596909517086908/?ref=page_internal", "https://www.facebook.com/Microlaiterie-Riverin-du-Lac-107951151686588/?ref=page_internal", "https://www.facebook.com/Serres-Dame-Nature-166400450036813/?fref=ts", "https://www.instagram.com/serresdamenature/", "https://www.instagram.com/verger.apipomme?fbclid=IwY2xjawGPE09leHRuA2FlbQIxMAABHVG814lz26qn85jxg0OuWpYEKa552bHkbBMnJE0e7T6Y4rJZafJNw68B-w_aem_LImsz9zaapvwdM6DZxC1Bw", "https://www.facebook.com/profile.php?id=100048920480457", "https://www.facebook.com/bouchardartisanbio/", "https://www.instagram.com/bouchardartisanbio/", "https://www.facebook.com/Fermeaux3soleils/", "https://www.instagram.com/fermeauxtroissoleils/?hl=fr", "https://www.facebook.com/Ferme-Dan-Nature-1652351508176860", "https://www.facebook.com/restaurantsorrento.ca?locale=fr_CA", "https://www.facebook.com/FermeOlofee", "https://www.facebook.com/profile.php?id=61559187061923&locale=fr_CA", "https://www.facebook.com/maraichersveje/?ref=page_internal", "https://www.facebook.com/profile.php?id=61558050771943", "https://www.facebook.com/famillehoude", "https://www.facebook.com/BedonssainsBedonspleins?locale=fr_FR", "https://www.facebook.com/fermeapicoledulac/", "https://www.instagram.com/fermeapicoledulac/", "https://www.facebook.com/profile.php?id=100093876321769", "https://www.facebook.com/fermelaterroise", "https://www.facebook.com/boucherieclaudefortier?fref=ts", "https://www.facebook.com/FermeDePommedeterre/", "https://www.facebook.com/profile.php?id=61554146106442", "https://www.facebook.com/p/Les-Fruits-du-Royaume-et-Fritolac-61560394142895/", "https://www.facebook.com/chezgeorges1960", "https://www.facebook.com/profile.php?id=100093830906887", "https://www.facebook.com/apicurieux", "https://www.instagram.com/apicurieux/", "https://www.youtube.com/watch?v=8DDUmUFHq_g", "https://www.facebook.com/Boulangerie-M%C3%A9dard-197893090276279/", "https://www.facebook.com/Bizz-magasin-dalimentation-saine-179702889942/", "https://www.instagram.com/bizz.coop/?hl=fr", "https://www.facebook.com/chezperronrestaurantboutique", "https://www.facebook.com/ROSELISACHOCOLATE?fref=ts", "https://www.instagram.com/chocolatsroselisabeth/", "https://fr-fr.facebook.com/pepiniereborealis", "https://www.instagram.com/pepiniereborealis/?hl=fr", "https://www.facebook.com/Red-Champagne-Elz%C3%A9ar-Plourde-22192704419", "https://www.facebook.com/fromagerieblackburn/", "https://www.instagram.com/fromagerieblackburn/", "https://www.facebook.com/COOP-IGA-EXTRA-ALMA-1563313493958135/", "https://www.instagram.com/laiterielaroche/?fbclid=IwAR09t3N5MfGksjeOy4sb80Ddpg7HQf5RVsTDYoryZzKvcz3WdR4rw99BLHw", "https://www.facebook.com/Laiterie-Laroche-107822818257513/?ref=page_internal", "https://www.facebook.com/legunord", "https://www.instagram.com/legunord/", "https://www.facebook.com/igacatherineverreault/", "https://www.facebook.com/igaextrachicoutimi", "https://www.instagram.com/levergersdevelours/", "https://www.facebook.com/VergersdeVelours", "https://www.instagram.com/iga_famille_cloutier/?fbclid=IwAR1PsBNbP9CNXqecdrGhACm9_h_viGzNzyYpij2mMgxQ6ESPyj9Ku6l3XB0", "https://www.facebook.com/igafamillecloutier", "https://www.facebook.com/profile.php?id=100094638066248", "https://www.instagram.com/lafabrique1870/", "https://www.facebook.com/igamistassini", "https://www.facebook.com/igalamontagneetfille/", "https://www.facebook.com/profile.php?id=240216906010439&paipv=0&eav=AfZpEsjpXgMMbXgb1dr0W2NQReYlU-LuZNstHcmGbW-DnIz_2YOhLRGrg1-tc5iFMug&_rdr", "https://www.facebook.com/cpelacajolerie/?locale=fr_CA", "https://www.facebook.com/g1yanto", "https://www.instagram.com/eugeneallard/?hl=fr", "https://www.facebook.com/IGAREGNIER", "https://www.facebook.com/IGAREGNIERCHICOUTIMI", "https://www.facebook.com/cidrejolirouge/", "https://www.instagram.com/cidrejolirouge/", "https://www.facebook.com/microbrasserie.pavillon.noir", "https://www.instagram.com/microbrasserie.pavillon.noir/", "https://www.facebook.com/CPE-Aux-Petites-Joies-251563808735933/", "https://www.facebook.com/profile.php?id=100038029237928", "https://www.facebook.com/aubergelecampdebase/?ref=page_internal", "https://www.instagram.com/aubergecampdebase/?hl=fr", "https://www.facebook.com/AubergepresbytereMLV", "https://www.facebook.com/igagraveletfille", "https://www.facebook.com/GroupeTranscol", "https://www.facebook.com/cuisinefusionmeteore", "https://www.instagram.com/cuisinefusionmeteore/?fbclid=IwY2xjawKsStZleHRuA2FlbQIxMABicmlkETFxOHZGSHR2ZHc5TGFvSUh3AR4ZNQsbuWjQgavSI7jCRD3LgEpr6epKi49GQw0OEXulj7-_9vuFh8GdklKIlg_aem_EM1t6AXm-3HX6_feRzGIMQ", "https://www.facebook.com/IGA-EXTRA-St-Hubert-1799579843629119/?fref=ts", "https://www.facebook.com/chassepinte", "https://www.facebook.com/profile.php?id=61557663368499", "https://www.facebook.com/hotellemontagnais", "https://www.instagram.com/lemontagnais?fbclid=IwY2xjawFVJHFleHRuA2FlbQIxMAABHeNLsxGWxYAwEni-kUrvhqqxe8405-UM4mHzwfxNyp09HHfwNDnMi7auGg_aem_eIJvQQeCYjDUuj1E7lKIRw", "https://www.facebook.com/Au-coeur-des-bois-505698669811293/", "https://www.instagram.com/au_coeur_des_bois/?hl=fr", "https://www.facebook.com/TremblayExpress", "https://www.facebook.com/GroupeMorneau", "https://www.facebook.com/aildumoulin/", "https://www.instagram.com/aildumoulin/?hl=fr&fbclid=IwAR0_eZE4tGx25YdlwJ_aeI5v0c_UITQfB960ICzNkPZuTOzc5SXShUVDyBA", "https://www.facebook.com/BoucherieHarvey", "https://www.facebook.com/profile.php?id=100086620583112", "https://www.instagram.com/le_magasin_chassepinte/?fbclid=IwAR2hs182axGTDE46xZT78r7fxSyWw1Eh613adbYC9SU2cLJCQsDqGsaFF7c", "https://www.facebook.com/VerreLime", "https://www.instagram.com/verrelime/", "https://www.facebook.com/cpepetitscailloux", "https://cpecailloux.com/", "http://www.cpecailloux.com", "https://www.cpecailloux.com/index", "https://www.facebook.com/profile.php?id=61554220603292", "https://www.facebook.com/March%C3%A9-Centre-Ville-216489925111855/", "https://www.facebook.com/RestaurantLeBaumier", "https://www.instagram.com/restaurant_le_baumier?fbclid=IwY2xjawGPKdVleHRuA2FlbQIxMAABHUM_1UBotuZO6X-k6TEJR4QRTV0BvuS29O1vQuCNBcjzJpb7SpIQS6XHzQ_aem_2x9K0TAyBSYV5divxI3zPw", "https://www.facebook.com/profile.php?id=61576990335711", "https://www.instagram.com/produits_alimentaires_pag/", "https://www.facebook.com/cpelacajolerie", "https://www.facebook.com/horizonculinaire", "https://www.instagram.com/horizonculinaire/", "https://www.facebook.com/trottineurs", "https://www.facebook.com/pages/Ferme-Tournevent/446508558817766?fref=ts", "https://www.instagram.com/fermetournevent/?hl=fr", "https://www.facebook.com/profile.php?id=61559332945963", "https://www.facebook.com/-Contre-Vent-456285584476526/", "https://www.facebook.com/MaxiChicoutimi", "https://www.facebook.com/MaxiChicoutimiNord", "https://www.facebook.com/MaxiCieJonquiere", "https://www.facebook.com/MaxiLaBaie/", "https://www.facebook.com/MaxiPontNord", "https://www.facebook.com/lachillee", "https://www.instagram.com/Achillea_millefolium?fbclid=IwY2xjawGPJulleHRuA2FlbQIxMAABHclOcZ_UqUisBR-2TjKqzbgi4lheidVi_X5N24YU4TY54dNlcQO7uP9h4w_aem_0EBINfb44TQgfJotb5B0Mw", "https://www.facebook.com/MaxiRoberval", "https://www.facebook.com/Maxichicoutimiroussel/", "https://www.facebook.com/p/centre-de-la-petite-enfance-les-picassos-de-l%C3%AEle-100038111307071/", "https://www.facebook.com/people/Centre-de-la-petite-Enfance-Les-Picassos-de-l%C3%AEle/100038111307071/", "https://www.facebook.com/maximistassini", "https://www.facebook.com/lacuisineresto/", "https://www.instagram.com/lacuisineresto/", "https://www.facebook.com/maxiciechicoutimi/", "https://www.facebook.com/delicesdulacsaintjean/", "https://www.instagram.com/delicesdulacsaintjean/?hl=fr", "https://www.facebook.com/MetroAlma", "https://www.facebook.com/microbrasserielecoureurdesbois", "https://www.instagram.com/micro.lecoureurdesbois/?hl=fr", "https://www.facebook.com/Sauces-Bobby-1491883711092867/?fref=ts", "https://www.facebook.com/profile.php?id=100063698227100", "https://www.facebook.com/profile.php?id=100069353546452", "https://www.facebook.com/metroPlusChicoutimi", "https://www.facebook.com/ViandesCDS/", "https://www.facebook.com/profile.php?id=100057079735117", "https://www.facebook.com/metrodboutin", "https://www.facebook.com/profile.php?id=100090574821073", "https://www.instagram.com/aux_fleurs_ensorcelees/#", "https://www.facebook.com/metroPlusJonquiere", "https://www.facebook.com/Metrothibeault", "https://www.facebook.com/profile.php?id=100057101993625", "https://www.facebook.com/lepetitmondedesartsetdessports", "https://www.facebook.com/lamaisondubleuet", "https://www.instagram.com/lamaisondubleuet/", "https://www.facebook.com/RLEnergies", "https://www.facebook.com/pages/La-Bergerie-du-Nord/262556205958?fref=ts", "https://www.instagram.com/labergeriedunord/?hl=fr", "https://fr-ca.facebook.com/cafecambio", "https://www.facebook.com/Garderienature", "https://www.facebook.com/superc.ca", "https://www.instagram.com/superc.ca", "https://www.facebook.com/lespetitsgateauxdemaman2022", "https://www.facebook.com/lejardindesdefricheurs/", "https://www.instagram.com/lejardindesdefricheurs/", "https://www.facebook.com/Mermax-inc-10150091823160604/?fref=ts", "https://www.facebook.com/boucheriechezmanon1/", "https://www.facebook.com/cpebcdeslutins", "https://www.facebook.com/CPEAlouette", "https://www.facebook.com/CPEBCLabambinerie/", "https://www.facebook.com/fromagerieperron/", "https://www.instagram.com/fromagerieperron/", "https://www.facebook.com/Epflachance", "https://www.facebook.com/profile.php?id=100063594608030", "https://www.facebook.com/profile.php?id=100039953845124#", "https://www.facebook.com/profile.php?id=100057152482188", "https://www.facebook.com/serreslouiseturcotte", "https://www.facebook.com/blancmeringue/?ref=page_internal", "https://www.facebook.com/Ferme-Sylvain-Tremblay-1870796069832934/", "https://www.facebook.com/missgateau1", "https://www.instagram.com/nathaliemissgateaux/?hl=fr#:~:text=Miss%20g%C3%A2teaux%20(%40nathaliemissgateaux)%20%E2%80%A2%20Instagram%20photos%20and%20videos", "https://www.facebook.com/pages/Bleuet%20Nordic%20Inc/1302374633112969/", "https://www.facebook.com/fromage.lehmann", "https://www.facebook.com/bleuetsauvagelacsaintjean", "https://www.facebook.com/Augrosbleuet", "https://www.facebook.com/p/Usines-de-cong%C3%A9lation-du-groupe-Bleuets-Sauvages-du-Qu%C3%A9bec-100063470801558/", "https://www.facebook.com/Usine-de-cong%C3%A9lation-de-St-Bruno-Inc-1525623324190746/", "https://www.facebook.com/lesaintfut", "https://www.instagram.com/lesaintfut/", "https://www.facebook.com/Bleu-Nature-1538092519849333/", "https://www.facebook.com/Ferme-tournesol-874712975891953/?fref=ts", "https://www.instagram.com/lafermetournesol/?igsh=OGQ5ZDc2ODk2ZA%3D%3D", "https://www.facebook.com/temakichicoutmi", "https://www.instagram.com/explore/locations/3808299/", "https://www.facebook.com/profile.php?id=100069835068516", "https://www.facebook.com/pages/Fromagerie-LAutre-Versant/309911585741833", "https://www.facebook.com/fgiroly", "https://www.facebook.com/DeniseTheriault2016", "https://www.facebook.com/AlimentationNouvelleOrleans", "https://www.instagram.com/alimentationnouvelleorleans/", "https://www.facebook.com/bergeriepetitsaguenay", "https://www.facebook.com/fermelavoie/?ref=page_internal", "https://www.facebook.com/servicealimentairegordon", "https://www.instagram.com/servicealimentairegordon/", "https://www.facebook.com/Ferme-le-Filon-104695365578937", "https://www.instagram.com/ferme_le_filon/?igshid=ZmRlMzRkMDU%3D&fbclid=IwAR1UzJ7FX4k3Y_hCO5Yo02xDV14tD34460Eam_G5GDm9jTWM2H5lqcdGtiY", "https://www.facebook.com/amour.liquide", "https://www.instagram.com/amour.liquide/#", "https://www.facebook.com/lesalpagaslala/?fref=ts", "https://www.instagram.com/les_alpagas_lala/", "https://www.facebook.com/fermelesmoutaines/", "https://www.facebook.com/MagiSenc/", "https://www.facebook.com/PropurSaintAmbroise", "https://www.facebook.com/profile.php?id=61561365418804", "https://www.facebook.com/rebelkarma", "https://www.facebook.com/fermevilloise/?modal=admin_todo_tour", "https://www.instagram.com/ferme_villoise/?hl=fr", "https://www.facebook.com/microlionbleu/?fref=ts", "https://www.instagram.com/microbrasserielionbleu/?hl=fr", "https://www.facebook.com/profile.php?id=100063722401875", "https://www.facebook.com/Kaochocolat/info/?tab=overview", "https://www.instagram.com/kaochocolat_inc/", "https://www.instagram.com/mermax2025/", "https://www.facebook.com/camerisesauvergerdesgrandsducs/", "https://www.facebook.com/kwecocktails", "https://www.instagram.com/kwecocktails/", "https://www.facebook.com/distilleriedufjord/", "https://www.instagram.com/distilleriedufjord/?hl=fr", "https://www.facebook.com/laboucaneriedhenri/?ref=hl", "https://www.instagram.com/laboucaneriedhenri/", "https://www.facebook.com/Produits-alimentaires-Bouchard-Officiel-105877274930099", "https://www.facebook.com/bouchequirie/?locale=fr_CA", "https://www.instagram.com/bleu_vallin/", "https://www.facebook.com/profile.php?id=100093646145286&locale=fr_FR", "https://www.facebook.com/Laboucherienadeau/?ref=br_rs", "https://www.facebook.com/gitefermeaujardinpotager", "https://www.facebook.com/Fraises-O-Bec-1871951489792892/", "https://www.facebook.com/lacabaneaglaces", "https://www.instagram.com/lacabaneaglaces/?fbclid=IwAR1SgmbRnKDBYZMqtT7wpzbRyYZAFvlb8XxMyryLKqK8g98hwZVQ0mCa04k", "https://www.facebook.com/lachevreriefillesduroy/?ref=page_internal", "https://www.facebook.com/pages/Fromagerie-La-Normandinoise-inc/119572501429907?fref=ts", "https://www.instagram.com/fromagerielanormandinoise/", "https://www.facebook.com/pages/Fromagerie-Mdard/149769121741754", "https://www.facebook.com/ChocolateriedesPeres?fref=ts", "https://www.instagram.com/chocodesperes/?hl=fr", "https://www.facebook.com/ansesaintjean", "https://www.facebook.com/pages/Fromagerie-Boivin-Page-Officielle/341446215937955?fref=ts", "https://www.instagram.com/explore/locations/294116937/la-fromagerie-boivin/?hl=fr", "https://www.facebook.com/jardinscullion", "https://www.instagram.com/jardinscullion/?hl=fr", "https://www.facebook.com/jardinsdelasources/", "https://www.instagram.com/jardinsdelasource/", "https://www.facebook.com/la.Ferme.a.lEnvers/photos", "https://www.facebook.com/Les-Jardins-Mistouk-432623437107238", "https://www.facebook.com/tetesdecochons", "https://www.facebook.com/forestiermaraicher/?fref=ts", "https://www.facebook.com/bonsdelices2002", "https://www.facebook.com/lespaysansdufjord/?ref=page_internal", "https://www.instagram.com/lespaysansdufjord/", "https://www.facebook.com/petitefermeaorace", "https://www.facebook.com/jardinsstmartin", "https://www.facebook.com/plateformesolidar", "https://www.facebook.com/Les-jardins-d-%C3%89lo%C3%AFse-711904989670503/", "https://www.facebook.com/agneaudufjord", "https://www.instagram.com/la_vieille_ferme/", "https://www.facebook.com/herboreal", "https://www.instagram.com/herboreal_officiel/?hl=fr", "https://www.facebook.com/SummumChicout/", "https://www.facebook.com/Les-Jardins-de-Sophie-187774654597050/?fref=ts", "https://www.instagram.com/lesjardinsdesophie/", "https://www.facebook.com/profile.php?id=61566555968031", "https://www.facebook.com/lesmaraicherspotvin/?locale=fr_CA", "https://www.instagram.com/lesmaraicherspotvin/", "https://www.facebook.com/profile.php?id=100088962977177", "https://www.facebook.com/domainedelarochealeperviere/", "https://www.facebook.com/decoupelinelandreville/", "https://www.facebook.com/Lesmielsraphael/", "https://www.facebook.com/pages/category/Farm/Potager-Grandmont-673337836131822/", "https://www.instagram.com/potager.grandmont/", "https://www.facebook.com/Pastillesaumiel", "https://www.instagram.com/pastillesaumielcharbonneau/?fbclid=IwAR35SHApnfdO0AVCvk-NfzDsF8ca7WlVG1tHp39XoAX_MAxQ18pOlzD0He8", "https://www.facebook.com/enpleinchamps/", "https://www.facebook.com/SaucesDamn", "https://www.instagram.com/saucesdamn/", "https://www.facebook.com/PieBraque", "https://www.instagram.com/piebraquemicrobrasserie/?hl=fr", "https://www.facebook.com/Boulangeriefc", "https://www.facebook.com/profile.php?id=100057357704148", "https://www.facebook.com/profile.php?id=100085366867342&locale=fr_CA", "https://www.facebook.com/lessaucesdufjord/?ref=page_internal", "https://www.facebook.com/Microbrasserie-Riverbend-1140437422657517/timeline/", "https://www.instagram.com/microriverbend/?hl=fr", "https://www.facebook.com/marchepublicsaintgedeon", "https://www.facebook.com/Aux-Bons-Jardins-1591989361121868/", "https://www.facebook.com/mielboreal/", "https://www.instagram.com/mielboreal/", "https://www.facebook.com/pages/Miel-des-Ruisseaux/251595328190290?fref=ts", "https://www.mieldesruisseaux.com", "https://www.facebook.com/menuverger", "https://www.instagram.com/menuverger/reels/", "https://www.facebook.com/boucheriesleschefsroberval", "https://www.facebook.com/Poissonnerie.Detail/", "https://www.facebook.com/mielpicard", "https://www.facebook.com/Marchedicietdailleurs", "https://www.facebook.com/Les-Jardins-de-St-F%C3%A9licien-283153712099244", "https://www.facebook.com/pages/Caf%C3%A9-Pausematic/273097279506805?fref=photo", "https://www.facebook.com/p/Restaurant-Dixie-Et-Paul-100063660575372/?locale=fr_CA", "https://www.facebook.com/QueBeclava/?ref=page_internal", "https://www.instagram.com/quebeclava/?hl=fr", "https://www.facebook.com/OH-MAIL-MAIL-115222387019775/", "https://www.instagram.com/oh_mail_mail/?hl=fr", "https://www.facebook.com/Micro-pousses-et-cie-198030850755565/", "https://www.facebook.com/laboiteasucreboulangerie", "https://www.instagram.com/laboiteasucre_boulangerie?fbclid=IwY2xjawOb9cxleHRuA2FlbQIxMABicmlkETF5RnVFZ09GTUZ0OXhtUXBRc3J0YwZhcHBfaWQQMjIyMDM5MTc4ODIwMDg5MgABHkCX2FjJtJgLkyAwmjan8kQ28fOjhI6oP3KBwMbCVvmkHgsn07lLbjQ8dW7V_aem_po2zRlNvOhZF33cfCvkeDQ", "https://www.facebook.com/Caf%C3%A9-Chaga-Bor%C3%A9al-1406406386327028/timeline/", "https://www.instagram.com/cafechagaboreal/?hl=fr", "https://www.facebook.com/LeViennois/", "https://www.instagram.com/boul.patis.leviennois/?hl=fr", "https://www.facebook.com/boulangerielesage", "https://www.facebook.com/champignonboreal/", "https://www.instagram.com/champignon_boreal/?hl=fr", "https://www.facebook.com/LaMaisonGourmande", "https://www.instagram.com/maisongourmande.dolbeau/", "https://www.facebook.com/par3latablee", "https://www.facebook.com/cetrobonbon/?ref=page_internal", "https://www.instagram.com/cetrobonbon/?hl=fr", "https://www.facebook.com/cosmolyo", "https://www.instagram.com/cosmo_lyo/", "https://www.facebook.com/profile.php?id=100063668464307", "https://www.instagram.com/manob1962/", "https://www.facebook.com/camerisecesame", "https://www.instagram.com/cesame.ca/", "https://www.facebook.com/depanneurdufjord/", "https://www.facebook.com/Cerfs-Rouges-Michaud-109809507485881/?ref=page_internal", "https://www.facebook.com/CouvoirChicoutimi", "https://www.facebook.com/centrevillearvida", "https://www.facebook.com/Cornet-Givr%C3%A9-109539577444898/", "https://www.facebook.com/Cerfs-du-Royaume-109688954100295/", "https://www.facebook.com/labastille.qc.ca/", "https://www.facebook.com/invasionsucree", "https://www.instagram.com/sweet_invaders", "https://www.facebook.com/pages/Choco-Accro/147859558562443?sk=info", "https://www.facebook.com/lachouape?fref=ts", "https://www.instagram.com/lachouape/", "https://www.facebook.com/profile.php?id=100090987758069", "https://www.facebook.com/profile.php?id=61576580398144", "https://www.facebook.com/coffretsduroyaume/", "https://www.instagram.com/coffretsduroyaume/?hl=fr", "https://www.facebook.com/profile.php?id=100063654426392", "https://www.facebook.com/LExode-Caf%C3%A9-251825461606335/?fref=ts", "https://www.instagram.com/lexodecafe/?hl=fr", "https://www.facebook.com/ibride.cidre.nature?paipv=0&eav=AfbXOccXnJM7ZVH0oonVTC-65ubIhV7K2AFDdSZc_q7OmJ61-qrUtneCz33yWA-F9pA&_rdr", "https://www.instagram.com/ibride.cidre.nature/", "https://www.facebook.com/Pearsoncomptoirgourmet", "https://www.instagram.com/les_chocolats_pearson/?hl=fr", "https://www.facebook.com/Les-Caf%C3%A9s-Dominic-St-Pierre-284239303246/", "https://www.facebook.com/brasserieportalfred", "https://www.instagram.com/explore/locations/112690566819350/brasserie-port-alfred/", "https://www.facebook.com/rivieremistouk", "https://www.facebook.com/lamoissondor1093?locale=fr_CA", "https://www.facebook.com/canadasauce", "https://www.instagram.com/canadasauce/", "https://www.facebook.com/Bleueti%C3%A8re-LAnse-aux-bleuets-235522637065968/", "https://www.facebook.com/Domaine-Carpe-Diem-102324225376457/?ref=page_internal", "https://www.facebook.com/arvidaroasting/", "https://www.instagram.com/arvidaroasting/?hl=fr", "https://www.facebook.com/Bleuetire-Saguenoise-1562218187436181/", "https://www.facebook.com/alimentsfabbrica", "https://www.instagram.com/alimentsfabbrica/", "https://www.facebook.com/pages/Makabon/114788692052640?fref=ts", "https://www.facebook.com/profile.php?id=61563704051352&locale=fr_CA", "https://www.facebook.com/salsasipddr", "https://www.facebook.com/vergerlabonbonniere/", "https://www.facebook.com/jardindemarguerite", "https://www.facebook.com/anarchoux", "https://www.facebook.com/pages/Ferme-Eloise/313408719002741", "https://www.facebook.com/pages/%C3%80-lOr%C3%A9e-des-Champs/180619915303035", "https://www.facebook.com/profile.php?id=100083063056209", "https://www.instagram.com/explore/locations/106505278714654/le-saint-creme/", "https://www.facebook.com/profile.php?id=61558536504479", "https://www.facebook.com/JMBouduc", "https://www.facebook.com/a.rosedesvents", "https://www.instagram.com/a.rosedesvents/", "https://www.facebook.com/lesvinaigrettesvio/", "https://www.facebook.com/SavonnerieAuPaysDesBleuets/?ref=page_internal", "https://www.facebook.com/obatillage", "https://www.facebook.com/pages/Salon-de-la-viande-Salaison-Besson/204730189609394?fref=ts", "https://www.facebook.com/p/CPE-Gari-Gatou-100057500558172/?locale=fr_CA", "https://www.facebook.com/pg/congelerieheritier/about/?ref=page_internal", "https://www.facebook.com/pages/Fraisire-Biologique-Chambord/478774735535710", "https://www.facebook.com/profile.php?id=61571622524023", "https://www.facebook.com/Les-Serres-Arc-en-ciel-104894501064007", "https://www.facebook.com/lesvergersbleus/", "https://www.facebook.com/pages/O-Gelato-Cacao/188823331158859", "https://www.instagram.com/ogelatoetcacao/", "https://www.facebook.com/bercee.micro", "https://www.instagram.com/bercee.micro/", "https://www.facebook.com/potagerfleuri/", "https://www.facebook.com/Rosechocola/", "https://www.facebook.com/Patisserie-Ladouche-427644490708676/", "https://www.instagram.com/patisserieladouche/", "https://www.facebook.com/hydromelvaleomiel", "https://www.facebook.com/vegetolab", "https://www.facebook.com/patisseriemergeay", "https://www.facebook.com/cooperativedesolidarite.nordbio/?ref=page_internal", "https://www.instagram.com/coopnordbio/?igshid=ZmRlMzRkMDU%3D&fbclid=IwAR2zvlcUQqfx_ZpiuQON0WRJnKdRYh871-FUa55QBEC17-Cq9zAOCEhpT_o", "https://www.facebook.com/Les-Jardins-du-Saguenay-1440843382891507", "https://www.facebook.com/Domainedoscar", "https://www.instagram.com/domaine_doscar/", "https://www.facebook.com/verifruit.ca", "https://www.instagram.com/verifruit/", "https://www.facebook.com/mieleuseenchef", "https://www.facebook.com/profile.php?id=100094697588864", "https://www.facebook.com/PenseeSauvageDeStacy", "https://www.facebook.com/profile.php?id=100057442210440", "https://www.facebook.com/BarbeNoireVF/?ref=page_internal", "https://www.instagram.com/barbenoirebb/?hl=fr", "https://www.instagram.com/restochezbb/", "https://www.facebook.com/RestoChezBebe", "https://www.facebook.com/ChezTurcotte", "https://www.facebook.com/fermdaniro/?ref=page_internal", "https://www.facebook.com/pages/Ferme-la-Rouquine/154657151238268", "https://www.instagram.com/fermelarouquine/", "https://www.facebook.com/profile.php?id=100064176609273", "https://www.facebook.com/profile.php?id=61576623914434", "https://www.facebook.com/laffamepretamanger?locale=fr_CA", "https://www.facebook.com/Les-mara%C3%AEchers-Harfo-2294317167253724", "https://www.facebook.com/lesptitsmidis", "https://www.facebook.com/moissonslsj?locale=fr_CA", "https://www.facebook.com/saveursverger", "https://www.facebook.com/lecafemaraiche?locale=fr_CA", "https://www.instagram.com/lecafemaraicher/", "https://www.facebook.com/Entreprises.Fortin.Tremblay", "https://www.facebook.com/profile.php?id=100071657956891", "https://www.facebook.com/profile.php?id=100063813193276", "https://www.facebook.com/profile.php?id=61557841487404", "https://www.facebook.com/profile.php?id=61565683813919", "https://www.facebook.com/profile.php?id=61560397945198", "https://www.facebook.com/Miel-des-Vallons-152259254948977/", "https://www.instagram.com/explore/locations/152259254948977/miel-des-vallons/", "https://www.facebook.com/Alpaga-Bersi-151037988336378/?fref=ts", "https://www.instagram.com/alpagabersi/", "https://www.facebook.com/VignobleLaBonteDiVigne/", "https://www.facebook.com/profile.php?id=100057251149541", "https://www.facebook.com/Ferme-T-McNicoll-100785105461132/", "https://www.facebook.com/aureletcompagnie.distillerienordique", "https://www.instagram.com/distillerie_aureletcompagnie/", "https://www.facebook.com/Les-Jardins-chez-Bettez-111945437019636/", "https://www.instagram.com/jardins_chez_bettez/", "https://www.facebook.com/boeufalfred", "https://www.facebook.com/%C3%89rabli%C3%A8re-au-Sucre-dOr-155486881177592/", "https://www.instagram.com/erabliereausucredor/?hl=fr", "https://www.facebook.com/Ferme-Bouchard-et-filles-757766434379899", "https://www.instagram.com/ferme_bouchard_et_filles/", "https://www.facebook.com/Verger-Du-Paradis-112027183805957/", "https://www.instagram.com/verger_du_paradis_bio", "https://www.facebook.com/Les-jardins-de-la-montagne-160508420657682/?ref=aymt_homepage_panel", "https://www.instagram.com/jdlm28/", "https://www.facebook.com/camerisemilou", "https://www.instagram.com/camerise_milou/", "https://www.facebook.com/Ferme-Les-Bons-Plans-109515241446157", "https://www.facebook.com/ErmitageSaintAntoineHebergement/", "https://www.facebook.com/fermebenoitetdianegilbertetfilsinc", "https://www.facebook.com/profile.php?id=100063570550506", "https://www.facebook.com/vitedespechessiteofficiel", "https://www.facebook.com/Lanvert-112393923619794/", "https://www.facebook.com/rubisrouge04/", "https://www.facebook.com/BarLaitierPinocchio", "https://www.instagram.com/barlaitier/?hl=fr", "https://www.facebook.com/Épicerie-communautaire-Le-Garde-Manger-729543110488883/?ref=br_rs", "https://www.facebook.com/marchebourget/", "https://www.facebook.com/magasingeneralduquai?locale=fr_CA", "https://www.instagram.com/magasin_general_du_quai/", "https://www.facebook.com/chocolatpralinesetcacao/?ref=page_internal", "https://www.facebook.com/profile.php?id=100069518985358", "https://www.facebook.com/MuseeDeLaVieilleFromageriePerron", "https://www.facebook.com/Notre-vraie-Nature-282604992577325", "https://www.youtube.com/channel/UCjBMaPxjfhR2Qc-i5kyLF2w", "https://www.facebook.com/Micro.StHo.Pub.Le.Laser", "https://www.instagram.com/microstho/?hl=fr", "https://www.facebook.com/passioncamerise/", "https://www.facebook.com/hopera.ca", "https://www.instagram.com/hopera_le_resto/", "https://www.facebook.com/profile.php?id=100044452466478", "https://www.facebook.com/culturessoleilrouge/?ref=page_internal", "https://www.facebook.com/momesdufjord", "https://www.instagram.com/lesmomesdufjord/", "https://www.facebook.com/chambordais.ca", "https://www.facebook.com/Camerises.Mistouk?ref=ts&fref=ts", "https://www.instagram.com/camerisesmistouk/?hl=fr", "https://www.facebook.com/profile.php?id=61567941974096", "https://www.facebook.com/waltercafetorrefaction", "https://www.instagram.com/walter.cafe/", "https://www.facebook.com/cuisinesoleilfr", "https://www.linkedin.com/company/nutrinor/?originalSubdomain=ca", "https://www.facebook.com/nutrinorproduitslaitiers/", "https://www.facebook.com/MGAlma", "https://www.facebook.com/lacuisineatom", "https://www.facebook.com/BSHJonquiere", "https://www.facebook.com/profile.php?id=100054559834138", "https://www.instagram.com/l_epoke_boreale/?fbclid=IwY2xjawJZSy1leHRuA2FlbQIxMAABHZacdi5QArFtQ1oGwg_IIICY94CD4HyagnmuW3MfgLQs_JGqUWNcY5jGgg_aem_-tAAtdBWO3lC-CrDXXRsvg#", "https://www.facebook.com/hallesdubleuet/", "https://www.facebook.com/profile.php?id=100076857422252", "https://www.facebook.com/Bergerie-L%C3%A9tulip-104601268304126/", "https://www.facebook.com/profile.php?id=100045129174438", "https://www.instagram.com/bistro.d/?hl=fr-ca", "https://www.facebook.com/Les-Aliments-du-Royaume-inc-100619185369144/", "https://www.facebook.com/labricole.co/?ref=page_internal", "https://www.instagram.com/labricole.co/", "https://www.facebook.com/profile.php?id=100083407143901", "https://www.facebook.com/Arboreagro", "https://www.facebook.com/LaFermeVegetale/", "https://www.instagram.com/la_ferme_vegetale?fbclid=IwZXh0bgNhZW0CMTAAAR05ZlBbrSe1778mw0La-CPOj6aiIrKtdD3pXZKvjsqI5Y_tTHF7w9wsjps_aem_Ab0HmXsM4V0xj6rcl8dtsZDwwzGEZL1Luem2E78JACR2I3c77i9JpGea1nXRdJsuUFYKBub1LyUnCNzurE6eIRt8", "https://www.facebook.com/appetrio", "https://www.facebook.com/barlaitierlavachecopine", "https://www.facebook.com/capauleste", "https://www.instagram.com/aubergeducapauleste", "https://www.facebook.com/profile.php?id=61572531166731", "https://www.facebook.com/lesfudgeslaurasecord.ca/", "https://www.instagram.com/les_fudges_laura_secord/", "https://www.facebook.com/lactofermentation.lactolac", "https://www.facebook.com/BoucheriePMA/", "https://www.facebook.com/ledraveurroberval", "https://www.instagram.com/draveurcookerie/?hl=fr", "https://www.facebook.com/profile.php?id=61587320101299", "https://www.facebook.com/LaFourneeStFelicien", "https://www.facebook.com/profile.php?id=61571842599364", "https://www.instagram.com/lepetrinbageletbuvette", "https://www.facebook.com/Microdulac?fref=ts", "https://www.instagram.com/microdulac/?hl=fr", "https://www.facebook.com/Ferme-Alpaga-de-la-Rel%C3%A8ve-566552486809887", "https://www.instagram.com/fermealpagadelareleve/", "https://www.facebook.com/Merci-la-mie-boulangerie-artisanale-106883500800962/", "https://www.instagram.com/boulangerie.farine/?hl=fr", "https://www.facebook.com/profile.php?id=61569333689581", "https://www.instagram.com/nuvoladelaxe/", "https://www.facebook.com/nuvoladelaxe", "https://www.facebook.com/ComplexeTouristiqueDuBleuet?fref=ts", "https://www.facebook.com/luc.dufour.965", "https://www.facebook.com/moulindulacnormandin", "https://www.facebook.com/profile.php?id=100057322815701"], "postal_prefix": "G8B", "phone": "418 251-3131", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay", "Laurentides", "Côte-Nord", "Montréal", "Lanaudière"]}
131 133 {"domain": "artbeton.ca", "urls": ["https://www.artbeton.ca/"], "names": ["Les Enduits Art Béton - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/les-enduits-art-beton-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G1J", "phone": "514 847-9799", "regions_mentioned": []}
@@ -142,6 +144,7 @@
142 144 {"domain": "artisansduvitrail.com", "urls": ["https://artisansduvitrail.com/fr/categorie-produit/soldes"], "names": ["Artisans du Vitrail (Canadian Stained Glass Warehouse)"], "sources": ["search_sweep_manuf"], "source_pages": ["vitrail québécois atelier boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec City, QC"]}
143 145 {"domain": "artisanssucriers.wixsite.com", "urls": ["https://artisanssucriers.wixsite.com/erabliereartisans"], "names": ["L’Érablière des Artisans Sucriers"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/lerabliere-des-artisans-sucriers/"], "socials": ["https://www.facebook.com/%C3%89rabli%C3%A8re-des-Artisans-Sucriers-434112130472022/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/lerabliere-des-artisans-sucriers/", "https://twitter.com/intent/tweet?text=L%26rsquo%3B%C3%89rabli%C3%A8re+des+Artisans+Sucriers https://www.erabledici.ca/fr/erabliere/lerabliere-des-artisans-sucriers/"], "postal_prefix": "J0E", "phone": "450 578-0123", "regions_mentioned": ["Montérégie"]}
144 146 {"domain": "artistblacksmithschool.com", "urls": ["https://www.artistblacksmithschool.com/", "https://www.artistblacksmithschool.com/vouchers"], "names": ["ÉCONOMUSÉE® du forgeron"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-du-forgeron-2/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/hotmilkforge", "https://www.instagram.com/hotmilkforge/?hl=en"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
147 +{"domain": "artpublic.ca", "urls": ["https://artpublic.ca/contact"], "names": ["Infravert (Louis Dumontier)", "Infravert (Ariel Dumontier)"], "sources": ["search_sweep_cmaq"], "source_pages": ["Infravert Louis Dumontier métallier d'art québec", "Infravert Ariel Dumontier métallier d'art québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Laval, QC"]}
145 148 {"domain": "artsvitrail.com", "urls": ["https://www.artsvitrail.com"], "names": ["Jocelyne Grondin Arts & Vitrail"], "sources": ["search_sweep_manuf"], "source_pages": ["vitrail québécois atelier boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Chapais, QC"]}
146 149 {"domain": "arvidaroasting.com", "urls": ["https://www.arvidaroasting.com/", "http://www.arvidaroasting.com", "https://www.arvidaroasting.com/collections/all"], "names": ["Arvida Roasting Co.", "Arvida Roasting Co"], "sources": ["search_sweep_food", "zoneboreale"], "source_pages": ["torréfacteur café artisanal boutique en ligne Saguenay Lac-Saint-Jean", "https://zoneboreale.com/entreprises/arvida-roasting-co/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/arvidaroasting/", "https://www.instagram.com/arvidaroasting/?hl=fr"], "postal_prefix": "G7X", "phone": "581 447-6250", "regions_mentioned": ["Saguenay–Lac-Saint-Jean", "Lac-Saint-Jean", "Saguenay"]}
147 150 {"domain": "asdusmokedmeat.com", "urls": ["https://www.asdusmokedmeat.com"], "names": ["As du smoked meat"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/as-du-smoked-meat"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J5W", "phone": null, "regions_mentioned": ["Lanaudière"]}
@@ -149,7 +152,10 @@
149 152 {"domain": "association-pieddesmonts.com", "urls": ["https://www.association-pieddesmonts.com/"], "names": ["Association Plein Air Secteur Pied des Monts"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/association-plein-air-secteur-pied-des-monts"], "socials": ["https://www.facebook.com/share/1NZquaHshA/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saguenay"]}
150 153 {"domain": "astroblemecharlevoix.org", "urls": ["https://www.astroblemecharlevoix.org/"], "names": ["Observatoire de l'Astroblème"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/observatoire-de-l-astrobleme"], "socials": ["https://www.youtube.com/watch?v=9ZVvPW1yBPo", "https://www.facebook.com/observatoirescharlevoix/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G5A", "phone": null, "regions_mentioned": ["Saguenay"]}
151 154 {"domain": "asymmetricbydesign.com", "urls": ["https://asymmetricbydesign.com/"], "names": ["Asymmetric by Design"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/asymmetric-by-design"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H4A", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
152 −{"domain": "atelier-b.ca", "urls": ["http://atelier-b.ca", "https://atelier-b.ca"], "names": ["Atelier b - CMAQ", "atelier b"], "sources": ["lesproduitsduquebec_ent", "search_sweep_urban"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-b-cmaq", "marque montréalaise vêtements boutique en ligne fabriqué à Montréal"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
155 +{"domain": "atelier-b.ca", "urls": ["http://atelier-b.ca", "https://atelier-b.ca"], "names": ["Atelier b - CMAQ", "atelier b (Anne-Marie Laflamme)", "atelier b (Catherine Métivier)", "atelier b"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq", "search_sweep_urban"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-b-cmaq", "atelier b Anne-Marie Laflamme Catherine Métivier couturier québec", "marque montréalaise vêtements boutique en ligne fabriqué à Montréal"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Montréal, QC"]}
156 +{"domain": "atelier-du-patrimoine.ca", "urls": ["https://www.atelier-du-patrimoine.ca/%C3%A0-propos-de-nous/notre-%C3%A9quipe"], "names": ["ExpertiseAMG inc. - Restauration du Patrimoine"], "sources": ["search_sweep_cmaq"], "source_pages": ["ExpertiseAMG Ann Marlène Gagnon doreur peintre décorateur québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Stanislas-de-Champlain, QC"]}
157 +{"domain": "atelier-letabli.ca", "urls": ["https://atelier-letabli.ca/notre-histoire"], "names": ["Atelier l'Établi"], "sources": ["search_sweep_cmaq"], "source_pages": ["Atelier l'Établi Jean-François Lachance menuisier d'art québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
158 +{"domain": "atelier-martin-gauthier.com", "urls": ["http://atelier-martin-gauthier.com/"], "names": ["Flèche Atelier du patrimoine"], "sources": ["search_sweep_cmaq"], "source_pages": ["Flèche Atelier du patrimoine Martin Gauthier sculpteur québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Centre-du-Québec, QC"]}
153 159 {"domain": "atelier140.ca", "urls": ["https://atelier140.ca/"], "names": ["Atelier 140 Ébénisterie"], "sources": ["search_sweep_nonfood"], "source_pages": ["ébénisterie meubles québécois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Centre-du-Québec"]}
154 160 {"domain": "atelier1ermai.com", "urls": ["https://www.atelier1ermai.com/fr"], "names": ["1ER MAI - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/1er-mai-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
155 161 {"domain": "atelierbalsam.com", "urls": ["https://atelierbalsam.com/en/collections/chandelles-parfumees"], "names": ["Atelier Balsam"], "sources": ["search_sweep_nonfood"], "source_pages": ["chandelles bougies artisanales Bas-Saint-Laurent boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)"]}
@@ -157,6 +163,7 @@
157 163 {"domain": "atelierboisetcie.ca", "urls": ["https://www.atelierboisetcie.ca"], "names": ["Atelier Bois & Cie"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-bois-cie"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J1Z", "phone": "514 847-9799", "regions_mentioned": []}
158 164 {"domain": "ateliercanopee.ca", "urls": ["https://ateliercanopee.ca/"], "names": ["Atelier Canopée - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-canopee-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G5M", "phone": "514 847-9799", "regions_mentioned": []}
159 165 {"domain": "ateliercharlotte.com", "urls": ["https://www.ateliercharlotte.com/"], "names": ["Charlotte! Atelier/Boutique et sa Petite Place d'art"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/charlotte-atelier-boutique-et-sa-petite-place-dart"], "socials": ["https://www.facebook.com/Charlotte-Atelier-Boutique-119599078065517/?ref=hl", "https://www.instagram.com/atelier_charlotte/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G0A", "phone": "418 438-2321", "regions_mentioned": ["Saguenay"]}
166 +{"domain": "ateliercub.com", "urls": ["https://www.ateliercub.com"], "names": ["Atelier C.U.B. (Richard Pontais)", "Atelier C.U.B. (Sophie Gailliot)"], "sources": ["search_sweep_cmaq"], "source_pages": ["Atelier C.U.B Richard Pontais ébéniste québec", "Atelier C.U.B Sophie Gailliot gainier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
160 167 {"domain": "atelierdalfred.com", "urls": ["https://www.atelierdalfred.com"], "names": ["Atelier d'Alfred"], "sources": ["search_sweep_urban"], "source_pages": ["produits barbier fabriqués Montréal boutique en ligne barbe"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
161 168 {"domain": "atelierdco.com", "urls": ["https://www.atelierdco.com/listing/777328570/kit-de-3-p-m-g-emballage-a-base-de-cire", "https://www.atelierdco.com/"], "names": ["Emballages à base de cire d'abeille : Kit de trois - Acheter québécois", "Emballages alimentaires à base de cire d'abeille - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/emballages-a-base-de-cire-dabeille-kit-de-trois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/emballages-alimentaires-a-base-de-cire-dabeille/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
162 169 {"domain": "atelierdelouis.ca", "urls": ["https://www.atelierdelouis.ca/", "https://www.atelierdelouis.ca"], "names": ["Atelier de Louis"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-de-louis"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": null, "phone": "514 847-9799", "regions_mentioned": ["Laurentides"]}
@@ -164,8 +171,11 @@
164 171 {"domain": "atelierdubijou.ca", "urls": ["https://www.atelierdubijou.ca"], "names": ["Atelier du Bijou"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-du-bijou"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G6B", "phone": "514 847-9799", "regions_mentioned": []}
165 172 {"domain": "atelierdumoucheur.com", "urls": ["https://www.atelierdumoucheur.com"], "names": ["Atelier du Moucheur"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois mouches pêche articles de pêche boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Rimouski, QC"]}
166 173 {"domain": "atelierdunordet.ca", "urls": ["https://www.atelierdunordet.ca/"], "names": ["Atelier du Nordet - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-du-nordet-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G0S", "phone": "514 847-9799", "regions_mentioned": []}
174 +{"domain": "atelieremige.com", "urls": ["https://atelieremige.com/collections/evenements-mariage-fiancailles"], "names": ["Atelier Émigé"], "sources": ["search_sweep_bijoux"], "source_pages": ["alliances joncs de mariage créateur québécois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
167 175 {"domain": "atelierformecreation.com", "urls": ["https://www.atelierformecreation.com"], "names": ["For Mé Création - CMAQ", "For Mé Création"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/for-me-creation-cmaq", "For Mé Création Mélanie Forest céramiste québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J8H", "phone": "514 847-9799", "regions_mentioned": ["Lachute, QC"]}
168 176 {"domain": "ateliergaston.ca", "urls": ["https://ateliergaston.ca/"], "names": ["Atelier Gaston - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-gaston-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H1Y", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
177 +{"domain": "atelierhotelmotel.com", "urls": ["https://www.atelierhotelmotel.com/about-us"], "names": ["Atelier HOTELMOTEL"], "sources": ["search_sweep_cmaq"], "source_pages": ["Atelier HOTELMOTEL Corinne Bourget maroquinier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
178 +{"domain": "atelierlaf.com", "urls": ["https://www.atelierlaf.com/fr/pages/who-we-are"], "names": ["Atelier L.A.F."], "sources": ["search_sweep_cmaq"], "source_pages": ["Atelier L.A.F Andrew Floyd joaillier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
169 179 {"domain": "atelierluclaramee.com", "urls": ["https://www.atelierluclaramee.com/"], "names": ["Atelier Luc Laramée - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-luc-laramee-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G0X", "phone": "514 847-9799", "regions_mentioned": []}
170 180 {"domain": "ateliermajuli.com", "urls": ["https://ateliermajuli.com/"], "names": ["Atelier Majuli"], "sources": ["search_sweep_vendors"], "source_pages": ["\"Atelier Majuli\" bague argent sterling Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
171 181 {"domain": "ateliermake.com", "urls": ["https://www.ateliermake.com"], "names": ["Atelier Make"], "sources": ["search_sweep_urban"], "source_pages": ["céramiste Montréal boutique en ligne atelier céramique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
@@ -176,6 +186,7 @@
176 186 {"domain": "atelierpare.com", "urls": ["http://atelierpare.com/", "http://atelierpare.com/boutique.html"], "names": ["ÉCONOMUSÉE® de la sculpture sur bois"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-la-sculpture-sur-bois-atelier-pare/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/Atelier-Par%C3%A9-%C3%89conomus%C3%A9e-de-la-sculpture-sur-bois-221815731191407"], "postal_prefix": "G0A", "phone": "418 827 3992", "regions_mentioned": ["Lac-Saint-Jean"]}
177 187 {"domain": "atelierrmr.com", "urls": ["https://atelierrmr.com/fr"], "names": ["Atelier RMR"], "sources": ["search_sweep_urban"], "source_pages": ["bijoux Rosemont Montréal atelier créateur boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
178 188 {"domain": "ateliersaintcerf.com", "urls": ["https://ateliersaintcerf.com", "https://www.ateliersaintcerf.com"], "names": ["Atelier Saint-Cerf"], "sources": ["search_sweep_cmaq", "search_sweep_manuf"], "source_pages": ["Alain Laferriere Atelier Saint-Cerf sculpteur québec", "fabricant québécois jouets en bois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
189 +{"domain": "ateliersderegis.com", "urls": ["https://ateliersderegis.com"], "names": ["Ateliers de Régis"], "sources": ["search_sweep_cmaq"], "source_pages": ["Ateliers de Régis Régis Eroyan tailleur de pierre québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
179 190 {"domain": "ateliertrilobe.com", "urls": ["https://www.ateliertrilobe.com"], "names": ["Atelier Trilobe"], "sources": ["search_sweep_cmaq"], "source_pages": ["Atelier Trilobe Adrien Bobin tailleur de pierre québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Jean-de-l'Île-d'Orléans, QC"]}
180 191 {"domain": "ateliervcuir.com", "urls": ["https://www.ateliervcuir.com/"], "names": ["Atelier V Cuir"], "sources": ["search_sweep_nonfood"], "source_pages": ["cuir artisanal Québec boutique en ligne sacs"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)"]}
181 192 {"domain": "atelierverred.com", "urls": ["https://atelierverred.com/acceuil"], "names": ["Atelier Verred - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-verred-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
@@ -283,6 +294,7 @@
283 294 {"domain": "balsai.ca", "urls": ["https://www.balsai.ca"], "names": ["Ail Noir BIO BALSAÏ"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/ail-noir-bio-balsai"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G0A", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
284 295 {"domain": "balsamumm.ca", "urls": ["http://www.balsamumm.ca"], "names": ["Les aliments Balsamumm"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-aliments-balsamumm"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J5R", "phone": null, "regions_mentioned": ["Montérégie"]}
285 296 {"domain": "baralunettes.com", "urls": ["https://baralunettes.com"], "names": ["Bar à Lunettes (Marie-Sophie Dion)"], "sources": ["search_sweep_urban"], "source_pages": ["lunettes conçues Québec designer montures boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
297 +{"domain": "baraqueapots.com", "urls": ["https://www.baraqueapots.com/atelier"], "names": ["Baraque a pots"], "sources": ["search_sweep_cmaq"], "source_pages": ["Baraque a pots Marie-France Lefebvre céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Laval, QC"]}
286 298 {"domain": "barbenoire.com", "urls": ["https://barbenoire.com", "https://barbenoire.com/collections"], "names": ["Barbe noire"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/barbe-noir/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/BarbeNoireVF/?ref=page_internal", "https://www.instagram.com/barbenoirebb/?hl=fr"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
287 299 {"domain": "barbonchocolate.com", "urls": ["https://barbonchocolate.com"], "names": ["Barbon Chocolate"], "sources": ["search_sweep_urban"], "source_pages": ["chocolatier bean to bar Montréal boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
288 300 {"domain": "barbuck.com", "urls": ["https://barbuck.com"], "names": ["restaurant boucherie Barbuck"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/restaurant-boucherie-barbuck"], "socials": ["https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 625-3491", "regions_mentioned": []}
@@ -305,6 +317,7 @@
305 317 {"domain": "behance.net", "urls": ["https://www.behance.net/LaHache"], "names": ["La Hache - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/la-hache-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": null, "phone": "514 847-9799", "regions_mentioned": []}
306 318 {"domain": "bekebobo.com", "urls": ["https://bekebobo.com/?aftag=6ea6b7f94753f5751bf6c0f6667690fc&utm_medium=afocus", "https://www.bekebobo.com"], "names": ["Béké bobo", "Béké-Bobo"], "sources": ["icq_resolved", "lesproduitsduquebec_ent"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/bekebobo/", "https://lesproduitsduquebec.com/entreprises-adherentes/beke-bobo"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J0L", "phone": "514 847-9799", "regions_mentioned": ["Montérégie"]}
307 319 {"domain": "bel-gaufre.com", "urls": ["http://www.bel-gaufre.com"], "names": ["Bel-Gaufre"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/bel-gaufre"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G1C", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
320 +{"domain": "belacaro.com", "urls": ["https://belacaro.com/fr/pages/about"], "names": ["BELACARO"], "sources": ["search_sweep_cmaq"], "source_pages": ["BELACARO Maude Grondin tricoteur québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
308 321 {"domain": "bellechasse.chaudiereappalaches.com", "urls": ["https://bellechasse.chaudiereappalaches.com/fr/"], "names": ["Boutique Signé Bellechasse /CLD Bellechasse"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/boutique-signe-bellechasse-cld-bellechasse"], "socials": ["https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 883-2249", "regions_mentioned": []}
309 322 {"domain": "belpom.com", "urls": ["https://belpom.com"], "names": ["Verger Belpom - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/verger-belpom/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/vergerbelpom", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/verger-belpom/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Verger Belpom&url=https://goutezy.com/entreprise/verger-belpom/"], "postal_prefix": "G9H", "phone": "(819) 384-4224", "regions_mentioned": ["Centre-du-Québec"]}
310 323 {"domain": "belvache.ca", "urls": ["https://www.belvache.ca"], "names": ["Les Fermes Belvache 2012 SENC."], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/les-fermes-belvache-2012-senc/"], "socials": ["https://www.facebook.com/lesfermesbelvaches/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/les-fermes-belvache-2012-senc/", "https://twitter.com/intent/tweet?text=Les+Fermes+Belvache+2012+SENC. https://www.erabledici.ca/fr/erabliere/les-fermes-belvache-2012-senc/"], "postal_prefix": "J0N", "phone": "450 478-2561", "regions_mentioned": ["Laurentides"]}
@@ -322,8 +335,32 @@
322 335 {"domain": "bieresdescantons.com", "urls": ["https://bieresdescantons.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/des-cantons-microbrasserie/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/bieresdescantons", "https://www.instagram.com/microdescantons/?hl=fr", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fdes-cantons-microbrasserie%2F&t=Des%20Cantons%20Microbrasserie", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fdes-cantons-microbrasserie%2F&text=Des%20Cantons%20Microbrasserie", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fdes-cantons-microbrasserie%2F&title=Des%20Cantons%20Microbrasserie&summary="], "postal_prefix": "J1X", "phone": "(819) 843-9361", "regions_mentioned": ["Cantons-de-l'Est"]}
323 336 {"domain": "bieresetplaisirs.com", "urls": ["http://www.bieresetplaisirs.com/2013/05/30/combien-de-bieres-au-quebec/", "https://bieresetplaisirs.com/2018/04/04/la-microdistillation-un-engouement-local-grandissant/", "https://bieresetplaisirs.com/2017/02/09/distillation-artisanale-perspectives-2017-quebec/", "http://www.bieresetplaisirs.com/2017/03/28/de-loxygene-microdistilleries-quebec/"], "names": ["Bières et Plaisirs", "La microdistillation, un engouement local grandissant", "La distillation artisanale: Perspectives 2017 au Québec", "lire en ligne"], "sources": ["wikipedia_lists"], "source_pages": ["https://fr.wikipedia.org/wiki/Liste_de_microbrasseries_au_Qu%C3%A9bec", "https://fr.wikipedia.org/wiki/Distilleries_au_Qu%C3%A9bec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
324 337 {"domain": "bieresilo.com", "urls": ["http://bieresilo.com/"], "names": ["Brasserie Silo"], "sources": ["ambq_profils"], "source_pages": ["https://ambq.ca/fr/microbrasserie/brasserie-silo"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/bieresilo", "https://www.instagram.com/brasseriesilo/"], "postal_prefix": "H2N", "phone": "514 382-2360", "regions_mentioned": ["Montréal"]}
325 −{"domain": "bijouxgli.com", "urls": ["https://www.bijouxgli.com"], "names": ["CRÉATIONS GLi - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/creations-gli-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J5K", "phone": "514 847-9799", "regions_mentioned": []}
338 +{"domain": "bijouterie-fournier.com", "urls": ["https://www.bijouterie-fournier.com/fr/bijoux"], "names": ["Bijouterie Fournier et Centre de la Montre"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Rimouski boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Rimouski"]}
339 +{"domain": "bijouteriealarie.com", "urls": ["https://www.bijouteriealarie.com"], "names": ["Bijouterie Alarie"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Trois-Rivières boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Trois-Rivières"]}
340 +{"domain": "bijouteriebrenda.ca", "urls": ["https://www.bijouteriebrenda.ca"], "names": ["Bijouterie Brenda"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Drummondville boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Drummondville"]}
341 +{"domain": "bijouteriebrouillette.ca", "urls": ["https://bijouteriebrouillette.ca"], "names": ["Bijouterie Brouillette"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Granby boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Granby"]}
342 +{"domain": "bijouterieconcept.com", "urls": ["https://bijouterieconcept.com"], "names": ["Bijouterie Concept"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Sherbrooke boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Sherbrooke"]}
343 +{"domain": "bijouteriedeziel.com", "urls": ["https://bijouteriedeziel.com"], "names": ["Bijouterie Déziel Joailliers"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Granby boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Granby"]}
344 +{"domain": "bijouteriediplomate.com", "urls": ["https://www.bijouteriediplomate.com"], "names": ["Bijouterie Diplomate"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Saint-Jérôme boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
345 +{"domain": "bijouterieferland.com", "urls": ["https://bijouterieferland.com"], "names": ["Bijouterie Ferland"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Rimouski boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Rimouski"]}
346 +{"domain": "bijouteriegiffard.ca", "urls": ["https://www.bijouteriegiffard.ca"], "names": ["Bijouterie Giffard"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Saint-Jérôme boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (ville)"]}
347 +{"domain": "bijouterieguerin.com", "urls": ["https://bijouterieguerin.com"], "names": ["Bijouterie Guérin"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Chicoutimi bague fiançailles boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Chicoutimi/Saguenay"]}
348 +{"domain": "bijouteriejadore.com", "urls": ["https://bijouteriejadore.com"], "names": ["Bijouterie J'Adore"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Terrebonne boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Terrebonne"]}
349 +{"domain": "bijouteriejodoin.com", "urls": ["https://www.bijouteriejodoin.com"], "names": ["Bijouterie Jodoin"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Granby boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Granby"]}
350 +{"domain": "bijouterielampron.com", "urls": ["https://bijouterielampron.com"], "names": ["Bijouterie Lampron"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Drummondville boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Drummondville"]}
351 +{"domain": "bijouterielanglois.com", "urls": ["https://bijouterielanglois.com"], "names": ["Bijouterie Langlois"], "sources": ["search_sweep_bijoux"], "source_pages": ["bagues de fiançailles créateur québécois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (ville)"]}
352 +{"domain": "bijouterielsm.com", "urls": ["https://bijouterielsm.com"], "names": ["Bijouterie LSM"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Brossard boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal / Brossard"]}
353 +{"domain": "bijouteriepenelope.com", "urls": ["https://www.bijouteriepenelope.com"], "names": ["Bijouterie Pénélope"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Terrebonne boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
354 +{"domain": "bijouterierussell.ca", "urls": ["https://www.bijouterierussell.ca/boutique-en-ligne"], "names": ["Bijouterie Russell"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Laval boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Laval"]}
355 +{"domain": "bijouteriesergegagnon.com", "urls": ["https://bijouteriesergegagnon.com/categorie-produit/bijoux/alliances-et-joncs"], "names": ["Bijouterie Serge Gagnon"], "sources": ["search_sweep_bijoux"], "source_pages": ["alliances joncs de mariage créateur québécois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (ville)"]}
356 +{"domain": "bijouteriesimard.ca", "urls": ["https://bijouteriesimard.ca"], "names": ["Bijouterie Simard"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Saguenay Chicoutimi boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saguenay"]}
357 +{"domain": "bijouteriestjean.com", "urls": ["https://bijouteriestjean.com"], "names": ["Joaillerie St-Jean"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Longueuil boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
358 +{"domain": "bijouterieveronneau.com", "urls": ["https://www.bijouterieveronneau.com"], "names": ["Bijouterie Véronneau"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Longueuil boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Longueuil"]}
359 +{"domain": "bijouxgli.com", "urls": ["https://www.bijouxgli.com"], "names": ["CRÉATIONS GLi - CMAQ", "CRÉATIONS GLi"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/creations-gli-cmaq", "CRÉATIONS GLi Isabelle Gervais joaillier québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J5K", "phone": "514 847-9799", "regions_mentioned": ["Laurentides, QC"]}
360 +{"domain": "bijouxmedusa.com", "urls": ["https://www.bijouxmedusa.com"], "names": ["Bijoux Medusa"], "sources": ["manual_additions", "search_sweep_bijoux"], "source_pages": ["ajout manuel", "créateur bijoux Saguenay Chicoutimi boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saguenay–Lac-Saint-Jean", "Québec / Chicoutimi"]}
361 +{"domain": "bijouxmousseline.com", "urls": ["https://www.bijouxmousseline.com"], "names": ["Mousseline"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux résine faits au Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Cantons de l'Est, Estrie"]}
326 362 {"domain": "bijouxosmose.ca", "urls": ["https://www.bijouxosmose.ca/en"], "names": ["Sonia Ferland"], "sources": ["search_sweep_vendors"], "source_pages": ["\"Sonia Ferland\" bagues étain bijoux métiers d'art Québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec City, QC"]}
363 +{"domain": "bijouxpepine.com", "urls": ["https://bijouxpepine.com/pages/about"], "names": ["Bijoux Pépine"], "sources": ["search_sweep_bijoux"], "source_pages": ["Bijoux Pépine boutique en ligne Québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
327 364 {"domain": "bijouxzoeflare.com", "urls": ["https://bijouxzoeflare.com/products/bali-1", "https://bijouxzoeflare.com/", "https://bijouxzoeflare.com/collections/bracelets/products/exuma-cays", "http://www.bijouxzoeflare.com", "https://bijouxzoeflare.com/collections/colliers/products/ladorable", "https://bijouxzoeflare.com/collections/bracelets/products/reynisfjara-beach", "https://bijouxzoeflare.com/collections/bracelets/products/la-simplicite", "https://bijouxzoeflare.com/collections/bracelets/products/linspirante"], "names": ["Anse Lazio - Acheter québécois", "La Beauté - Acheter québécois", "L'Adorable - Acheter québécois", "Reynisfjara Beach - Acheter québécois", "La Simplicité - Acheter québécois", "L'Inspirante - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/anse-lazio/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/la-beaute/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/lucky-bay/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/reynisfjara-beach/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/la-simplicite/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/linspirante/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
328 365 {"domain": "bio-actif.quebec", "urls": ["https://bio-actif.quebec/", "http://www.bio-actif.quebec/"], "names": ["Bio-Actif"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/bio-actif"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7C", "phone": "514 847-9799", "regions_mentioned": []}
329 366 {"domain": "bio-vert.com", "urls": ["https://bio-vert.com/", "http://bio-vert.com/"], "names": ["Biovert"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/biovert"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
@@ -352,6 +389,7 @@
352 389 {"domain": "bleu-nature.com", "urls": ["https://bleu-nature.com"], "names": ["Bleu Nature"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/bleu-nature/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Bleu-Nature-1538092519849333/"], "postal_prefix": "G0W", "phone": "418-276-9549", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
353 390 {"domain": "bleu.eco", "urls": ["https://bleu.eco"], "names": ["BLEU.ECO"], "sources": ["search_sweep_manuf"], "source_pages": ["literie matelas fabriqués Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
354 391 {"domain": "bleucitron.ca", "urls": ["https://www.bleucitron.ca"], "names": ["Resto Bistro Bleu Citron"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/resto-bistro-bleu-citron"], "socials": ["https://www.facebook.com/bleucitronrestobistro/", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 887-1222", "regions_mentioned": []}
392 +{"domain": "bleucommeleciel.com", "urls": ["https://bleucommeleciel.com"], "names": ["Bleu Comme Le Ciel"], "sources": ["search_sweep_bijoux"], "source_pages": ["Clio Blue bijoux Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal / Brossard"]}
355 393 {"domain": "bleuetbon.com", "urls": ["http://www.bleuetbon.com"], "names": ["Bleu & Bon"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/bleu-bon"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0T", "phone": null, "regions_mentioned": ["Laurentides"]}
356 394 {"domain": "bleuetiere-saguenoise.ca", "urls": ["https://www.bleuetiere-saguenoise.ca/"], "names": ["Bleuetière Saguenoise"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/bleuetiere-saguenoise/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Bleuetire-Saguenoise-1562218187436181/"], "postal_prefix": "G0V", "phone": "418 540-5212", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
357 395 {"domain": "bleuetierebenoit.com", "urls": ["https://www.bleuetierebenoit.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/bleuetiere-benoit/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/bleuetierebenoit?locale=fr_CA", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fbleuetiere-benoit%2F&t=Bleueti%C3%A8re%20Benoit", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fbleuetiere-benoit%2F&text=Bleueti%C3%A8re%20Benoit", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fbleuetiere-benoit%2F&title=Bleueti%C3%A8re%20Benoit&summary="], "postal_prefix": "J0E", "phone": "(450) 295-2326", "regions_mentioned": ["Cantons-de-l'Est"]}
@@ -371,6 +409,7 @@
371 409 {"domain": "bodhigourmet.com", "urls": ["http://www.bodhigourmet.com"], "names": ["9372-7485 Québec inc. (Bodhï Gourmet)"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/9372-7485-quebec-inc-bodhi-gourmet"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H7N", "phone": null, "regions_mentioned": ["Laval"]}
372 410 {"domain": "boemevegan.com", "urls": ["https://boemevegan.com/"], "names": ["Boëme"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/boeme"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0K", "phone": null, "regions_mentioned": ["Laurentides"]}
373 411 {"domain": "boeufalfred.ca", "urls": ["https://boeufalfred.ca/", "https://boeufalfred.ca/boutique/"], "names": ["Boeuf Alfred"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/boeuf-alfred/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/boeufalfred"], "postal_prefix": "G8M", "phone": "418 900-1249", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
412 +{"domain": "boisbelleau.ca", "urls": ["https://boisbelleau.ca"], "names": ["BoisBelleau"], "sources": ["search_sweep_cmaq"], "source_pages": ["BoisBelleau Denis Belleau ébéniste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Capitale-Nationale, QC"]}
374 413 {"domain": "boisdestcyr.com", "urls": ["https://www.boisdestcyr.com/"], "names": ["Bois de St-Cyr"], "sources": ["laurentidesjenmange"], "source_pages": ["https://laurentidesjenmange.ca/membre/bois-de-st-cyr"], "socials": ["https://www.facebook.com/laurentidesjm/", "https://www.instagram.com/laurentidesjenmange/"], "postal_prefix": "J0R", "phone": null, "regions_mentioned": ["Laurentides"]}
375 414 {"domain": "boisechoquette.com", "urls": ["http://www.boisechoquette.com", "https://www.boisechoquette.com/", "https://www.boisechoquette.com/distributeurs/"], "names": ["Saveurs du boisé Choquette", "Créateurs"], "sources": ["alimentsduquebec_ent", "createursdesaveurs"], "source_pages": ["https://alimentsduquebec.com/entreprises/saveurs-du-boise-choquette", "https://createursdesaveurs.com/createurs/saveurs-du-boise-choquette/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsaveurs-du-boise-choquette%2F&t=Saveurs%20du%20bois%C3%A9%20Choquette", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsaveurs-du-boise-choquette%2F&text=Saveurs%20du%20bois%C3%A9%20Choquette", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsaveurs-du-boise-choquette%2F&title=Saveurs%20du%20bois%C3%A9%20Choquette&summary="], "postal_prefix": "J0A", "phone": "(819) 574-4401", "regions_mentioned": ["Estrie", "Cantons-de-l'Est"]}
376 415 {"domain": "boissonchouchou.ca", "urls": ["http://www.boissonchouchou.ca"], "names": ["BOISSON CHOUCHOU INC"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/boisson-chouchou-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/profile.php?id=61588864423368", "https://www.instagram.com/chouchou.boisson", "https://www.linkedin.com/company/boisson-chouchou/"], "postal_prefix": null, "phone": null, "regions_mentioned": []}
@@ -442,6 +481,7 @@
442 481 {"domain": "boutique.legoutdelacotenord.ca", "urls": ["https://boutique.legoutdelacotenord.ca"], "names": ["Le Goût de la Côte-Nord"], "sources": ["search_sweep_regions"], "source_pages": ["Herbamiel Sacré-Coeur Côte-Nord boutique en ligne miel herboristerie"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Côte-Nord"]}
443 482 {"domain": "boutique.lesmauvaisesherbes.com", "urls": ["https://boutique.lesmauvaisesherbes.com/collections/nouveautes?aftag=83788043f45a584cae05e68654d27452&utm_medium=afocus", "https://boutique.lesmauvaisesherbes.com/"], "names": ["Les Mauvaises HERBES", "Les Mauvaises herbes"], "sources": ["icq_resolved", "search_sweep_vendors"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/lesmauvaisesherbes/", "\"Les Mauvaises herbes\" crème visage pruche camomille Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
444 483 {"domain": "boutique.maisonducafelarmorique.com", "urls": ["https://boutique.maisonducafelarmorique.com"], "names": ["Maison du café l'Armorique"], "sources": ["search_sweep_regions"], "source_pages": ["torréfacteur café Val-d'Or boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Abitibi-Témiscamingue"]}
484 +{"domain": "boutique.marie-evebordeleau.com", "urls": ["https://boutique.marie-evebordeleau.com"], "names": ["Marie-Eve Bordeleau, Sculptures prêtes à porter"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux faits main Québec boutique en ligne artisan"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Trois-Rivières"]}
445 485 {"domain": "boutique.microdulac.com", "urls": ["https://boutique.microdulac.com/"], "names": ["Microbrasserie du Lac Saint-Jean (Micro du Lac)", "Microbrasserie du Lac St-Jean"], "sources": ["search_sweep_food", "zoneboreale"], "source_pages": ["microbrasserie boisson kombucha artisanale Saguenay Lac-Saint-Jean boutique en ligne", "https://zoneboreale.com/entreprises/microbrasserie-du-lac-saint-jean/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Microdulac?fref=ts", "https://www.instagram.com/microdulac/?hl=fr"], "postal_prefix": "G0W", "phone": "418 345-8758", "regions_mentioned": ["Saguenay–Lac-Saint-Jean", "Lac-Saint-Jean", "Saguenay"]}
446 486 {"domain": "boutique.mielabitemis.com", "urls": ["https://boutique.mielabitemis.com/"], "names": ["Miel Abitémis"], "sources": ["search_sweep_food"], "source_pages": ["boutique en ligne miel Abitibi apiculture"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Abitibi-Témiscamingue"]}
447 487 {"domain": "boutique.mielestrie.com", "urls": ["https://boutique.mielestrie.com/?_gl=1*1x74egm*_ga*NTE4NDQ4NjY3LjE3MjIwMDA0MDk.*_ga_TEDLFCYN8V*MTcyMjAwMDQwOC4xLjEuMTcyMjAwMDQxMS41Ny4wLjE2MjUzNTI5ODg.", "https://boutique.mielestrie.com/en/"], "names": ["Créateurs", "Miellerie de l'Estrie"], "sources": ["createursdesaveurs", "search_sweep_food"], "source_pages": ["https://createursdesaveurs.com/createurs/miellerie-de-lestrie-inc/", "miel apiculteur boutique en ligne Montérégie Estrie miellerie"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/mielestrie", "https://www.instagram.com/mielestrie/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmiellerie-de-lestrie-inc%2F&t=Miellerie%20de%20l%E2%80%99Estrie%20Inc.", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmiellerie-de-lestrie-inc%2F&text=Miellerie%20de%20l%E2%80%99Estrie%20Inc.", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmiellerie-de-lestrie-inc%2F&title=Miellerie%20de%20l%E2%80%99Estrie%20Inc.&summary="], "postal_prefix": "J1N", "phone": "(819) 822-1103", "regions_mentioned": ["Cantons-de-l'Est", "Estrie"]}
@@ -585,7 +625,7 @@
585 625 {"domain": "camerisequebec.com", "urls": ["https://camerisequebec.com/"], "names": ["Camerise Québec", "Ferme Missouri - Goûtez-y!"], "sources": ["alimentsduquebec_ent", "goutezy"], "source_pages": ["https://alimentsduquebec.com/entreprises/camerise-quebec", "https://goutezy.com/entreprise/ferme-missouri/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/FermeMissouri/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-missouri/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Missouri&url=https://goutezy.com/entreprise/ferme-missouri/"], "postal_prefix": "G0W", "phone": "(819) 699-6188", "regions_mentioned": ["Montérégie", "Centre-du-Québec"]}
586 626 {"domain": "camerisesmistouk.com", "urls": ["http://www.camerisesmistouk.com", "https://camerisesmistouk.com/", "https://camerisesmistouk.com/collections/tous-nos-produits", "https://www.camerisesmistouk.com"], "names": ["Camerise Mistouk", "ÉCONOMUSÉE® de la conserverie : camerise", "Camerises Mistouk – Économusée & Distillerie"], "sources": ["alimentsduquebec_ent", "artisansaloeuvre", "zoneboreale"], "source_pages": ["https://alimentsduquebec.com/entreprises/camerise-mistouk", "https://artisansaloeuvre.com/artisans/economusee-de-la-conserverie-camerise/", "https://zoneboreale.com/entreprises/camerises-mistouk/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/camerisesdulac", "https://www.instagram.com/camerisesmistouk/", "https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Camerises.Mistouk?ref=ts&fref=ts", "https://www.instagram.com/camerisesmistouk/?hl=fr"], "postal_prefix": "G0W", "phone": "418 944-4398", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
587 627 {"domain": "camerisesstphilippe.com", "urls": ["https://www.camerisesstphilippe.com/"], "names": ["Camerises St-Philippe"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/camerises-st-philippe"], "socials": ["https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 882-6944", "regions_mentioned": []}
588 −{"domain": "camillette.com", "urls": ["https://camillette.com/fr", "https://camillette.com/"], "names": ["Camillette - CMAQ", "Camillette"], "sources": ["lesproduitsduquebec_ent", "search_sweep_nonfood", "search_sweep_urban"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/camillette-cmaq", "bijoux accessoires Montérégie fait main boutique en ligne", "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2R", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
628 +{"domain": "camillette.com", "urls": ["https://camillette.com/fr", "https://camillette.com/"], "names": ["Camillette - CMAQ", "Camillette", "Camillette Bijoux"], "sources": ["lesproduitsduquebec_ent", "search_sweep_bijoux", "search_sweep_cmaq", "search_sweep_nonfood", "search_sweep_urban"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/camillette-cmaq", "bijoux argent sterling Québec créateur boutique en ligne", "Camillette Bijoux Camille Ouellette joaillier québec", "bijoux accessoires Montérégie fait main boutique en ligne", "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2R", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Montréal, QC"]}
589 629 {"domain": "campagnedefinancementestrie.com", "urls": ["https://campagnedefinancementestrie.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/campagne-de-financement-estrie/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/profile.php?id=61579884920088", "https://www.instagram.com/campagnedefinancementestrie?igsh=MXNhdjZldGlzZzho", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcampagne-de-financement-estrie%2F&t=Campagne%20de%20financement%20Estrie", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcampagne-de-financement-estrie%2F&text=Campagne%20de%20financement%20Estrie", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcampagne-de-financement-estrie%2F&title=Campagne%20de%20financement%20Estrie&summary="], "postal_prefix": "J1N", "phone": "(819) 342-8325", "regions_mentioned": ["Cantons-de-l'Est", "Estrie"]}
590 630 {"domain": "campanipol.com", "urls": ["https://campanipol.com/"], "names": ["Jardins Bio Campanipol Inc"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/jardins-bio-campanipol-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/Campanipol"], "postal_prefix": "G0X", "phone": null, "regions_mentioned": ["Capitale-Nationale", "Mauricie"]}
591 631 {"domain": "campingauborddelariviere.com", "urls": ["https://campingauborddelariviere.com/hotel-le-625/", "https://campingauborddelariviere.com/motel-chalet-restaurant-le-riviera/", "http://campingauborddelariviere.com", "http://campingauborddelariviere.com/", "https://campingauborddelariviere.com/restaurant-le-riviera/"], "names": ["Hôtel Le 625", "Motel et restaurant Le Riviera", "Camping Au Bord De La Rivière", "Restaurant Le Riviera"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/hotel-le-625", "https://www.tourisme-charlevoix.com/fr/entreprises/motel-et-restaurant-le-riviera", "https://www.tourisme-charlevoix.com/fr/entreprises/camping-au-bord-de-la-riviere", "https://www.tourisme-charlevoix.com/fr/entreprises/restaurant-le-riviera"], "socials": ["https://www.facebook.com/le625", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse", "https://www.facebook.com/motelrestaurantleriviera/", "https://www.facebook.com/CampingAuBordDeLaRiviere/"], "postal_prefix": "G5A", "phone": "418 665-3733", "regions_mentioned": ["Saguenay"]}
@@ -616,12 +656,14 @@
616 656 {"domain": "capricesdantan.com", "urls": ["http://www.capricesdantan.com"], "names": ["LES CAPRICES D'ANTAN inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-caprices-dantan-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G2E", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
617 657 {"domain": "caprijol.com", "urls": ["https://caprijol.com/"], "names": ["Caprijol inc."], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/caprijol-inc"], "socials": ["https://www.facebook.com/caprijol?mibextid=ZbWKwL", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 887-6799", "regions_mentioned": []}
618 658 {"domain": "capriravioli.com", "urls": ["http://www.capriravioli.com"], "names": ["Capri Ravioli Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/capri-ravioli-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H1E", "phone": null, "regions_mentioned": ["Montréal"]}
659 +{"domain": "captiveatelier.com", "urls": ["https://captiveatelier.com/fr/about"], "names": ["Captive Atelier"], "sources": ["search_sweep_cmaq"], "source_pages": ["Captive Atelier Jade Boutilier joaillier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
619 660 {"domain": "caramelsfaa.com", "urls": ["https://caramelsfaa.com/"], "names": ["CARAMELS F.A.A."], "sources": ["search_sweep_vendors"], "source_pages": ["direct domain guess caramelsfaa.com, verified via WebFetch"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec City, QC"]}
620 661 {"domain": "cargill.com", "urls": ["http://www.cargill.com"], "names": ["Les Aliments Cargill"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-aliments-cargill"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J3L", "phone": null, "regions_mentioned": ["Montérégie"]}
621 662 {"domain": "carigingembre.com", "urls": ["https://carigingembre.com"], "names": ["Cari & Gingembre"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/cari-gingembre"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J9P", "phone": null, "regions_mentioned": ["Abitibi", "Témiscamingue"]}
622 663 {"domain": "carismo-creations.com", "urls": ["https://carismo-creations.com"], "names": ["carismo"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/carismo"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7H", "phone": "514 847-9799", "regions_mentioned": []}
623 664 {"domain": "carnetdautrepart.com", "urls": ["http://www.carnetdautrepart.com", "https://carnetdautrepart.com/?aftag=e8745b67a52c3d566c32cef5087e5a29&utm_medium=afocus"], "names": ["Box littéraire Le vent en parle encore - Acheter québécois", "Carnet d'autre part"], "sources": ["acheterquebecois", "icq_resolved"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/box-litteraire-le-vent-en-parle-encore-2/", "https://www.ideecadeauquebec.com/boutique/carnetdautrepart/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
624 −{"domain": "carolinesavoiejoaillerie.com", "urls": ["https://carolinesavoiejoaillerie.com/en/", "https://carolinesavoiejoaillerie.com"], "names": ["Caroline Savoie Joaillerie"], "sources": ["search_sweep_nonfood", "search_sweep_urban"], "source_pages": ["bijoux faits main Québec boutique en ligne", "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
665 +{"domain": "carolineneron.com", "urls": ["https://carolineneron.com"], "names": ["Bijoux Caroline Néron"], "sources": ["search_sweep_bijoux"], "source_pages": ["Bijoux Caroline Néron boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
666 +{"domain": "carolinesavoiejoaillerie.com", "urls": ["https://carolinesavoiejoaillerie.com", "https://carolinesavoiejoaillerie.com/en/"], "names": ["Caroline Savoie Joaillerie"], "sources": ["search_sweep_bijoux", "search_sweep_nonfood", "search_sweep_urban"], "source_pages": ["joaillerie québécoise boutique en ligne créateur", "bijoux faits main Québec boutique en ligne", "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
625 667 {"domain": "carrecourbe.com", "urls": ["https://carrecourbe.com/"], "names": ["Carré courbe - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/carre-courbe-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2E", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
626 668 {"domain": "carrefoursolidaire.org", "urls": ["https://carrefoursolidaire.org/activites/marche-frontenac/"], "names": ["Marché solidaire Frontenac (Montréal)"], "sources": ["marchespublics"], "source_pages": ["https://www.marchespublicsduquebec.ca/marches-publics/marche-solidaire-frontenac/"], "socials": ["https://www.facebook.com/marchesolidairefrontenac/", "https://www.linkedin.com/company/carrefoursolidaire/", "https://www.instagram.com/marchesolidairefrontenac/?img_index=1", "https://www.facebook.com/marchespublicsqc", "https://www.linkedin.com/company/marches-publics-du-quebec/", "https://www.instagram.com/marchespublicsqc/", "https://www.youtube.com/channel/UCtwIcRX4_9l0XsOT7MgjFQQ"], "postal_prefix": "H2K", "phone": null, "regions_mentioned": ["Montréal"]}
627 669 {"domain": "carrementtarte.com", "urls": ["http://www.carrementtarte.com"], "names": ["Carrement Tarte"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/carrement-tarte"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H1Z", "phone": null, "regions_mentioned": ["Montreal", "Montréal"]}
@@ -716,6 +758,7 @@
716 758 {"domain": "chicoutai.com", "urls": ["http://www.chicoutai.com"], "names": ["Maison de la Chicoutai"], "sources": ["search_sweep_regions"], "source_pages": ["chicoutai thé du Labrador produits boréaux boutique en ligne Québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Côte-Nord"]}
717 759 {"domain": "chicplacard.ca", "urls": ["https://www.chicplacard.ca"], "names": ["Chic Placard"], "sources": ["search_sweep_regions"], "source_pages": ["artisan bijoux Matane vêtements boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Bas-Saint-Laurent"]}
718 760 {"domain": "chikanda.ca", "urls": ["http://www.chikanda.ca"], "names": ["Les Aliments Chika"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-aliments-chika"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/AlimentsChika", "https://www.instagram.com/chika_chikanda/", "https://www.linkedin.com/in/les-aliments-chika-52a43635b/"], "postal_prefix": "H1N", "phone": null, "regions_mentioned": ["Montreal", "Montréal"]}
761 +{"domain": "chikiboom.com", "urls": ["https://www.chikiboom.com"], "names": ["Chikiboom"], "sources": ["search_sweep_cmaq"], "source_pages": ["Chikiboom Felix Marcuzzo maroquinier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
719 762 {"domain": "chlorophylle.com", "urls": ["https://www.chlorophylle.com"], "names": ["Chlorophylle Inc", "Chlorophylle"], "sources": ["lesproduitsduquebec_det", "lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/detaillants/chlorophylle-inc", "https://lesproduitsduquebec.com/entreprises-adherentes/chlorophylle"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G0S", "phone": "514 847-9799", "regions_mentioned": ["Lac-Saint-Jean", "Laval", "Saguenay"]}
720 763 {"domain": "chocochocolat.ca", "urls": ["https://chocochocolat.ca/livraison/?aftag=439f177eacb6a61fb647cbb62689086e&utm_medium=afocus"], "names": ["Choco Chocolat"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/chocochocolat/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
721 764 {"domain": "chocolaterie.ca", "urls": ["http://www.chocolaterie.ca"], "names": ["La Chocolaterie Du Vieux Beloeil Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-chocolaterie-du-vieux-beloeil-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J3G", "phone": null, "regions_mentioned": ["Montérégie"]}
@@ -732,7 +775,7 @@
732 775 {"domain": "chopchopboards.com", "urls": ["https://chopchopboards.com/"], "names": ["chopchop cutting boards"], "sources": ["search_sweep_vendors"], "source_pages": ["direct domain guess chopchopboards.com, verified via WebFetch"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["QC"]}
733 776 {"domain": "christianbergeron.com", "urls": ["https://www.christianbergeron.com/", "https://www.christianbergeron.com/contact/"], "names": ["Galerie Porte Rouge"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/galerie-porte-rouge"], "socials": ["https://www.instagram.com/galerieporterouge/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G3Z", "phone": "418 760-8830", "regions_mentioned": ["Saguenay"]}
734 777 {"domain": "christinemercier.ca", "urls": ["https://www.christinemercier.ca/", "https://www.christinemercier.ca/en/collections/bijoux-dartisans-quebecois"], "names": ["Christine Mercier - CMAQ", "Christine Mercier"], "sources": ["lesproduitsduquebec_ent", "search_sweep_nonfood"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/christine-mercier-cmaq", "bijouterie créateur Québec ville boutique en ligne argent"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G1H", "phone": "514 847-9799", "regions_mentioned": ["Capitale-Nationale (Quebec City)"]}
735 −{"domain": "christophepoly.com", "urls": ["https://christophepoly.com", "https://christophepoly.com/en/"], "names": ["Christophe Poly"], "sources": ["search_sweep_urban", "search_sweep_vendors"], "source_pages": ["bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur", "\"Christophe Poly\" bijoux laiton bague Québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal", "Montréal, QC"]}
778 +{"domain": "christophepoly.com", "urls": ["https://christophepoly.com", "https://christophepoly.com/en/"], "names": ["Christophe Poly"], "sources": ["search_sweep_bijoux", "search_sweep_urban", "search_sweep_vendors"], "source_pages": ["créateur bijoux Gatineau boutique en ligne", "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur", "\"Christophe Poly\" bijoux laiton bague Québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal", "Montréal, QC"]}
736 779 {"domain": "chuckhughes.ca", "urls": ["http://chuckhughes.ca/"], "names": ["Chuck Hughes International Products Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/chuck-hughes-international-products-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H2Y", "phone": null, "regions_mentioned": ["Montreal", "Montréal"]}
737 780 {"domain": "chunksrepasdme.com", "urls": ["https://chunksrepasdme.com/"], "names": ["Chunks repas DME"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/chunks-repas-dme"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0V", "phone": null, "regions_mentioned": ["Laurentides"]}
738 781 {"domain": "churchdwight.ca", "urls": ["https://www.churchdwight.ca/index-fr.html", "https://www.churchdwight.ca/"], "names": ["Church & Dwight Canada"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/church-dwight-canada"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": null, "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
@@ -785,6 +828,7 @@
785 828 {"domain": "colibrivanille.com", "urls": ["https://www.colibrivanille.com"], "names": ["Colibri Vanille"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/colibri-vanille"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J3G", "phone": null, "regions_mentioned": ["Montérégie"]}
786 829 {"domain": "collationsdecloe.com", "urls": ["https://collationsdecloe.com"], "names": ["La Cabane CitiPouss"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-cabane-citipouss"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/p/La-Cabane-Citipouss-61566912099996/", "https://www.instagram.com/collationsdecloe/", "https://www.linkedin.com/company/108334985/admin/dashboard/"], "postal_prefix": "H3L", "phone": null, "regions_mentioned": ["Montréal"]}
787 830 {"domain": "collectifensemble.com", "urls": ["http://collectifensemble.com/", "https://collectifensemble.com/"], "names": ["Collectif Brassicole Ensemble Inc.", "Collectif Brassicole Ensemble"], "sources": ["alimentsduquebec_ent", "ambq_profils"], "source_pages": ["https://alimentsduquebec.com/entreprises/collectif-brassicole-ensemble-inc", "https://ambq.ca/fr/microbrasserie/collectif-brassicole-ensemble"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/collectifbrassicoleensemble", "https://www.instagram.com/collectif.brassicole.ensemble/"], "postal_prefix": "J4B", "phone": "514 312-3035", "regions_mentioned": ["Montérégie"]}
831 +{"domain": "collections.bleuetdart.com", "urls": ["https://collections.bleuetdart.com/en.html"], "names": ["Bleuet d'Art"], "sources": ["search_sweep_cmaq"], "source_pages": ["Bleuet d'Art Nancie Munger joaillier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
788 832 {"domain": "collineauxbleuets.com", "urls": ["https://www.collineauxbleuets.com/", "https://www.collineauxbleuets.com/epicerie"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/colline-aux-bleuets/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/collineauxbleuets", "https://www.instagram.com/collineauxbleuets/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcolline-aux-bleuets%2F&t=La%20Colline%20aux%20Bleuets", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcolline-aux-bleuets%2F&text=La%20Colline%20aux%20Bleuets", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcolline-aux-bleuets%2F&title=La%20Colline%20aux%20Bleuets&summary="], "postal_prefix": "J0E", "phone": "(450) 295-2417", "regions_mentioned": ["Cantons-de-l'Est"]}
789 833 {"domain": "colorantic.com", "urls": ["https://colorantic.com"], "names": ["Colorantic"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/colorantic"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G6R", "phone": "514 847-9799", "regions_mentioned": []}
790 834 {"domain": "comautrefois.ca", "urls": ["https://comautrefois.ca/"], "names": ["Vignoble Com’autrefois - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/vignoble-comautrefois/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/share/168JCqVZem/?mibextid=wwXIfr", "https://instagram.com/vignoble_comautrefois/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/vignoble-comautrefois/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Vignoble Com’autrefois&url=https://goutezy.com/entreprise/vignoble-comautrefois/"], "postal_prefix": "G0S", "phone": "(819) 740-4174", "regions_mentioned": ["Centre-du-Québec"]}
@@ -800,6 +844,7 @@
800 844 {"domain": "conceptioncuir.com", "urls": ["https://conceptioncuir.com/en/boutique-en-ligne/"], "names": ["Conception Cuir"], "sources": ["search_sweep_nonfood"], "source_pages": ["cuir artisanal Québec boutique en ligne sacs"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)"]}
801 845 {"domain": "conceptrenoplus.ca", "urls": ["https://www.conceptrenoplus.ca/renovation-de-cuisine/", "https://www.conceptrenoplus.ca/renovation-de-salle-de-bain/", "https://www.conceptrenoplus.ca/renovation-de-sous-sol/", "https://conceptrenoplus.ca/", "https://www.conceptrenoplus.ca/"], "names": ["Rénovation résidentielle : quand l’organisation fait toute la différence"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/renovation-residentielle/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
802 846 {"domain": "concretememory.com", "urls": ["https://concretememory.com/?aftag=c24e732f69d9408cb2de9e071e9d971c&utm_medium=afocus"], "names": ["Concrete Memory"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/concretememory/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
847 +{"domain": "cone10.ca", "urls": ["https://cone10.ca/blog-mario-ruy/blog-post-title-two-alf8z-1kJDy"], "names": ["Atelier Cône10"], "sources": ["search_sweep_cmaq"], "source_pages": ["Atelier Cône10 Mario Ruy Hernandez Vega céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
803 848 {"domain": "confettimill.com", "urls": ["https://www.confettimill.com/"], "names": ["Confetti Mill"], "sources": ["search_sweep_vendors"], "source_pages": ["\"Confetti Mill\" tablier lin enfant Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
804 849 {"domain": "confitepiceriebuvette.com", "urls": ["https://www.confitepiceriebuvette.com/"], "names": ["Confit Épicerie-Buvette"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/confit-epicerie-buvette"], "socials": ["https://www.instagram.com/confitcharlevoix/", "https://www.facebook.com/profile.php?id=61557837117696", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G5A", "phone": "418 665-6869", "regions_mentioned": ["Saguenay"]}
805 850 {"domain": "confreriebrasseurs.com", "urls": ["https://www.confreriebrasseurs.com/", "https://confreriebrasseurs.com/", "https://confreriebrasseurs.com/distributeurs/"], "names": ["La Confrérie Artisans Brasseurs", "Créateurs"], "sources": ["ambq_profils", "createursdesaveurs"], "source_pages": ["https://ambq.ca/fr/microbrasserie/la-confrerie-artisans-brasseurs", "https://createursdesaveurs.com/createurs/la-confrerie-artisans-brasseurs/"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/laconfrerie.artisansbrasseurs", "https://www.instagram.com/confreriebrasseurs/", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-confrerie-artisans-brasseurs%2F&t=La%20Confr%C3%A9rie%20Artisans%20Brasseurs", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-confrerie-artisans-brasseurs%2F&text=La%20Confr%C3%A9rie%20Artisans%20Brasseurs", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-confrerie-artisans-brasseurs%2F&title=La%20Confr%C3%A9rie%20Artisans%20Brasseurs&summary="], "postal_prefix": "J1S", "phone": "819 628-0260", "regions_mentioned": ["Cantons-de-l'Est"]}
@@ -844,6 +889,7 @@
844 889 {"domain": "coureusedesgreves.com", "urls": ["https://www.coureusedesgreves.com"], "names": ["Café La Coureuse des Grèves"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/cafe-la-coureuse-des-greves"], "socials": ["https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 598-9111", "regions_mentioned": []}
845 890 {"domain": "courgescie.com", "urls": ["https://courgescie.com/", "https://courgescie.com/marche-en-ligne/"], "names": ["ÉCONOMUSÉE® du maraîcher : courges et citrouilles"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-du-maraicher-courges-citrouille/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/Courges-cie-627179817296463", "https://www.instagram.com/courgescie/"], "postal_prefix": null, "phone": "819 663-0089", "regions_mentioned": ["Lac-Saint-Jean"]}
846 891 {"domain": "coussinsetc.com", "urls": ["https://coussinsetc.com/?aftag=94b1c68ed621adc58ab2a5c63a4a0a49&utm_medium=afocus", "https://coussinsetc.com/"], "names": ["Coussin etc.", "Coussins etc"], "sources": ["icq_resolved", "search_sweep_vendors"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/coussinsetc/", "\"Coussins etc\" Québec coussin boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
892 +{"domain": "couteauxdeva.com", "urls": ["https://couteauxdeva.com"], "names": ["Couteaux Deva"], "sources": ["search_sweep_cmaq"], "source_pages": ["Couteaux Deva Dave Fortin coutelier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec, QC"]}
847 893 {"domain": "couteauxkaizenknives.com", "urls": ["https://www.couteauxkaizenknives.com/fr", "https://couteauxkaizenknives.com"], "names": ["Couteaux Kaizen Knives - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/couteaux-kaizen-knives-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H1M", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
848 894 {"domain": "couteauxma.com", "urls": ["https://www.couteauxma.com/%C3%A0-propos"], "names": ["Couteaux MÀ"], "sources": ["search_sweep_cmaq"], "source_pages": ["Couteaux MÀ Alexis Mercier coutelier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
849 895 {"domain": "coutelleriedartpierreroy.com", "urls": ["https://www.coutelleriedartpierreroy.com/"], "names": ["Pierre-Thibaut - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/pierre-thibaut-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J3M", "phone": "514 847-9799", "regions_mentioned": []}
@@ -857,9 +903,12 @@
857 903 {"domain": "cpelacajolerie.com", "urls": ["https://cpelacajolerie.com/"], "names": ["CPE la Cajolerie – Côte Réserve", "CPE La Cajolerie #1"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/cpe-la-cajolerie-cote-reserve/", "https://zoneboreale.com/entreprises/cpe-la-cajolerie-saint-honore/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/cpelacajolerie/?locale=fr_CA", "https://www.facebook.com/cpelacajolerie"], "postal_prefix": "G7J", "phone": "418 545-8183", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
858 904 {"domain": "craler.com", "urls": ["https://craler.com/"], "names": ["Craler"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/craler/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/"], "postal_prefix": "J6Z", "phone": "450-681-6860", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
859 905 {"domain": "cratereetmarees.ca", "urls": ["https://cratereetmarees.ca/"], "names": ["Comité touristique Cratère et marées"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/comite-touristique-cratere-et-marees"], "socials": ["https://www.facebook.com/Cratereetmarees/?locale=fr_FR", "https://www.instagram.com/tourisme_cratere_et_marees/", "https://www.youtube.com/@comitetouristiqueleseboule6619", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/"], "postal_prefix": "G0A", "phone": null, "regions_mentioned": ["Saguenay"]}
906 +{"domain": "crea-pierre.com", "urls": ["https://crea-pierre.com"], "names": ["Créa-Pierre"], "sources": ["search_sweep_cmaq"], "source_pages": ["Créa-Pierre Alexandre Maquet tailleur de pierre québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
860 907 {"domain": "createursdesaveursetcie.com", "urls": ["https://www.createursdesaveursetcie.com", "https://www.createursdesaveursetcie.com/fr/produits/gelees-confitures.html"], "names": ["Miel Morand", "Créateurs de Saveurs & Cie"], "sources": ["alimentsduquebec_ent", "search_sweep_food"], "source_pages": ["https://alimentsduquebec.com/entreprises/miel-morand", "confiture gelée boutique en ligne Chaudière-Appalaches Laurentides artisanale fruits"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0K", "phone": null, "regions_mentioned": ["Lanaudière"]}
908 +{"domain": "creationsbranie.com", "urls": ["https://creationsbranie.com"], "names": ["Les créations Branie"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Sherbrooke boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
861 909 {"domain": "creationsdancelia.ca", "urls": ["http://creationsdancelia.ca/", "http://creationsdancelia.ca"], "names": ["CreationsDanCelia"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/creationsdancelia"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G0W", "phone": "514 847-9799", "regions_mentioned": []}
862 910 {"domain": "creationsladentsucree.com", "urls": ["https://creationsladentsucree.com/"], "names": ["Créations La dent sucrée - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/creations-la-dent-sucree/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/creationladentsucree", "https://www.instagram.com/creationsladentsucree", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/creations-la-dent-sucree/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Créations La dent sucrée&url=https://goutezy.com/entreprise/creations-la-dent-sucree/"], "postal_prefix": "J3T", "phone": "(873) 559-1148", "regions_mentioned": ["Centre-du-Québec"]}
911 +{"domain": "creationslalouve.com", "urls": ["https://creationslalouve.com/collections/boucles-doreilles"], "names": ["Créations La Louve"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux autochtones perlage Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
863 912 {"domain": "creationsmoutonnoir.com", "urls": ["https://www.creationsmoutonnoir.com/fr", "https://www.creationsmoutonnoir.com"], "names": ["La Petite Ferme du Mouton Noir"], "sources": ["search_sweep_nonfood", "search_sweep_urban"], "source_pages": ["vêtements bébé enfant fabriqués au Québec boutique en ligne", "jouets québécois vêtements bébé fabriqués Montréal boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)", "Montréal"]}
864 913 {"domain": "creationsodie.com", "urls": ["https://creationsodie.com/policies/shipping-policy?aftag=40033e96553ba58c7941d28edf06a64e&utm_medium=afocus"], "names": ["Créations Odie"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/creationsodie/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
865 914 {"domain": "creationszonta.ca", "urls": ["https://creationszonta.ca"], "names": ["Creations Zonta"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/creations-zonta"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J4B", "phone": "514 847-9799", "regions_mentioned": []}
@@ -942,12 +991,14 @@
942 991 {"domain": "depanneurdufjord.com", "urls": ["http://www.depanneurdufjord.com", "https://depanneurdufjord.com/boutique/boulangerie"], "names": ["Pains Lalancette"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/pains-lalancette/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/depanneurdufjord/"], "postal_prefix": "G7B", "phone": "418 544-8631", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
943 992 {"domain": "dermtek.com", "urls": ["https://www.dermtek.com"], "names": ["Dermtek Pharma Inc."], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/dermtek-pharma-inc"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H9R", "phone": "514 847-9799", "regions_mentioned": []}
944 993 {"domain": "deschaillons.ca", "urls": ["https://www.deschaillons.ca/repertoire/marche-public/", "https://www.deschaillons.ca/marche-public"], "names": ["Marché public de Deschaillons - Goûtez-y!", "Marché public de Deschaillons-sur-St-Laurent"], "sources": ["goutezy", "marchespublics"], "source_pages": ["https://goutezy.com/entreprise/marche-public-de-deschaillons/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-deschaillons-sur-st-laurent/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/p/March%C3%A9-public-de-Deschaillons-100057182361609/?locale=fr_CA", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/marche-public-de-deschaillons/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Marché public de Deschaillons&url=https://goutezy.com/entreprise/marche-public-de-deschaillons/", "https://www.facebook.com/profile.php?id=100057182361609", "https://www.facebook.com/marchespublicsqc", "https://www.linkedin.com/company/marches-publics-du-quebec/", "https://www.instagram.com/marchespublicsqc/", "https://www.youtube.com/channel/UCtwIcRX4_9l0XsOT7MgjFQQ"], "postal_prefix": "G0S", "phone": "(514) 270-7888", "regions_mentioned": ["Centre-du-Québec"]}
945 −{"domain": "desenfantillages.com", "urls": ["https://desenfantillages.com/?aftag=330358ce6257a039489b4ef1e2bbf379&utm_medium=afocus"], "names": ["Des enfantillages"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/desenfantillages/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
994 +{"domain": "desenfantillages.com", "urls": ["https://desenfantillages.com/?aftag=330358ce6257a039489b4ef1e2bbf379&utm_medium=afocus", "https://desenfantillages.com/"], "names": ["Des enfantillages", "Shed espace créatif"], "sources": ["icq_resolved", "search_sweep_cmaq"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/desenfantillages/", "Shed espace créatif Geneviève Lugaz québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
995 +{"domain": "designgama.com", "urls": ["https://www.designgama.com/about-3"], "names": ["Créations GAMA"], "sources": ["search_sweep_cmaq"], "source_pages": ["Créations GAMA Gabrielle Mailhot-Côté couturier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
946 996 {"domain": "desloups.ca", "urls": ["https://desloups.ca/", "https://www.desloups.ca/"], "names": ["Desloups - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/desloups-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2X", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
947 997 {"domain": "desrochersd.com", "urls": ["https://desrochersd.com/"], "names": ["Ferme Apicole Desrochers D. inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/ferme-apicole-desrochers-d-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/DesrochersD", "https://www.instagram.com/desrochersd_/"], "postal_prefix": "J0W", "phone": null, "regions_mentioned": ["Laurentides"]}
948 998 {"domain": "destinationautocueillette.com", "urls": ["http://www.destinationautocueillette.com/"], "names": ["Fraisière Lauzon et Fils"], "sources": ["laurentidesjenmange"], "source_pages": ["https://laurentidesjenmange.ca/membre/fraisiere-lauzon-et-fils-senc"], "socials": ["https://www.facebook.com/laurentidesjm/", "https://www.instagram.com/laurentidesjenmange/", "https://www.facebook.com/fraisierelauzonetfils"], "postal_prefix": "J5N", "phone": "450-478-7605", "regions_mentioned": ["Laurentides"]}
949 999 {"domain": "detailquebec.com", "urls": ["https://detailquebec.com/innovation-quebecoise-des-chariots-de-magasinage/"], "names": ["Diego caddys"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/diego-caddys"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G7A", "phone": "514 847-9799", "regions_mentioned": []}
950 1000 {"domain": "detourenfrance.com", "urls": ["http://www.detourenfrance.com"], "names": ["Détour en France"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/detour-en-france"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G0R", "phone": null, "regions_mentioned": ["Chaudière-Appalaches"]}
1001 +{"domain": "devidrio.ca", "urls": ["https://www.devidrio.ca/history-and-team"], "names": ["Devidrio"], "sources": ["search_sweep_cmaq"], "source_pages": ["Devidrio Guillermo Raynié artiste verrier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Trois-Rivières, QC"]}
951 1002 {"domain": "devinci.com", "urls": ["https://www.devinci.com/fr/quebec"], "names": ["Cycles Devinci"], "sources": ["search_sweep_manuf"], "source_pages": ["vélos fabricant québécois Devinci Argon 18 boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Chicoutimi, QC"]}
952 1003 {"domain": "dfevaluation.com", "urls": ["https://dfevaluation.com/a-propos/"], "names": ["Les meilleurs évaluateurs de véhicules antiques au Québec en 2026"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-particuliers/meilleurs-evaluateurs-de-vehicules-antiques-quebec/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
953 1004 {"domain": "diegocaddys.com", "urls": ["https://diegocaddys.com/", "http://diegocaddys.com/"], "names": ["Diego caddys"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/diego-caddys"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G7A", "phone": "514 847-9799", "regions_mentioned": []}
@@ -1031,11 +1082,13 @@
1031 1082 {"domain": "domainevalga.com", "urls": ["https://www.domainevalga.com"], "names": ["Érablière Valga"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/erabliere-valga/"], "socials": ["https://www.facebook.com/domainevalga", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/erabliere-valga/", "https://twitter.com/intent/tweet?text=%C3%89rabli%C3%A8re+Valga https://www.erabledici.ca/fr/erabliere/erabliere-valga/"], "postal_prefix": "G0K", "phone": "418 739-4200", "regions_mentioned": ["Bas-Saint-Laurent"]}
1032 1083 {"domain": "domainevallierrobert.ca", "urls": ["https://domainevallierrobert.ca/", "https://domainevallierrobert.ca/decouvrez-les-acers/", "http://domainevallierrobert.ca/produits/acers/"], "names": ["ÉCONOMUSÉE® de l’acériculture : boissons alcoolisées", "Domaine Vallier Robert"], "sources": ["artisansaloeuvre", "erabledici"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-lacericulture-boissons-alcoolisees/", "https://www.erabledici.ca/fr/erabliere/domaine-vallier-robert/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/DomaineAcer/", "https://www.instagram.com/domaine.acer/", "https://www.facebook.com/DomaineVallierRobert", "https://www.instagram.com/domaine_vallier_robert/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/domaine-vallier-robert/", "https://twitter.com/intent/tweet?text=Domaine+Vallier+Robert https://www.erabledici.ca/fr/erabliere/domaine-vallier-robert/"], "postal_prefix": "G0L", "phone": "418 899-2825", "regions_mentioned": ["Lac-Saint-Jean", "Bas-Saint-Laurent"]}
1033 1084 {"domain": "domainevertforet.ca", "urls": ["http://domainevertforet.ca/"], "names": ["Domaine Vert Forêt"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/domaine-vert-foret/"], "socials": ["https://www.facebook.com/DomaineVertForet", "https://www.instagram.com/domainevertforet/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/domaine-vert-foret/", "https://twitter.com/intent/tweet?text=Domaine+Vert+For%C3%AAt https://www.erabledici.ca/fr/erabliere/domaine-vert-foret/"], "postal_prefix": "G0L", "phone": "418 899-0987", "regions_mentioned": ["Bas-Saint-Laurent"]}
1034 −{"domain": "dominicdufourjoaillier.com", "urls": ["https://www.dominicdufourjoaillier.com/fr", "https://www.dominicdufourjoaillier.com"], "names": ["Dominic Dufour joaillier - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/dominic-dufour-joaillier-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7A", "phone": "514 847-9799", "regions_mentioned": ["Laurentides", "Montréal"]}
1085 +{"domain": "dominicdufourjoaillier.com", "urls": ["https://www.dominicdufourjoaillier.com/fr", "https://www.dominicdufourjoaillier.com"], "names": ["Dominic Dufour joaillier - CMAQ", "Dominic Dufour Joaillier"], "sources": ["lesproduitsduquebec_ent", "search_sweep_bijoux"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/dominic-dufour-joaillier-cmaq", "joaillerie québécoise boutique en ligne créateur"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7A", "phone": "514 847-9799", "regions_mentioned": ["Laurentides", "Montréal", "Québec"]}
1035 1086 {"domain": "dominiongrimm.ca", "urls": ["https://www.dominiongrimm.ca"], "names": ["Dominion & Grimm"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois équipement érablière acériculture évaporateurs boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (100+ years)"]}
1087 +{"domain": "donjjewellery.com", "urls": ["https://donjjewellery.com/fr/bijoux-sherbrooke"], "names": ["Donj Jewellery"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Sherbrooke boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Sherbrooke / Saguenay"]}
1036 1088 {"domain": "doranola.com", "urls": ["https://doranola.com/"], "names": ["Dora Nola"], "sources": ["search_sweep_vendors"], "source_pages": ["\"Dora Nola\" foulard sac Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
1037 1089 {"domain": "dosport.ca", "urls": ["https://dosport.ca/"], "names": ["Do Sport"], "sources": ["search_sweep_nonfood"], "source_pages": ["Do Sport planches paddle surf kayak fabriqué Québec site officiel"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Mauricie (Trois-Rivières)"]}
1038 1090 {"domain": "dou.bio", "urls": ["https://dou.bio/"], "names": ["DOÜ"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/dou/"], "socials": ["https://www.facebook.com/Dou.erable", "https://www.instagram.com/dou.erable/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/dou/", "https://twitter.com/intent/tweet?text=DO%C3%9C https://www.erabledici.ca/fr/erabliere/dou/"], "postal_prefix": "G0L", "phone": "581 234-8856", "regions_mentioned": ["Bas-Saint-Laurent"]}
1091 +{"domain": "doucetlatendresse.com", "urls": ["https://www.doucetlatendresse.com"], "names": ["Doucet Latendresse"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Gatineau boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Gatineau / Québec"]}
1039 1092 {"domain": "douceurdici.ca", "urls": ["http://www.douceurdici.ca", "https://douceurdici.ca/products/sirop-derable-pur", "https://douceurdici.ca/products/beurre-derable", "https://douceurdici.ca/products/sucre-granule-a-lerable", "https://douceurdici.ca/products/caramel-a-lerable", "https://douceurdici.ca/products/bonbon-au-sirop-derable-pur", "https://douceurdici.ca/products/sauce-bbq"], "names": ["Érablière Douceur d’ici"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/erabliere-douceur-dici/"], "socials": ["https://www.facebook.com/FrancineouelletStevedumont/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/erabliere-douceur-dici/", "https://twitter.com/intent/tweet?text=%C3%89rabli%C3%A8re+Douceur+d%26rsquo%3Bici https://www.erabledici.ca/fr/erabliere/erabliere-douceur-dici/"], "postal_prefix": "G0K", "phone": "418 894-4855", "regions_mentioned": ["Bas-Saint-Laurent"]}
1040 1093 {"domain": "douceursdesappalaches.com", "urls": ["http://www.douceursdesappalaches.com", "https://www.douceursdesappalaches.com", "https://www.douceursdesappalaches.com/"], "names": ["Douceurs des Appalaches"], "sources": ["alimentsduquebec_ent", "arretsgourmands", "search_sweep_food"], "source_pages": ["https://alimentsduquebec.com/entreprises/douceurs-des-appalaches", "https://arretsgourmands.ca/arrets-gourmands/douceurs-des-appalaches", "produits érable boutique en ligne Chaudière-Appalaches érablière"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/Douceursdesappalaches", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 999-2358", "regions_mentioned": ["Chaudière-Appalaches"]}
1041 1094 {"domain": "doupando.com", "urls": ["https://www.doupando.com/fr/?aftag=beed37bfd0b6723641a41c98fac53d30&utm_medium=afocus"], "names": ["Doupando"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/doupando/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
@@ -1043,6 +1096,7 @@
1043 1096 {"domain": "drolet.ca", "urls": ["https://www.drolet.ca/ca/fr/poeles-a-bois"], "names": ["Drolet"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois poêles à bois vente en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)"]}
1044 1097 {"domain": "druidebio.com", "urls": ["https://druidebio.com/fr/"], "names": ["LABORATOIRES DRUIDE INC"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/laboratoires-druide-inc"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H9R", "phone": "514 847-9799", "regions_mentioned": []}
1045 1098 {"domain": "dubeloiselle.ca", "urls": ["http://www.dubeloiselle.ca"], "names": ["Dubé Loiselle"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/dube-loiselle"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J2H", "phone": null, "regions_mentioned": ["Estrie"]}
1099 +{"domain": "duchanvre.com", "urls": ["https://duchanvre.com/en"], "names": ["DuChanvre"], "sources": ["search_sweep_cmaq"], "source_pages": ["DuChanvre Anthony Néron peintre décorateur québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Estrie, QC"]}
1046 1100 {"domain": "ducsdemontrichard.com", "urls": ["http://www.ducsdemontrichard.com", "https://ducsdemontrichard.com/", "https://ducsdemontrichard.com/pages/produits", "https://ducsdemontrichard.com/pages/detaillants?srsltid=AfmBOooNY-4REhXauFwKlofHJO7PBo8qo98CsvC-EHZ7OJz3wNG9S5x2"], "names": ["Ducs De Montrichard", "Créateurs"], "sources": ["alimentsduquebec_ent", "createursdesaveurs"], "source_pages": ["https://alimentsduquebec.com/entreprises/ducs-de-montrichard", "https://createursdesaveurs.com/createurs/ducs-de-montrichard/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/DucsdeMontrichard", "https://www.instagram.com/ducsdemontrichard/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fducs-de-montrichard%2F&t=Ducs%20de%20Montrichard", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fducs-de-montrichard%2F&text=Ducs%20de%20Montrichard", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fducs-de-montrichard%2F&title=Ducs%20de%20Montrichard&summary="], "postal_prefix": "J1X", "phone": "(819) 868-4217", "regions_mentioned": ["Estrie", "Cantons-de-l'Est"]}
1047 1101 {"domain": "duhaimegourmet.com", "urls": ["https://www.duhaimegourmet.com/"], "names": ["Duhaime Gourmet (9285-4983 Qc Inc)"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/duhaime-gourmet-9285-4983-qc-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0C", "phone": null, "regions_mentioned": ["Centre-du-Québec"]}
1048 1102 {"domain": "duminot.com", "urls": ["http://www.duminot.com", "https://www.duminot.com/", "https://www.duminot.com/boutique-en-ligne/", "http://www.duminot.com/"], "names": ["CIDRERIE DU MINOT", "ÉCONOMUSÉE® du cidriculteur", "Cidrerie du Minot – Les producteurs de cidre du Québec"], "sources": ["alimentsduquebec_ent", "artisansaloeuvre", "cidreduquebec"], "source_pages": ["https://alimentsduquebec.com/entreprises/cidrerie-du-minot", "https://artisansaloeuvre.com/artisans/economusee-du-cidriculteur/", "https://cidreduquebec.com/cidreries/cidrerie-du-minot/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/duminot/", "https://www.facebook.com/cidreduquebec", "https://www.instagram.com/cidreduquebec", "https://www.facebook.com/Cidrerie-du-Minot-162782170447952/", "https://www.facebook.com/groups/jaimelecidreduquebec"], "postal_prefix": "J0L", "phone": "450-247 3111", "regions_mentioned": ["Montérégie", "Lac-Saint-Jean", "Montréal"]}
@@ -1061,6 +1115,7 @@
1061 1115 {"domain": "ebenisteriepelletieretfils.com", "urls": ["https://www.ebenisteriepelletieretfils.com"], "names": ["Ébénisterie Pelletier et fils"], "sources": ["search_sweep_cmaq"], "source_pages": ["Ébénisterie Pelletier et fils Antoine Pelletier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
1062 1116 {"domain": "ebenisteriestevegenesse.com", "urls": ["https://ebenisteriestevegenesse.com/?aftag=a2ff1df51d655fe83a613012c5a8ef4c&utm_medium=afocus"], "names": ["Ébénisterie Steve Genesse"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/ebenisteriestevegenesse/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
1063 1117 {"domain": "echappeeiac.com", "urls": ["https://echappeeiac.com/"], "names": ["L'Échappée de L'Isle-aux-Coudres"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/echappee-isle-aux-coudres"], "socials": ["https://www.facebook.com/echappee.iac", "https://www.instagram.com/echappeecharlevoix/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": null, "phone": "418 806-9855", "regions_mentioned": ["Saguenay"]}
1118 +{"domain": "ecksand.com", "urls": ["https://ecksand.com/fr/pages/jewelry-store-montreal", "https://ecksand.com"], "names": ["Ecksand", "Ecksand Jewels"], "sources": ["search_sweep_bijoux", "search_sweep_cmaq"], "source_pages": ["bijouterie Brossard boutique en ligne", "Ecksand Jewels Yoan Gehant-Vidoni joaillier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal / Brossard", "Montréal, QC"]}
1064 1119 {"domain": "ecoboeuf.com", "urls": ["https://www.ecoboeuf.com/"], "names": ["Écoboeuf"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/ecoboeuf"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0Z", "phone": null, "regions_mentioned": ["Abitibi", "Témiscamingue"]}
1065 1120 {"domain": "ecoledu3iemerang.com", "urls": ["http://www.ecoledu3iemerang.com", "https://www.ecoledu3iemerang.com/"], "names": ["L’École du 3e rang – Vignoble et Cidrerie – Les producteurs de cidre du Québec", "Créateurs"], "sources": ["cidreduquebec", "createursdesaveurs"], "source_pages": ["https://cidreduquebec.com/cidreries/lecole-du-3e-rang-vignoble-et-cidrerie/", "https://createursdesaveurs.com/createurs/ecole-du-3e-rang-vignoble-et-cidrerie/"], "socials": ["https://www.facebook.com/cidreduquebec", "https://www.instagram.com/cidreduquebec", "https://www.facebook.com/ecoledu3erang/", "https://www.facebook.com/groups/jaimelecidreduquebec", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fecole-du-3e-rang-vignoble-et-cidrerie%2F&t=%C3%89cole%20du%203e%20rang%2C%20vignoble%20et%20cidrerie", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fecole-du-3e-rang-vignoble-et-cidrerie%2F&text=%C3%89cole%20du%203e%20rang%2C%20vignoble%20et%20cidrerie", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fecole-du-3e-rang-vignoble-et-cidrerie%2F&title=%C3%89cole%20du%203e%20rang%2C%20vignoble%20et%20cidrerie&summary="], "postal_prefix": "J0E", "phone": "450-539-5467", "regions_mentioned": ["Estrie", "Montréal", "Cantons-de-l'Est"]}
1066 1121 {"domain": "ecolocado.com", "urls": ["https://ecolocado.com?aftag=4ff44ef7e925ad4cb868e3031bc8aac6&utm_medium=afocus", "https://www.ecolocado.com"], "names": ["Ecolocado", "Boutique Ecolocado"], "sources": ["icq_resolved", "lesproduitsduquebec_det"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/ecolocado/", "https://lesproduitsduquebec.com/detaillants/boutique-ecolocado"], "socials": ["https://www.facebook.com/ecolocadoboutique", "https://www.instagram.com/ecolocado/", "https://www.linkedin.com/company/ecolocado/?viewAsMember=true", "https://www.tiktok.com/@ecolocado", "https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J6A", "phone": "514 847-9799", "regions_mentioned": []}
@@ -1343,11 +1398,11 @@
1343 1398 {"domain": "fitsauces.com", "urls": ["http://www.fitsauces.com"], "names": ["Fitcookfoodz"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/fitcookfoodz"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": null, "phone": null, "regions_mentioned": []}
1344 1399 {"domain": "fkaiser.com", "urls": ["https://www.fkaiser.com/"], "names": ["Fromagerie Fritz Kaiser"], "sources": ["fromagesdici"], "source_pages": ["https://www.fromagesdici.com/fr/fromageries/fritz-kaiser"], "socials": ["https://www.facebook.com/fromagesdici", "https://www.youtube.com/channel/UCxSGDuWDPFOvNy7xP_LylcA", "https://www.instagram.com/fromages.dici/", "https://www.pinterest.ca/fromagesdici/"], "postal_prefix": "J0J", "phone": "450 294-2207", "regions_mentioned": ["Abitibi", "Bas-Saint-Laurent", "Centre-du-Québec", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue", "Îles-de-la-Madeleine"]}
1345 1400 {"domain": "flambette.com", "urls": ["https://flambette.com/?aftag=e0cdc4d8ced45c6527498589d1c58ea9&utm_medium=afocus", "https://www.flambette.com", "https://flambette.com/"], "names": ["Flambette"], "sources": ["icq_resolved", "lesproduitsduquebec_ent", "search_sweep_vendors"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/flambette/", "https://lesproduitsduquebec.com/entreprises-adherentes/flambette", "direct domain guess flambette.com, verified via WebFetch"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G8Z", "phone": "514 847-9799", "regions_mentioned": ["Mauricie", "QC"]}
1346 −{"domain": "flammeenrose.com", "urls": ["https://flammeenrose.com/"], "names": ["Flamme en Rose"], "sources": ["search_sweep_nonfood"], "source_pages": ["bijoux faits main Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
1401 +{"domain": "flammeenrose.com", "urls": ["https://flammeenrose.com", "https://flammeenrose.com/"], "names": ["Flamme en Rose"], "sources": ["search_sweep_bijoux", "search_sweep_nonfood"], "source_pages": ["joaillerie québécoise boutique en ligne créateur", "bijoux faits main Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
1347 1402 {"domain": "flavora.ca", "urls": ["https://flavora.ca/", "https://flavora.ca/boutique/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/flavora/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/flavora.compton/", "https://www.instagram.com/flavora_compton/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fflavora%2F&t=Flavora", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fflavora%2F&text=Flavora", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fflavora%2F&title=Flavora&summary="], "postal_prefix": "J0B", "phone": "(819) 238-5089", "regions_mentioned": ["Cantons-de-l'Est"]}
1348 1403 {"domain": "flavva.com", "urls": ["https://flavva.com/"], "names": ["GourmetIntelligent Canada inc. (Flavva)"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/gourmetintelligent-canada-inc-flavva"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H3M", "phone": null, "regions_mentioned": ["Montréal"]}
1349 1404 {"domain": "flektoys.com", "urls": ["https://flektoys.com"], "names": ["Jouets Flek / Flek Toys"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/jouets-flek-flek-toys"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7C", "phone": "514 847-9799", "regions_mentioned": []}
1350 −{"domain": "flesch.ca", "urls": ["https://flesch.ca/fr", "https://www.flesch.ca"], "names": ["FLESCH - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/flesch-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J1H", "phone": "514 847-9799", "regions_mentioned": []}
1405 +{"domain": "flesch.ca", "urls": ["https://flesch.ca/fr", "https://www.flesch.ca", "https://flesch.ca"], "names": ["FLESCH - CMAQ", "Flesch"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/flesch-cmaq", "Flesch Esther Chabot joaillier québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J1H", "phone": "514 847-9799", "regions_mentioned": ["Estrie, QC"]}
1351 1406 {"domain": "fleurdeselgaspesienne.com", "urls": ["http://fleurdeselgaspesienne.com"], "names": ["PRODUCTEURS/TRANSFORMATEURS"], "sources": ["gaspesiegourmande"], "source_pages": ["https://gaspesiegourmande.com/producteurs-transformateurs?id=466&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=466&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=466&amp;Filtre=10&amp;FiltreSec=4"], "socials": ["https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": null, "phone": "418 385-2891", "regions_mentioned": ["Gaspésie"]}
1352 1407 {"domain": "fleurdolive.com", "urls": ["http://www.fleurdolive.com"], "names": ["Fleur d'Olive Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/fleur-dolive-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/fleurdolive.inc", "https://www.instagram.com/fleur.d.olive/?hl=fr"], "postal_prefix": "J3M", "phone": null, "regions_mentioned": ["Montérégie"]}
1353 1408 {"domain": "fleursdelune.com", "urls": ["https://fleursdelune.com/"], "names": ["Auberge Fleurs de Lune"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/auberge-fleurs-de-lune"], "socials": ["https://www.facebook.com/aubergefleursdelune", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G5A", "phone": "418 665-1090", "regions_mentioned": ["Saguenay"]}
@@ -1360,7 +1415,7 @@
1360 1415 {"domain": "fondussimo.com", "urls": ["https://fondussimo.com/", "https://fondussimo.com/?aftag=34b7c49feb8ab29824c82fefe83524cf&utm_medium=afocus"], "names": ["Fondussimo"], "sources": ["alimentsduquebec_ent", "icq_resolved"], "source_pages": ["https://alimentsduquebec.com/entreprises/fondussimo", "https://www.ideecadeauquebec.com/boutique/fondussimo/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/Fondussimo", "https://www.instagram.com/fondussimo/"], "postal_prefix": null, "phone": null, "regions_mentioned": []}
1361 1416 {"domain": "foodcrayon.com", "urls": ["https://foodcrayon.com/"], "names": ["Food Crayon"], "sources": ["search_sweep_vendors"], "source_pages": ["direct domain guess foodcrayon.com, verified via WebFetch"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
1362 1417 {"domain": "foodlabouffe.net", "urls": ["https://foodlabouffe.net/", "https://foodlabouffe.net/boutique/", "https://foodlabouffe.net/points-de-vente/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/les-produits-alimentaires-food-la-bouffe/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/FoodLaBouffe/", "https://www.instagram.com/foodlabouffe", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-produits-alimentaires-food-la-bouffe%2F&t=Les%20Produits%20Alimentaires%20FOOD%20la%20Bouffe", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-produits-alimentaires-food-la-bouffe%2F&text=Les%20Produits%20Alimentaires%20FOOD%20la%20Bouffe", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-produits-alimentaires-food-la-bouffe%2F&title=Les%20Produits%20Alimentaires%20FOOD%20la%20Bouffe&summary="], "postal_prefix": "J1N", "phone": "(819) 823-4471", "regions_mentioned": ["Cantons-de-l'Est"]}
1363 −{"domain": "forgeilmarinen.com", "urls": ["https://www.forgeilmarinen.com"], "names": ["La Forge d'Ilmarinen"], "sources": ["search_sweep_manuf"], "source_pages": ["forge artisanale québécoise boutique en ligne ferronnerie d'art"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Compton, QC"]}
1418 +{"domain": "forgeilmarinen.com", "urls": ["https://www.forgeilmarinen.com/propos.php", "https://www.forgeilmarinen.com"], "names": ["La Forge d'Ilmarinen inc.", "La Forge d'Ilmarinen"], "sources": ["search_sweep_cmaq", "search_sweep_manuf"], "source_pages": ["La Forge d'Ilmarinen Romain Francès ferronnier d'art québec", "forge artisanale québécoise boutique en ligne ferronnerie d'art"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Compton, QC"]}
1364 1419 {"domain": "form.jotform.com", "urls": ["https://form.jotform.com/lalegumeriedionne/bordereau-de-commande-2"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/la-legumerie-groupe-dionne-inc/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/lalegumeriegroupedionne", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-legumerie-groupe-dionne-inc%2F&t=La%20L%C3%A9gumerie%20Groupe%20Dionne%20inc", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-legumerie-groupe-dionne-inc%2F&text=La%20L%C3%A9gumerie%20Groupe%20Dionne%20inc", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-legumerie-groupe-dionne-inc%2F&title=La%20L%C3%A9gumerie%20Groupe%20Dionne%20inc&summary="], "postal_prefix": "J0B", "phone": "(819) 875-5477", "regions_mentioned": ["Cantons-de-l'Est", "Estrie", "Montréal", "Montérégie"]}
1365 1420 {"domain": "formedica.com", "urls": ["https://www.formedica.com"], "names": ["Formedica"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/formedica"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": null, "phone": "514 847-9799", "regions_mentioned": []}
1366 1421 {"domain": "forms.gle", "urls": ["https://forms.gle/YBS21mfvDnB5rHeN7"], "names": ["Érablière Provencher et Fils"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/erabliere-provencher-et-fils/"], "socials": ["https://www.facebook.com/marketplace/item/128308135815166", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/erabliere-provencher-et-fils/", "https://twitter.com/intent/tweet?text=%C3%89rabli%C3%A8re+Provencher+et+Fils https://www.erabledici.ca/fr/erabliere/erabliere-provencher-et-fils/"], "postal_prefix": "G0P", "phone": "514 712-1297", "regions_mentioned": ["Centre-du-Québec"]}
@@ -1483,6 +1538,7 @@
1483 1538 {"domain": "gelcare.com", "urls": ["https://gelcare.com"], "names": ["GELCARE"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/gelcare"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2H", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
1484 1539 {"domain": "gelsani-k.ca", "urls": ["https://gelsani-k.ca/produits/ols/products/sani-k-4-l", "https://gelsani-k.ca/"], "names": ["Sani-K - Gel désinfectant pour les mains 4 litres Antibactérien - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/sani-k-gel-desinfectant-pour-les-mains-4-litres-antibacterien/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montreal", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
1485 1540 {"domain": "gemmelesirop.ca", "urls": ["https://gemmelesirop.ca/"], "names": ["Gemme Le Sirop SENC"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/gemme-le-sirop-senc/"], "socials": ["https://www.facebook.com/gemmelesirop", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/gemme-le-sirop-senc/", "https://twitter.com/intent/tweet?text=Gemme+Le+Sirop+SENC https://www.erabledici.ca/fr/erabliere/gemme-le-sirop-senc/"], "postal_prefix": "J0L", "phone": "450 502-1298", "regions_mentioned": ["Montérégie"]}
1541 +{"domain": "gemmesquebec.com", "urls": ["https://www.gemmesquebec.com"], "names": ["Gemmes Québec"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux pierres minéraux Québec créateur boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
1486 1542 {"domain": "gen-v.com", "urls": ["http://www.gen-v.com"], "names": ["Cultures Gen V inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/cultures-gen-v-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0L", "phone": null, "regions_mentioned": ["Montérégie"]}
1487 1543 {"domain": "genacol.ca", "urls": ["http://genacol.ca/"], "names": ["Genacol"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/genacol"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7C", "phone": "514 847-9799", "regions_mentioned": ["Laurentides"]}
1488 1544 {"domain": "genevrier.com", "urls": ["https://genevrier.com", "https://genevrier.com/"], "names": ["Chalets Genévrier Quatre Saisons", "Camping Le Genévrier"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/chalets-genevrier-quatre-saisons", "https://www.tourisme-charlevoix.com/fr/entreprises/camping-le-genevrier"], "socials": ["https://www.instagram.com/le_genevrier/", "https://www.facebook.com/legenevrier/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G3Z", "phone": "418 435-6520", "regions_mentioned": ["Laval", "Saguenay"]}
@@ -1530,6 +1586,7 @@
1530 1586 {"domain": "grandfrene.ca", "urls": ["https://grandfrene.ca/"], "names": ["Atelier du Grand Frêne - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/atelier-du-grand-frene-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G0L", "phone": "514 847-9799", "regions_mentioned": []}
1531 1587 {"domain": "grandmaemily.com", "urls": ["http://www.grandmaemily.com"], "names": ["Grandma Emily Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/grandma-emily-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H4N", "phone": null, "regions_mentioned": ["Montréal"]}
1532 1588 {"domain": "grangeboustifaille.com", "urls": ["https://www.grangeboustifaille.com"], "names": ["Grange & Boustifaille"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/grange-boustifaille"], "socials": ["https://www.facebook.com/grange.boustifaille", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0M", "phone": "(418) 313-7596", "regions_mentioned": []}
1589 +{"domain": "grangerfabco.com", "urls": ["https://www.grangerfabco.com"], "names": ["Granger Fab. Co."], "sources": ["search_sweep_cmaq"], "source_pages": ["Granger Fab Julien Granger métallier d'art québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Élie-de-Caxton, QC"]}
1533 1590 {"domain": "grangesmaraicheres.com", "urls": ["https://www.grangesmaraicheres.com", "https://www.grangesmaraicheres.com/"], "names": ["Granges maraîchères St-Antoine"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/granges-maraicheres-st-antoine"], "socials": ["https://www.facebook.com/granges.maraicheres", "https://www.instagram.com/granges.maraicheres", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G0A", "phone": "514 992-6706", "regions_mentioned": ["Saguenay"]}
1534 1591 {"domain": "greenbeaver.com", "urls": ["https://greenbeaver.com/"], "names": ["Green Beaver"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/green-beaver"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": null, "phone": "514 847-9799", "regions_mentioned": []}
1535 1592 {"domain": "greenfarmnuts.com", "urls": ["https://greenfarmnuts.com/"], "names": ["Pistachie de Ferme Verte inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/pistachie-de-ferme-verte-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J6J", "phone": null, "regions_mentioned": ["Montreal", "Montréal"]}
@@ -1560,6 +1617,7 @@
1560 1617 {"domain": "guptech.ca", "urls": ["https://guptech.ca/fr"], "names": ["GUPtech"], "sources": ["search_sweep_manuf"], "source_pages": ["lutherie québécoise pédales guitare fabricant boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saguenay, QC"]}
1561 1618 {"domain": "gutsykombucha.com", "urls": ["https://gutsykombucha.com/"], "names": ["Gutsy Drinks"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/gutsy-drinks"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H2H", "phone": null, "regions_mentioned": ["Montréal"]}
1562 1619 {"domain": "gvsnowshoes.com", "urls": ["https://www.gvsnowshoes.com/fr"], "names": ["Raquettes GV (GV Snowshoes)"], "sources": ["search_sweep_nonfood"], "source_pages": ["GV raquettes fabricant Wendake Québec site officiel"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Capitale-Nationale (Wendake)"]}
1620 +{"domain": "gwenwyvaarartisane.com", "urls": ["https://gwenwyvaarartisane.com"], "names": ["Gwenwyvaar Artisane Textile"], "sources": ["search_sweep_cmaq"], "source_pages": ["Gwenwyvaar Maggie Lepine artisane textile fileur québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
1563 1621 {"domain": "habitudedesign.ca", "urls": ["https://www.habitudedesign.ca"], "names": ["Habitude Design"], "sources": ["search_sweep_urban"], "source_pages": ["fabriqué à Gatineau conçu à Gatineau marque produit boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Outaouais"]}
1564 1622 {"domain": "hagen.com", "urls": ["https://hagen.com/"], "names": ["Nutrience"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/nutrience"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7V", "phone": "514 847-9799", "regions_mentioned": []}
1565 1623 {"domain": "haltedespelerins.com", "urls": ["https://haltedespelerins.com/", "https://haltedespelerins.com/vins/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/la-halte-des-pelerins/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/lahaltedespelerins", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-halte-des-pelerins%2F&t=La%20Halte%20des%20P%C3%A8lerins", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-halte-des-pelerins%2F&text=La%20Halte%20des%20P%C3%A8lerins", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-halte-des-pelerins%2F&title=La%20Halte%20des%20P%C3%A8lerins&summary="], "postal_prefix": "J1H", "phone": "(819) 563-5115", "regions_mentioned": ["Cantons-de-l'Est"]}
@@ -1606,6 +1664,7 @@
1606 1664 {"domain": "hopelay.com", "urls": ["https://www.hopelay.com"], "names": ["Hopelay Microbrasserie"], "sources": ["ambq_profils"], "source_pages": ["https://ambq.ca/fr/microbrasserie/hopelay-microbrasserie"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/hopelay2020/", "https://www.instagram.com/hopelay_microbrasserie/"], "postal_prefix": "J5M", "phone": "438 504-7955", "regions_mentioned": ["Laurentides"]}
1607 1665 {"domain": "hopera.ca", "urls": ["http://hopera.ca/", "https://www.hopera.ca"], "names": ["HopEra Microbrasserie La Shop", "Hopera – Microbrasserie et Pizzeria"], "sources": ["ambq_profils", "zoneboreale"], "source_pages": ["https://ambq.ca/fr/microbrasserie/hopera-microbrasserie-la-shop", "https://zoneboreale.com/entreprises/hopera-microbrasserie-et-pizzeria/"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/hopera.ca", "https://www.instagram.com/hopera_microbrasserie/", "https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.instagram.com/hopera_le_resto/"], "postal_prefix": "G7X", "phone": "418 412-9900", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
1608 1666 {"domain": "hopstation.net", "urls": ["https://hopstation.net/", "https://hopstation.net/points-de-vente/"], "names": ["Microbrasserie Hop Station", "Créateurs"], "sources": ["ambq_profils", "createursdesaveurs"], "source_pages": ["https://ambq.ca/fr/microbrasserie/microbrasserie-hop-station", "https://createursdesaveurs.com/createurs/microbrasserie-hop-station/"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/microhopstation", "https://www.instagram.com/microhopstation/", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/pubhopstation", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-hop-station%2F&t=Microbrasserie%20Hop%20Station", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-hop-station%2F&text=Microbrasserie%20Hop%20Station", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-hop-station%2F&title=Microbrasserie%20Hop%20Station&summary="], "postal_prefix": "J1A", "phone": "819 804-1004", "regions_mentioned": ["Cantons-de-l'Est"]}
1667 +{"domain": "horacejewelry.com", "urls": ["https://horacejewelry.com"], "names": ["Horace Jewelry"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Sherbrooke boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Repentigny"]}
1609 1668 {"domain": "horizonsante.ca", "urls": ["https://www.horizonsante.ca"], "names": ["Horizon Santé"], "sources": ["lesproduitsduquebec_det"], "source_pages": ["https://lesproduitsduquebec.com/detaillants/horizon-sante"], "socials": ["https://www.facebook.com/pharmacieshorizonsante", "https://www.instagram.com/horizon_sante/", "https://www.linkedin.com/company/groupehorizonsante", "https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G2C", "phone": "514 847-9799", "regions_mentioned": []}
1610 1669 {"domain": "hotel-saguenay.com", "urls": ["https://www.hotel-saguenay.com/restaurant/"], "names": ["Resto des Battures"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/resto-des-battures/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/obatillage"], "postal_prefix": "G7B", "phone": "418 544-8234", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
1611 1670 {"domain": "hotelaupetitberger.com", "urls": ["http://hotelaupetitberger.com/"], "names": ["Hôtel Au Petit Berger"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/hotel-au-petit-berger"], "socials": ["https://www.facebook.com/HotelAuPetitBerger?fref=ts", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G5A", "phone": "418 665-4428", "regions_mentioned": ["Saguenay"]}
@@ -1619,6 +1678,7 @@
1619 1678 {"domain": "hotellerustique.ca", "urls": ["https://www.hotellerustique.ca/", "http://www.hotellerustique.ca", "http://www.hotellerustique.ca/"], "names": ["Hôtel Le Rustique", "Hôtel le Rustique - Restaurant"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/hotel-le-rustique", "https://www.tourisme-charlevoix.com/fr/entreprises/hotel-le-rustique-restaurant"], "socials": ["https://www.instagram.com/hotel_le_rustique/", "https://www.facebook.com/hotellerustique", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G0T", "phone": "581 326-5934", "regions_mentioned": ["Saguenay"]}
1620 1679 {"domain": "hotelmontfort.ca", "urls": ["https://hotelmontfort.ca/"], "names": ["Hôtel Montfort - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/hotel-montfort/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/Hotelmontfortnicolet/", "https://www.instagram.com/hotel_montfort/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/hotel-montfort/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Hôtel Montfort&url=https://goutezy.com/entreprise/hotel-montfort/"], "postal_prefix": "J3T", "phone": "(819) 293-6262", "regions_mentioned": ["Centre-du-Québec"]}
1621 1680 {"domain": "howcharming.ca", "urls": ["https://howcharming.ca/"], "names": ["How Charming"], "sources": ["search_sweep_vendors"], "source_pages": ["direct domain guess howcharming.ca, verified via WebFetch"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
1681 +{"domain": "hoya-atelier.com", "urls": ["https://www.hoya-atelier.com/apropos"], "names": ["Hoya"], "sources": ["search_sweep_cmaq"], "source_pages": ["Hoya Alice Douet céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Ulric, QC"]}
1622 1682 {"domain": "hparfums.com", "urls": ["https://hparfums.com/fr"], "names": ["H Parfums"], "sources": ["search_sweep_urban"], "source_pages": ["parfumerie de niche montréalaise boutique en ligne parfum artisanal"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
1623 1683 {"domain": "hugoandclay.com", "urls": ["https://www.hugoandclay.com/about"], "names": ["Hugo & Clay"], "sources": ["search_sweep_cmaq"], "source_pages": ["Hugo & Clay Hugo Lépine céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
1624 1684 {"domain": "hugodidier.com", "urls": ["https://hugodidier.com/?aftag=7e6910271736bf07261dac7226edc462&utm_medium=afocus"], "names": ["Hugo Didier"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/hugodidier/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
@@ -1629,6 +1689,7 @@
1629 1689 {"domain": "hydroquebec.com", "urls": ["https://www.hydroquebec.com/residentiel/mieux-consommer/aides-financieres/logisvert/"], "names": ["Les meilleurs installateurs de thermopompes dans Lanaudière en 2026"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-particuliers/installation-de-thermopompes-dans-lanaudiere/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
1630 1690 {"domain": "hydrotuiles.ca", "urls": ["https://hydrotuiles.ca/", "http://www.hydrotuiles.ca"], "names": ["HydroTuiles - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/hydrotuiles-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H7G", "phone": "514 847-9799", "regions_mentioned": ["Laval"]}
1631 1691 {"domain": "i.etsystatic.com", "urls": ["https://i.etsystatic.com/13620314/r/il/665016/3401068615/il_fullxfull.3401068615_1wlg.jpg"], "names": ["Bandeau femme - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/bandeau-femme/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
1692 +{"domain": "icelainetricot.com", "urls": ["https://icelainetricot.com"], "names": ["Icelaine"], "sources": ["search_sweep_cmaq"], "source_pages": ["Icelaine France Beaudoin tricoteur québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lévis, QC"]}
1632 1693 {"domain": "ici-la.co", "urls": ["https://ici-la.co"], "names": ["Ici & Là - T-shirts et Souvenirs des régions - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-mode/ici-la-t-shirts-et-souvenirs-des-regions/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
1633 1694 {"domain": "icionfaitbougerleschoses.com", "urls": ["http://icionfaitbougerleschoses.com/"], "names": ["Au Pâturage - Espace Gourmand - Goûtez-y!", "SEMICAN - Goûtez-y!", "Marché Public de Drummondville - Goûtez-y!", "Marché Godefroy - Goûtez-y!", "La Belle Campagne Senc - Goûtez-y!", "Kefiplant - Goûtez-y!", "Le Cycle - Goûtez-y!", "La Ferme des Possibles - Goûtez-y!", "La Ferme de la Berceuse Inc. - Goûtez-y!", "Jardins de givre S.E.N.C. - Goûtez-y!", "Bibine Buvette - Goûtez-y!", "Serres et Saveurs d'Ana - Goûtez-y!", "La Parcelle - Goûtez-y!", "Ferme Pomerleau & frères inc. - MycoPousse - Goûtez-y!", "Ferme Genty - Goûtez-y!", "Le Jardin JM - Goûtez-y!", "Le Marché de Nicolet - Goûtez-y!", "Verger Belpom - Goûtez-y!", "L'Or du Potager - Goûtez-y!", "La Ferme Trotteuse - Goûtez-y!", "Les Produits de Josie-Anne et Mikael - Goûtez-y!", "Un Goût de Miel - Goûtez-y!", "La Sucrerie de Courval - Goûtez-y!", "Ferme bonz’ail - Goûtez-y!", "La Cache Verte - Goûtez-y!", "À la Bonne Vôtre - Goûtez-y!", "Érablière Prince - Goûtez-y!", "La Grange Pardue - Goûtez-y!", "Les Produits Notre-Dame - Goûtez-y!", "La Maison de Bibi - Goûtez-y!", "Olivier Del Mondo - Goûtez-y!", "Les Pâtisseries de Coraly - Goûtez-y!", "Ferme Plume Verte - Goûtez-y!", "Les paysages de Carolyn - Goûtez-y!", "Les Jardins Dublin - Goûtez-y!", "Marché public de Deschaillons - Goûtez-y!", "Bleuetière de Parisville Inc. - Goûtez-y!", "Moulin Michel - Goûtez-y!", "La ferme d'Evélyne - Goûtez-y!", "Aliments Lili et Gordo - Goûtez-y!", "Entre Lune et Sol - Goûtez-y!", "Le Rang - Goûtez-y!", "ALIMENTS CAPEL INC. - Goûtez-y!", "La Citrouille Enchantée - Goûtez-y!", "Salon de l'alimentation de L'Érable - Goûtez-y!", "La Pintarade - Goûtez-y!", "Verger du Grand - Goûtez-y!", "Produits d'érable des Appalaches - Goûtez-y!", "Vignoble Côtes du Gavet - Goûtez-y!", "Aronia superfruits - Goûtez-y!", "Ferme S & C - Goûtez-y!", "Vignoble Domaine du Saule - Goûtez-y!", "Ferme des Voltigeurs - Goûtez-y!", "Ferme Missouri - Goûtez-y!", "Marché public d'Inverness - Goûtez-y!", "Jardins Chant de Vie - Goûtez-y!", "Aux Petits Plaisirs - Goûtez-y!", "Créations La dent sucrée - Goûtez-y!", "La Miellerie King, distillerie et hydromellerie - Goûtez-y!", "Verger Canard Goûteux - Goûtez-y!", "Bonté Distribution - Goûtez-y!", "Ferme Fiset Lyster - Goûtez-y!", "Beaulac Ferme Familiale - Goûtez-y!", "Miel Gardner - Goûtez-y!", "Fromagerie du Presbytère - Goûtez-y!", "Fromagerie St-Guillaume - Goûtez-y!", "Fromagerie L'Ancêtre - Goûtez-y!", "Jardin des Buttes - Goûtez-y!", "Le Paysan Gourmand - Goûtez-y!", "Brûlerie des Cantons - Goûtez-y!", "Charcuteries La Cantina - Goûtez-y!", "Les Pendules Charcuteries Artisanales - Goûtez-y!", "Les brasseurs de légumes - Goûtez-y!", "Serres Verrier - Goûtez-y!", "Au Cœur du Jardin - Goûtez-y!", "Aux 13 Arpents - Goûtez-y!", "La P'tite Virée - Goûtez-y!", "V25 inc - Goûtez-y!", "Ferme Bibomeau inc. - Goûtez-y!", "Jardin des Beaux Chemins - Goûtez-y!", "Les produits Cajù - Goûtez-y!", "Les cultures de chez nous - Goûtez-y!", "La Jambonnière - Goûtez-y!", "Domaine l'Argoustik - Goûtez-y!", "Fromagerie Deschaillons - Goûtez-y!", "Parcours - Goûtez-y!", "Microbrasserie Jackalhop - Goûtez-y!", "Ferme Entre Deux Pays - Goûtez-y!", "Ô Quai des Brasseurs - Goûtez-y!", "MicroFerme VL - Goûtez-y!", "Rose POP! - Goûtez-y!", "La Station Bolvita - Goûtez-y!", "Vignoble Com’autrefois - Goûtez-y!", "Clos des Petits Bergers - Goûtez-y!", "Ferme des Hautes Terres - Goûtez-y!", "Marché du belvédère - Goûtez-y!", "La Ricardière - Goûtez-y!", "Explosion Camerise - Goûtez-y!", "Jardins un brin de folie - Goûtez-y!", "Les Cultures St-Arnaud - Goûtez-y!", "Vignoble Le Fief de la Rivière - Goûtez-y!", "Centre d'interprétation de la canneberge - Goûtez-y!", "La Balade Gourmande - Goûtez-y!", "Pub L'Ours Noir - Goûtez-y!", "Antélimarck Crèmerie Artisanale - Goûtez-y!", "Fromagerie Victoria - Goûtez-y!", "Sagamité Watso - Goûtez-y!", "Distillerie Euclide - Goûtez-y!", "Les Récoltes Marcotte - Goûtez-y!", "Alimentation du Lac - Goûtez-y!", "Ferme Germain Desmarais - Goûtez-y!", "Restaurant dépanneur Rioux - Goûtez-y!", "Zenit Nutrition - Goûtez-y!", "Boulangerie Ppain - Goûtez-y!", "Les Jardins VMO - Goûtez-y!", "Boulangerie Lemieux - Goûtez-y!", "Jasmino - Goûtez-y!", "MidiGo Presto Victo - Goûtez-y!", "Ferme Ludré - Goûtez-y!", "Umami champignon - Goûtez-y!", "Boucherie Houle et Guévin - Goûtez-y!", "Ferme du vieux Jack - Goûtez-y!", "Gîte Aux plaisirs partagés - Goûtez-y!", "Auberge Godefroy - Goûtez-y!", "L'Authentik Café - Goûtez-y!", "Paysannerie RE - Goûtez-y!", "Musée de la Biodiversité - Goûtez-y!", "Fromagerie Rang 9 - Goûtez-y!", "Ferme Joliboeuf Inc. - Goûtez-y!", "Kiosque communautaire de la Municipalité de Durham-Sud - Goûtez-y!", "Vignoble Domaine du Clos de l'Isle - Goûtez-y!", "Microbrasserie Wick Station - Goûtez-y!", "Cuit ou cru / Resto du Fleuve - Goûtez-y!", "Alimentation Inverness - Goûtez-y!", "Baska cuisine commerciale - Goûtez-y!", "Hôtel Montfort - Goûtez-y!", "Coopérative La Manne - Goûtez-y!", "Grand BBQ de Warwick - Goûtez-y!", "Microbrasserie La Flûte à Bec - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/au-paturage-espace-gourmand/", "https://goutezy.com/entreprise/semican/", "https://goutezy.com/entreprise/marche-public-de-drummondville/", "https://goutezy.com/entreprise/marche-godefroy/", "https://goutezy.com/entreprise/la-belle-campagne-senc/", "https://goutezy.com/entreprise/kefiplant/", "https://goutezy.com/entreprise/le-cycle/", "https://goutezy.com/entreprise/la-ferme-des-possibles/", "https://goutezy.com/entreprise/la-ferme-de-la-bereceuse-inc/", "https://goutezy.com/entreprise/jardins-de-givre-s-e-n-c/", "https://goutezy.com/entreprise/bibine-buvette/", "https://goutezy.com/entreprise/serres-et-saveurs-dana/", "https://goutezy.com/entreprise/la-parcelle/", "https://goutezy.com/entreprise/ferme-pomerleau-freres-inc-mycopousse/", "https://goutezy.com/entreprise/ferme-genty/", "https://goutezy.com/entreprise/le-jardin-jm/", "https://goutezy.com/entreprise/marche-de-nicolet/", "https://goutezy.com/entreprise/verger-belpom/", "https://goutezy.com/entreprise/lor-du-potager/", "https://goutezy.com/entreprise/la-ferme-trotteuse/", "https://goutezy.com/entreprise/les-produits-de-josie-anne-et-mikael/", "https://goutezy.com/entreprise/un-gout-de-miel/", "https://goutezy.com/entreprise/la-sucrerie-de-courval/", "https://goutezy.com/entreprise/ferme-bonzail/", "https://goutezy.com/entreprise/la-cache-verte/", "https://goutezy.com/entreprise/a-la-bonne-votre/", "https://goutezy.com/entreprise/erabliere-prince/", "https://goutezy.com/entreprise/la-grange-pardue/", "https://goutezy.com/entreprise/les-produits-notre-dame/", "https://goutezy.com/entreprise/la-maison-de-bibi/", "https://goutezy.com/entreprise/olivier-del-mondo/", "https://goutezy.com/entreprise/les-patisseries-de-coraly/", "https://goutezy.com/entreprise/ferme-plume-verte/", "https://goutezy.com/entreprise/les-paysages-de-carolyn/", "https://goutezy.com/entreprise/les-jardins-dublin/", "https://goutezy.com/entreprise/marche-public-de-deschaillons/", "https://goutezy.com/entreprise/bleuetiere-de-parisville-inc/", "https://goutezy.com/entreprise/moulin-michel/", "https://goutezy.com/entreprise/la-ferme-develyne/", "https://goutezy.com/entreprise/aliments-lili-et-gordo/", "https://goutezy.com/entreprise/entre-lune-et-sol/", "https://goutezy.com/entreprise/le-rang/", "https://goutezy.com/entreprise/aliments-capel/", "https://goutezy.com/entreprise/la-citrouille-enchantee/", "https://goutezy.com/entreprise/salon-de-lalimentation-de-lerable/", "https://goutezy.com/entreprise/la-pintarade/", "https://goutezy.com/entreprise/verger-du-grand/", "https://goutezy.com/entreprise/produits-derable-des-appalaches/", "https://goutezy.com/entreprise/vignoble-cotes-du-gavet/", "https://goutezy.com/entreprise/aronia-superfruits/", "https://goutezy.com/entreprise/ferme-s-c/", "https://goutezy.com/entreprise/vignoble-domaine-du-saule/", "https://goutezy.com/entreprise/ferme-des-voltigeurs/", "https://goutezy.com/entreprise/ferme-missouri/", "https://goutezy.com/entreprise/marche-public-dinverness/", "https://goutezy.com/entreprise/jardins-chant-de-vie/", "https://goutezy.com/entreprise/aux-petits-plaisirs/", "https://goutezy.com/entreprise/creations-la-dent-sucree/", "https://goutezy.com/entreprise/miellerie-king/", "https://goutezy.com/entreprise/verger-canard-gouteux/", "https://goutezy.com/entreprise/bonte-distribution/", "https://goutezy.com/entreprise/ferme-fiset-lyster/", "https://goutezy.com/entreprise/beaulac-ferme-familiale/", "https://goutezy.com/entreprise/miel-gardner/", "https://goutezy.com/entreprise/fromagerie-du-presbytere/", "https://goutezy.com/entreprise/fromagerie-st-guillaume/", "https://goutezy.com/entreprise/fromagerie-lancetre/", "https://goutezy.com/entreprise/jardin-des-buttes/", "https://goutezy.com/entreprise/paysan-gourmand/", "https://goutezy.com/entreprise/brulerie-des-cantons/", "https://goutezy.com/entreprise/la-cantina/", "https://goutezy.com/entreprise/les-pendules/", "https://goutezy.com/entreprise/les-brasseurs-de-legumes/", "https://goutezy.com/entreprise/serres-verrier/", "https://goutezy.com/entreprise/au-coeur-du-jardin/", "https://goutezy.com/entreprise/aux-13-arpents/", "https://goutezy.com/entreprise/la-ptite-viree/", "https://goutezy.com/entreprise/v25-inc/", "https://goutezy.com/entreprise/ferme-bibomeau-inc/", "https://goutezy.com/entreprise/jardin-des-beaux-chemins/", "https://goutezy.com/entreprise/les-produits-caju/", "https://goutezy.com/entreprise/les-cultures-de-chez-nous/", "https://goutezy.com/entreprise/la-jambonniere/", "https://goutezy.com/entreprise/domaine-largoustik/", "https://goutezy.com/entreprise/fromagerie-deschaillons/", "https://goutezy.com/entreprise/parcours/", "https://goutezy.com/entreprise/microbrasserie-jackalhop/", "https://goutezy.com/entreprise/ferme-entre-deux-pays/", "https://goutezy.com/entreprise/o-quai-des-brasseurs/", "https://goutezy.com/entreprise/microferme-vl/", "https://goutezy.com/entreprise/rose-pop/", "https://goutezy.com/entreprise/la-station-bolvita/", "https://goutezy.com/entreprise/vignoble-comautrefois/", "https://goutezy.com/entreprise/clos-des-petits-bergers/", "https://goutezy.com/entreprise/ferme-des-hautes-terres/", "https://goutezy.com/entreprise/marche-du-belvedere/", "https://goutezy.com/entreprise/la-ricardiere/", "https://goutezy.com/entreprise/explosion-camerise/", "https://goutezy.com/entreprise/jardins-un-brin-de-folie/", "https://goutezy.com/entreprise/les-cultures-st-arnaud/", "https://goutezy.com/entreprise/vignoble-le-fief-de-la-riviere/", "https://goutezy.com/entreprise/centre-dinterpretation-de-la-canneberge/", "https://goutezy.com/entreprise/balade-gourmande/", "https://goutezy.com/entreprise/pub-lours-noir/", "https://goutezy.com/entreprise/antelimarck-cremerie-artisanale/", "https://goutezy.com/entreprise/fromagerie-victoria/", "https://goutezy.com/entreprise/sagamite-watso/", "https://goutezy.com/entreprise/distillerie-euclide/", "https://goutezy.com/entreprise/recoltes-marcotte/", "https://goutezy.com/entreprise/alimentation-du-lac/", "https://goutezy.com/entreprise/ferme-germain-desmarais/", "https://goutezy.com/entreprise/restaurant-depanneur-rioux/", "https://goutezy.com/entreprise/zenit-nutrition/", "https://goutezy.com/entreprise/boulangerie-ppain/", "https://goutezy.com/entreprise/jardins-vmo/", "https://goutezy.com/entreprise/boulangerie-lemieux/", "https://goutezy.com/entreprise/jasmino/", "https://goutezy.com/entreprise/midigo-presto/", "https://goutezy.com/entreprise/ferme-ludre/", "https://goutezy.com/entreprise/umami-champignon/", "https://goutezy.com/entreprise/boucherie-houle-et-guevin/", "https://goutezy.com/entreprise/ferme-du-vieux-jack/", "https://goutezy.com/entreprise/gite-aux-plaisirs-partages/", "https://goutezy.com/entreprise/auberge-godefroy/", "https://goutezy.com/entreprise/lauthentik-cafe/", "https://goutezy.com/entreprise/paysannerie-re/", "https://goutezy.com/entreprise/musee-de-la-biodiversite/", "https://goutezy.com/entreprise/fromagerie-rang-9/", "https://goutezy.com/entreprise/ferme-joliboeuf-inc/", "https://goutezy.com/entreprise/kiosque-communautaire-de-la-municipalite-de-durham-sud/", "https://goutezy.com/entreprise/domaine-du-clos-de-lisle/", "https://goutezy.com/entreprise/microbrasserie-wick-station/", "https://goutezy.com/entreprise/resto-du-fleuve/", "https://goutezy.com/entreprise/alimentation-inverness/", "https://goutezy.com/entreprise/baska-cuisine-commerciale/", "https://goutezy.com/entreprise/hotel-montfort/", "https://goutezy.com/entreprise/la-manne/", "https://goutezy.com/entreprise/grand-bbq-de-warwick/", "https://goutezy.com/entreprise/microbrasserie-la-flute-a-bec/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/aupaturage", "https://www.instagram.com/au.paturage/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/au-paturage-espace-gourmand/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Au Pâturage - Espace Gourmand&url=https://goutezy.com/entreprise/au-paturage-espace-gourmand/", "https://www.facebook.com/semican.ca", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/semican/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=SEMICAN&url=https://goutezy.com/entreprise/semican/", "https://www.facebook.com/marchepublicdrummondville/", "https://www.instagram.com/marche_public_drummondville/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/marche-public-de-drummondville/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Marché Public de Drummondville&url=https://goutezy.com/entreprise/marche-public-de-drummondville/", "https://www.facebook.com/marchegodefroy", "https://www.instagram.com/marchegodefroy/?hl=fr", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/marche-godefroy/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Marché Godefroy&url=https://goutezy.com/entreprise/marche-godefroy/", "https://www.facebook.com/share/17wDezuuYa/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-belle-campagne-senc/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Belle Campagne Senc&url=https://goutezy.com/entreprise/la-belle-campagne-senc/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/kefiplant/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Kefiplant&url=https://goutezy.com/entreprise/kefiplant/", "https://www.facebook.com/people/Le-Cycle/61572787664431/?rdid=7k5VBYtIMiZOb0N1&share_url=https%3A%2F%2Fwww.facebook.com%2Fshare%2F12J5LXk4VEb%2F", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/le-cycle/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Le Cycle&url=https://goutezy.com/entreprise/le-cycle/", "https://www.facebook.com/lafermedespossibles.ca", "https://www.instagram.com/fermedespossibles/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-ferme-des-possibles/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Ferme des Possibles&url=https://goutezy.com/entreprise/la-ferme-des-possibles/", "https://www.facebook.com/fermedelaberceuse/?locale=fr_CA", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-ferme-de-la-bereceuse-inc/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Ferme de la Berceuse Inc.&url=https://goutezy.com/entreprise/la-ferme-de-la-bereceuse-inc/", "https://www.facebook.com/profile.php?id=61568271433343", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/jardins-de-givre-s-e-n-c/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Jardins de givre S.E.N.C.&url=https://goutezy.com/entreprise/jardins-de-givre-s-e-n-c/", "https://www.facebook.com/bibinebuvette", "https://www.instagram.com/bibine.buvette/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/bibine-buvette/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Bibine Buvette&url=https://goutezy.com/entreprise/bibine-buvette/", "https://www.facebook.com/profile.php?id=100077009811615", "https://www.instagram.com/tanguayannemarie/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/serres-et-saveurs-dana/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Serres et Saveurs d'Ana&url=https://goutezy.com/entreprise/serres-et-saveurs-dana/", "https://www.facebook.com/legumes.laparcelle", "https://www.instagram.com/legumes.laparcelle/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-parcelle/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Parcelle&url=https://goutezy.com/entreprise/la-parcelle/", "https://facebook.com/FermePomerleau", "https://www.instagram.com/ferme_pomerleau", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-pomerleau-freres-inc-mycopousse/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Pomerleau & frères inc. - MycoPousse&url=https://goutezy.com/entreprise/ferme-pomerleau-freres-inc-mycopousse/", "https://www.facebook.com/profile.php?id=100072507491037", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-genty/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Genty&url=https://goutezy.com/entreprise/ferme-genty/", "https://www.facebook.com/profile.php?id=100063762162602", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/le-jardin-jm/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Le Jardin JM&url=https://goutezy.com/entreprise/le-jardin-jm/", "https://www.facebook.com/lemarchedenicolet", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/marche-de-nicolet/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Le Marché de Nicolet&url=https://goutezy.com/entreprise/marche-de-nicolet/", "https://www.facebook.com/vergerbelpom", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/verger-belpom/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Verger Belpom&url=https://goutezy.com/entreprise/verger-belpom/", "https://www.facebook.com/profile.php?id=61556653872674&locale=fr_CA", "https://instagram.com/lordupotager", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/lor-du-potager/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=L'Or du Potager&url=https://goutezy.com/entreprise/lor-du-potager/", "https://www.facebook.com/lafermetrotteuse.qc.ca", "https://www.instagram.com/lafermetrotteusecoop/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-ferme-trotteuse/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Ferme Trotteuse&url=https://goutezy.com/entreprise/la-ferme-trotteuse/", "https://www.facebook.com/lesproduitsdejosieanneetmikael", "https://www.instagram.com/les_produits_josie_anne_mikael/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-produits-de-josie-anne-et-mikael/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les Produits de Josie-Anne et Mikael&url=https://goutezy.com/entreprise/les-produits-de-josie-anne-et-mikael/", "https://www.facebook.com/ungoutdemielmiellerie", "https://www.instagram.com/ungoutdemiel/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/un-gout-de-miel/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Un Goût de Miel&url=https://goutezy.com/entreprise/un-gout-de-miel/", "https://www.facebook.com/people/La-Sucrerie-de-Courval/100041686403239/", "https://www.instagram.com/sucreriedecourval/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-sucrerie-de-courval/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Sucrerie de Courval&url=https://goutezy.com/entreprise/la-sucrerie-de-courval/", "https://www.facebook.com/share/1CczrwJW7i/?mibextid=wwXIfr", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-bonzail/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme bonz’ail&url=https://goutezy.com/entreprise/ferme-bonzail/", "https://www.facebook.com/cacheverte/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-cache-verte/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Cache Verte&url=https://goutezy.com/entreprise/la-cache-verte/", "https://www.facebook.com/ALaBonneVotre", "https://www.instagram.com/alabonnevotre/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/a-la-bonne-votre/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=À la Bonne Vôtre&url=https://goutezy.com/entreprise/a-la-bonne-votre/", "https://www.facebook.com/erabliereprince", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/erabliere-prince/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Érablière Prince&url=https://goutezy.com/entreprise/erabliere-prince/", "https://www.facebook.com/LaGrangePardue", "https://www.instagram.com/lagrangepardue/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-grange-pardue/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Grange Pardue&url=https://goutezy.com/entreprise/la-grange-pardue/", "https://www.facebook.com/share/15Wdv4vz6M/?mibextid=wwXIfr", "https://www.instagram.com/lesproduitsnotredame?igsh=MTI2YzVxYzBjYXpnOQ%3D%3D&utm_source=qr", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-produits-notre-dame/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les Produits Notre-Dame&url=https://goutezy.com/entreprise/les-produits-notre-dame/", "https://www.facebook.com/p/La-maison-de-Bibi-100064158842299/?locale=fr_CA", "https://www.instagram.com/lamaisondebibiqc/?hl=fr-ca", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-maison-de-bibi/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Maison de Bibi&url=https://goutezy.com/entreprise/la-maison-de-bibi/", "https://www.facebook.com/Olivierdelmondo.ca/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/olivier-del-mondo/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Olivier Del Mondo&url=https://goutezy.com/entreprise/olivier-del-mondo/", "https://www.facebook.com/lespatisseriesdecoraly", "https://www.instagram.com/lespatisseriesdecoraly", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-patisseries-de-coraly/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les Pâtisseries de Coraly&url=https://goutezy.com/entreprise/les-patisseries-de-coraly/", "https://www.facebook.com/profile.php?id=100079622690027", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-plume-verte/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Plume Verte&url=https://goutezy.com/entreprise/ferme-plume-verte/", "https://www.facebook.com/lespaysagesdecarolyn", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-paysages-de-carolyn/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les paysages de Carolyn&url=https://goutezy.com/entreprise/les-paysages-de-carolyn/", "https://www.facebook.com/lesjardinsdublin", "https://www.instagram.com/lesjardinsdublin/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-jardins-dublin/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les Jardins Dublin&url=https://goutezy.com/entreprise/les-jardins-dublin/", "https://www.facebook.com/p/March%C3%A9-public-de-Deschaillons-100057182361609/?locale=fr_CA", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/marche-public-de-deschaillons/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Marché public de Deschaillons&url=https://goutezy.com/entreprise/marche-public-de-deschaillons/", "https://www.facebook.com/p/Bleueti%C3%A8re-de-Parisville-100057483646794/?locale=fr_FR", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/bleuetiere-de-parisville-inc/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Bleuetière de Parisville Inc.&url=https://goutezy.com/entreprise/bleuetiere-de-parisville-inc/", "https://www.facebook.com/lemoulinmichel", "https://www.instagram.com/moulinmicheldegentilly/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/moulin-michel/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Moulin Michel&url=https://goutezy.com/entreprise/moulin-michel/", "https://www.facebook.com/Lafermedevelyne", "https://www.instagram.com/lafermedevelyne/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-ferme-develyne/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La ferme d'Evélyne&url=https://goutezy.com/entreprise/la-ferme-develyne/", "https://www.facebook.com/marchemx.drummond", "https://www.instagram.com/marchemx.drummondville/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/aliments-lili-et-gordo/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Aliments Lili et Gordo&url=https://goutezy.com/entreprise/aliments-lili-et-gordo/", "https://www.facebook.com/EntreLuneetSol", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/entre-lune-et-sol/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Entre Lune et Sol&url=https://goutezy.com/entreprise/entre-lune-et-sol/", "https://www.facebook.com/lerang.ca", "https://www.instagram.com/le_rang_camerise/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/le-rang/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Le Rang&url=https://goutezy.com/entreprise/le-rang/", "https://www.facebook.com/carole.pelletier.5437", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/aliments-capel/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=ALIMENTS CAPEL INC.&url=https://goutezy.com/entreprise/aliments-capel/", "https://www.facebook.com/p/La-Citrouille-Enchant%C3%A9e-100067119189556", "https://www.instagram.com/lacitrouilleenchantee/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-citrouille-enchantee/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Citrouille Enchantée&url=https://goutezy.com/entreprise/la-citrouille-enchantee/", "https://www.facebook.com/AgroalimentaireErable/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/salon-de-lalimentation-de-lerable/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Salon de l'alimentation de L'Érable&url=https://goutezy.com/entreprise/salon-de-lalimentation-de-lerable/", "https://www.facebook.com/lapintarade", "https://www.instagram.com/lapintarade/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-pintarade/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Pintarade&url=https://goutezy.com/entreprise/la-pintarade/", "https://www.facebook.com/vergerdugrand", "https://www.instagram.com/vergerdugrand_/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/verger-du-grand/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Verger du Grand&url=https://goutezy.com/entreprise/verger-du-grand/", "https://www.facebook.com/profile.php?id=100064492250158", "https://www.instagram.com/erableappalaches/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/produits-derable-des-appalaches/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Produits d'érable des Appalaches&url=https://goutezy.com/entreprise/produits-derable-des-appalaches/", "https://www.facebook.com/share/1As48aMQan/", "https://www.instagram.com/cotesdugavet?igsh=MWQ4eDJpYTJ3eTdiMQ==", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/vignoble-cotes-du-gavet/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Vignoble Côtes du Gavet&url=https://goutezy.com/entreprise/vignoble-cotes-du-gavet/", "https://www.facebook.com/aroniasuperfruits", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/aronia-superfruits/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Aronia superfruits&url=https://goutezy.com/entreprise/aronia-superfruits/", "https://www.facebook.com/profile.php?id=100070382152803", "https://www.instagram.com/ferme_sc/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-s-c/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme S & C&url=https://goutezy.com/entreprise/ferme-s-c/", "https://www.facebook.com/profile.php?id=100070654428161", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/vignoble-domaine-du-saule/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Vignoble Domaine du Saule&url=https://goutezy.com/entreprise/vignoble-domaine-du-saule/", "https://www.facebook.com/FermeVoltigeurs?locale=fr_CA", "https://www.instagram.com/fermevoltigeurs/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-des-voltigeurs/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme des Voltigeurs&url=https://goutezy.com/entreprise/ferme-des-voltigeurs/", "https://www.facebook.com/FermeMissouri/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-missouri/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Missouri&url=https://goutezy.com/entreprise/ferme-missouri/", "https://www.facebook.com/marcheinverness", "https://www.instagram.com/invernessmarchepublic/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/marche-public-dinverness/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Marché public d'Inverness&url=https://goutezy.com/entreprise/marche-public-dinverness/", "https://www.facebook.com/JardinsChantDeVie", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/jardins-chant-de-vie/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Jardins Chant de Vie&url=https://goutezy.com/entreprise/jardins-chant-de-vie/", "https://www.facebook.com/erabliereauxpetitsplaisirs", "https://www.instagram.com/erabliereauxpetitsplaisirs/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/aux-petits-plaisirs/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Aux Petits Plaisirs&url=https://goutezy.com/entreprise/aux-petits-plaisirs/", "https://www.facebook.com/creationladentsucree", "https://www.instagram.com/creationsladentsucree", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/creations-la-dent-sucree/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Créations La dent sucrée&url=https://goutezy.com/entreprise/creations-la-dent-sucree/", "https://www.facebook.com/miellerieking/", "https://www.instagram.com/la_miellerie_king/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/miellerie-king/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Miellerie King, distillerie et hydromellerie&url=https://goutezy.com/entreprise/miellerie-king/", "https://facebook.com/canardgouteux.com", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/verger-canard-gouteux/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Verger Canard Goûteux&url=https://goutezy.com/entreprise/verger-canard-gouteux/", "https://www.facebook.com/bontedistribution?locale=fr_CA", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/bonte-distribution/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Bonté Distribution&url=https://goutezy.com/entreprise/bonte-distribution/", "https://www.facebook.com/FermeFisetLyster", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-fiset-lyster/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Fiset Lyster&url=https://goutezy.com/entreprise/ferme-fiset-lyster/", "https://www.facebook.com/FermeBeaulac/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/beaulac-ferme-familiale/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Beaulac Ferme Familiale&url=https://goutezy.com/entreprise/beaulac-ferme-familiale/", "https://www.facebook.com/MielGardner/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/miel-gardner/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Miel Gardner&url=https://goutezy.com/entreprise/miel-gardner/", "https://www.facebook.com/FromagerieDuPresbytere?locale=fr_CA", "https://www.instagram.com/fromageriedupresbytere/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/fromagerie-du-presbytere/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Fromagerie du Presbytère&url=https://goutezy.com/entreprise/fromagerie-du-presbytere/", "https://www.facebook.com/FromagerieStGuillaume", "https://www.instagram.com/fromageriestguillaume", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/fromagerie-st-guillaume/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Fromagerie St-Guillaume&url=https://goutezy.com/entreprise/fromagerie-st-guillaume/", "https://www.facebook.com/FromagerieAncetre/", "https://www.instagram.com/fromagerielancetre/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/fromagerie-lancetre/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Fromagerie L'Ancêtre&url=https://goutezy.com/entreprise/fromagerie-lancetre/", "https://www.facebook.com/jardindesbuttes?locale=fr_CA", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/jardin-des-buttes/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Jardin des Buttes&url=https://goutezy.com/entreprise/jardin-des-buttes/", "https://www.facebook.com/lepaysangourmandsenc", "https://www.instagram.com/stories/lepaysangourmand/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/paysan-gourmand/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Le Paysan Gourmand&url=https://goutezy.com/entreprise/paysan-gourmand/", "https://www.facebook.com/bruleriedescantons", "https://www.instagram.com/bruleriedescantons", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/brulerie-des-cantons/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Brûlerie des Cantons&url=https://goutezy.com/entreprise/brulerie-des-cantons/", "https://facebook.com/CharcuteriesLaCantina", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-cantina/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Charcuteries La Cantina&url=https://goutezy.com/entreprise/la-cantina/", "https://www.facebook.com/LesPendules/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-pendules/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les Pendules Charcuteries Artisanales&url=https://goutezy.com/entreprise/les-pendules/", "https://www.facebook.com/profile.php?id=100077125159132", "https://www.instagram.com/lesbrasseursdelegumes/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-brasseurs-de-legumes/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les brasseurs de légumes&url=https://goutezy.com/entreprise/les-brasseurs-de-legumes/", "https://www.facebook.com/serresverrier", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/serres-verrier/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Serres Verrier&url=https://goutezy.com/entreprise/serres-verrier/", "https://www.facebook.com/joane.dujardin", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/au-coeur-du-jardin/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Au Cœur du Jardin&url=https://goutezy.com/entreprise/au-coeur-du-jardin/", "https://www.facebook.com/Aux13arpents", "https://www.instagram.com/13_arpents", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/aux-13-arpents/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Aux 13 Arpents&url=https://goutezy.com/entreprise/aux-13-arpents/", "https://www.facebook.com/people/La-Ptite-Vir%C3%A9e/100064739674623/", "https://www.instagram.com/laptiteviree/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-ptite-viree/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La P'tite Virée&url=https://goutezy.com/entreprise/la-ptite-viree/", "https://www.facebook.com/V25inc", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/v25-inc/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=V25 inc&url=https://goutezy.com/entreprise/v25-inc/", "https://www.facebook.com/profile.php?id=100057338924769", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-bibomeau-inc/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Bibomeau inc.&url=https://goutezy.com/entreprise/ferme-bibomeau-inc/", "https://www.facebook.com/profile.php?id=61571495413911", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/jardin-des-beaux-chemins/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Jardin des Beaux Chemins&url=https://goutezy.com/entreprise/jardin-des-beaux-chemins/", "https://www.facebook.com/Les.produits.Caju/", "https://www.instagram.com/les_produits_caju/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-produits-caju/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les produits Cajù&url=https://goutezy.com/entreprise/les-produits-caju/", "https://www.facebook.com/culturesdecheznous", "https://www.instagram.com/completementpoireau/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-cultures-de-chez-nous/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les cultures de chez nous&url=https://goutezy.com/entreprise/les-cultures-de-chez-nous/", "https://www.facebook.com/LaJambonniere", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-jambonniere/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Jambonnière&url=https://goutezy.com/entreprise/la-jambonniere/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/domaine-largoustik/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Domaine l'Argoustik&url=https://goutezy.com/entreprise/domaine-largoustik/", "https://www.facebook.com/FromagerieDeschaillons", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/fromagerie-deschaillons/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Fromagerie Deschaillons&url=https://goutezy.com/entreprise/fromagerie-deschaillons/", "https://www.facebook.com/search/top/?q=parcours&locale=fr_CA", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/parcours/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Parcours&url=https://goutezy.com/entreprise/parcours/", "https://www.facebook.com/Jackalhop", "https://www.instagram.com/jackalhop.microbrasserie/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/microbrasserie-jackalhop/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Microbrasserie Jackalhop&url=https://goutezy.com/entreprise/microbrasserie-jackalhop/", "https://www.facebook.com/entredeuxpays86", "https://www.instagram.com/fermeentre2pays?igsh=Nzc5Z2JtMGpzbTg1", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-entre-deux-pays/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Entre Deux Pays&url=https://goutezy.com/entreprise/ferme-entre-deux-pays/", "https://www.facebook.com/oquaidesbrasseursbecancour/?locale=fr_CA", "https://www.instagram.com/oquaidesbrasseurs_becancour/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/o-quai-des-brasseurs/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ô Quai des Brasseurs&url=https://goutezy.com/entreprise/o-quai-des-brasseurs/", "https://www.facebook.com/share/1CgVWm6R1B/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/microferme-vl/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=MicroFerme VL&url=https://goutezy.com/entreprise/microferme-vl/", "https://www.facebook.com/profile.php?id=61582624397888", "https://www.instagram.com/rosepopquebec/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/rose-pop/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Rose POP!&url=https://goutezy.com/entreprise/rose-pop/", "https://www.facebook.com/lastationbolvita?", "https://www.instagram.com/lastationbolvita?igsh=ZmdvbThtOG50Y3cz&utm_source=qr", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-station-bolvita/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Station Bolvita&url=https://goutezy.com/entreprise/la-station-bolvita/", "https://www.facebook.com/share/168JCqVZem/?mibextid=wwXIfr", "https://instagram.com/vignoble_comautrefois/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/vignoble-comautrefois/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Vignoble Com’autrefois&url=https://goutezy.com/entreprise/vignoble-comautrefois/", "https://www.facebook.com/ClosdesPetitsBergers", "https://www.instagram.com/closdespetitsbergers/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/clos-des-petits-bergers/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Clos des Petits Bergers&url=https://goutezy.com/entreprise/clos-des-petits-bergers/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-des-hautes-terres/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme des Hautes Terres&url=https://goutezy.com/entreprise/ferme-des-hautes-terres/", "https://www.facebook.com/profile.php?id=100083301492815", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/marche-du-belvedere/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Marché du belvédère&url=https://goutezy.com/entreprise/marche-du-belvedere/", "https://www.facebook.com/la.ricardiere/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-ricardiere/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Ricardière&url=https://goutezy.com/entreprise/la-ricardiere/", "https://www.facebook.com/explosioncamerise", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/explosion-camerise/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Explosion Camerise&url=https://goutezy.com/entreprise/explosion-camerise/", "https://www.facebook.com/jardinsunbrindefolie", "https://www.instagram.com/jardinsunbrindefolie/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/jardins-un-brin-de-folie/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Jardins un brin de folie&url=https://goutezy.com/entreprise/jardins-un-brin-de-folie/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/les-cultures-st-arnaud/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les Cultures St-Arnaud&url=https://goutezy.com/entreprise/les-cultures-st-arnaud/", "https://facebook.com/lefiefdelariviere", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/vignoble-le-fief-de-la-riviere/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Vignoble Le Fief de la Rivière&url=https://goutezy.com/entreprise/vignoble-le-fief-de-la-riviere/", "https://www.facebook.com/cannebergeenfete/about/?ref=page_internal", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/centre-dinterpretation-de-la-canneberge/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Centre d'interprétation de la canneberge&url=https://goutezy.com/entreprise/centre-dinterpretation-de-la-canneberge/", "https://www.facebook.com/baladegourmande?mibextid=wwXIfr&mibextid=wwXIfr", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/balade-gourmande/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=La Balade Gourmande&url=https://goutezy.com/entreprise/balade-gourmande/", "https://www.facebook.com/publoursnoir", "https://www.instagram.com/publoursnoir/?hl=fr", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/pub-lours-noir/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Pub L'Ours Noir&url=https://goutezy.com/entreprise/pub-lours-noir/", "https://www.facebook.com/profile.php?id=100083141749930", "https://www.instagram.com/antelimarck?igsh=em02NTVmdGdjYzZo&utm_source=qr", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/antelimarck-cremerie-artisanale/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Antélimarck Crèmerie Artisanale&url=https://goutezy.com/entreprise/antelimarck-cremerie-artisanale/", "https://www.facebook.com/FromagerieVictoriavictoriaville", "https://www.instagram.com/fromagerievictoria/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/fromagerie-victoria/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Fromagerie Victoria&url=https://goutezy.com/entreprise/fromagerie-victoria/", "https://www.facebook.com/Cafemasko", "https://www.instagram.com/sagamitewatso", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/sagamite-watso/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Sagamité Watso&url=https://goutezy.com/entreprise/sagamite-watso/", "https://www.facebook.com/distillerieeuclide", "https://www.instagram.com/distillerieeuclide", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/distillerie-euclide/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Distillerie Euclide&url=https://goutezy.com/entreprise/distillerie-euclide/", "https://www.facebook.com/p/Les-R%C3%A9coltes-Marcotte-Lentrep%C3%B4t-100063967656472/?locale=fr_FR", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/recoltes-marcotte/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les Récoltes Marcotte&url=https://goutezy.com/entreprise/recoltes-marcotte/", "https://www.facebook.com/alimentationdulac/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/alimentation-du-lac/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Alimentation du Lac&url=https://goutezy.com/entreprise/alimentation-du-lac/", "https://www.facebook.com/Ferme.Germain.Desmarais/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-germain-desmarais/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Germain Desmarais&url=https://goutezy.com/entreprise/ferme-germain-desmarais/", "https://www.facebook.com/people/Restaurant-d%C3%A9panneur-Rioux/100042407205825/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/restaurant-depanneur-rioux/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Restaurant dépanneur Rioux&url=https://goutezy.com/entreprise/restaurant-depanneur-rioux/", "https://www.facebook.com/zenitnutrition", "https://www.instagram.com/zenitnutrition/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/zenit-nutrition/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Zenit Nutrition&url=https://goutezy.com/entreprise/zenit-nutrition/", "https://www.facebook.com/p/Ppain", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/boulangerie-ppain/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Boulangerie Ppain&url=https://goutezy.com/entreprise/boulangerie-ppain/", "https://www.facebook.com/lesjardinsvmo/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/jardins-vmo/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Les Jardins VMO&url=https://goutezy.com/entreprise/jardins-vmo/", "https://www.boulangerielemieux.com/", "https://www.facebook.com/BoulangerieLemieux/", "https://www.instagram.com/boulangerielemieux/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/boulangerie-lemieux/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Boulangerie Lemieux&url=https://goutezy.com/entreprise/boulangerie-lemieux/", "https://www.facebook.com/jasminosirop", "https://www.instagram.com/jasmino.ca/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/jasmino/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Jasmino&url=https://goutezy.com/entreprise/jasmino/", "https://www.facebook.com/share/19mxwKMKb8/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/midigo-presto/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=MidiGo Presto Victo&url=https://goutezy.com/entreprise/midigo-presto/", "https://www.facebook.com/LucLeFermier", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-ludre/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Ludré&url=https://goutezy.com/entreprise/ferme-ludre/", "https://www.facebook.com/umami.champignon", "https://www.instagram.com/umami.champignon/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/umami-champignon/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Umami champignon&url=https://goutezy.com/entreprise/umami-champignon/", "https://www.facebook.com/boucherieHouleetGuevin", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/boucherie-houle-et-guevin/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Boucherie Houle et Guévin&url=https://goutezy.com/entreprise/boucherie-houle-et-guevin/", "https://facebook.com/Fermeduvieuxjacksenc", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-du-vieux-jack/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme du vieux Jack&url=https://goutezy.com/entreprise/ferme-du-vieux-jack/", "https://www.facebook.com/share/16YSGMTSxz/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/gite-aux-plaisirs-partages/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Gîte Aux plaisirs partagés&url=https://goutezy.com/entreprise/gite-aux-plaisirs-partages/", "https://www.facebook.com/aubergegodefroy", "https://www.instagram.com/auberge_godefroy/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/auberge-godefroy/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Auberge Godefroy&url=https://goutezy.com/entreprise/auberge-godefroy/", "https://www.facebook.com/lauthentikcafe/?locale=fr_FR", "https://www.instagram.com/lauthentik.cafe/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/lauthentik-cafe/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=L'Authentik Café&url=https://goutezy.com/entreprise/lauthentik-cafe/", "https://www.facebook.com/Paysannerie.RE", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/paysannerie-re/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Paysannerie RE&url=https://goutezy.com/entreprise/paysannerie-re/", "https://www.facebook.com/museedelabiodiversite", "https://www.instagram.com/museebio/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/musee-de-la-biodiversite/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Musée de la Biodiversité&url=https://goutezy.com/entreprise/musee-de-la-biodiversite/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/fromagerie-rang-9/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Fromagerie Rang 9&url=https://goutezy.com/entreprise/fromagerie-rang-9/", "https://www.facebook.com/p/Ferme-Joliboeuf-100069302861864/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/ferme-joliboeuf-inc/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Ferme Joliboeuf Inc.&url=https://goutezy.com/entreprise/ferme-joliboeuf-inc/", "https://www.facebook.com/profile.php?id=61576761060211", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/kiosque-communautaire-de-la-municipalite-de-durham-sud/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Kiosque communautaire de la Municipalité de Durham-Sud&url=https://goutezy.com/entreprise/kiosque-communautaire-de-la-municipalite-de-durham-sud/", "https://www.facebook.com/VignobleDomaineduClosdelIsle", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/domaine-du-clos-de-lisle/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Vignoble Domaine du Clos de l'Isle&url=https://goutezy.com/entreprise/domaine-du-clos-de-lisle/", "https://www.facebook.com/WickStationMicrobrasserie", "https://www.instagram.com/wickstationmicrobrasserie", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/microbrasserie-wick-station/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Microbrasserie Wick Station&url=https://goutezy.com/entreprise/microbrasserie-wick-station/", "https://www.facebook.com/profile.php?id=100047355473310", "https://www.instagram.com/restodufleuve/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/resto-du-fleuve/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Cuit ou cru / Resto du Fleuve&url=https://goutezy.com/entreprise/resto-du-fleuve/", "https://www.facebook.com/alimentation.inverness", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/alimentation-inverness/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Alimentation Inverness&url=https://goutezy.com/entreprise/alimentation-inverness/", "https://www.facebook.com/profile.php?id=100087183137404", "https://www.instagram.com/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/baska-cuisine-commerciale/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Baska cuisine commerciale&url=https://goutezy.com/entreprise/baska-cuisine-commerciale/", "https://www.facebook.com/Hotelmontfortnicolet/", "https://www.instagram.com/hotel_montfort/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/hotel-montfort/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Hôtel Montfort&url=https://goutezy.com/entreprise/hotel-montfort/", "https://www.facebook.com/cooplamanne", "https://www.instagram.com/cooplamanne", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/la-manne/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Coopérative La Manne&url=https://goutezy.com/entreprise/la-manne/", "https://www.facebook.com/legrandbbqwarwick", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/grand-bbq-de-warwick/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Grand BBQ de Warwick&url=https://goutezy.com/entreprise/grand-bbq-de-warwick/", "https://www.facebook.com/microbrasserielafluteabec", "https://www.instagram.com/lafluteabec", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/microbrasserie-la-flute-a-bec/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Microbrasserie La Flûte à Bec&url=https://goutezy.com/entreprise/microbrasserie-la-flute-a-bec/"], "postal_prefix": "J0C", "phone": "(819) 388-8288", "regions_mentioned": ["Centre-du-Québec", "Estrie", "Mauricie", "Montréal"]}
1634 1695 {"domain": "icq.affiliationfocus.com", "urls": ["https://icq.affiliationfocus.com/client/click/ca41764215c99742e0ed4edbafc89b14", "https://icq.affiliationfocus.com/client/click/e475fd6513e69bc76d127d65bc30cbfe", "https://icq.affiliationfocus.com/client/click/33c955031c30749f868332d1cc0ad43f", "https://icq.affiliationfocus.com/client/click/ba2c015df79df832c8f4cab930b92ca2", "https://icq.affiliationfocus.com/client/click/e2dc05e2454725f39942d349c3701fdc", "https://icq.affiliationfocus.com/client/click/2dc55c99edebe7d5cb6b2729835442de", "https://icq.affiliationfocus.com/client/click/4980d289c00b3d076b834c141a0f8939", "https://icq.affiliationfocus.com/client/click/c2b69b36b135a19e1778693ce1d48b0e", "https://icq.affiliationfocus.com/client/click/7b24b2a06a61e02b3cf420c875bea918", "https://icq.affiliationfocus.com/client/click/a300d9f29cbab9ebd49b191351adb168", "https://icq.affiliationfocus.com/client/click/1bc606fe9765599ae503fc9b51306f5c", "https://icq.affiliationfocus.com/client/click/6149d00e2f408658cee2994e9cc18cae", "https://icq.affiliationfocus.com/client/click/cad5b27e28e5476b3c0a521cbc02bb8a", "https://icq.affiliationfocus.com/client/click/f5bbdf2e3135eb899a2f9edc11b28e10", "https://icq.affiliationfocus.com/client/click/2e991f9c8dda175d578b635d7a1ea61a", "https://icq.affiliationfocus.com/client/click/532c953376f92c924234c5233937a2c1", "https://icq.affiliationfocus.com/client/click/524901de20fa9809f57ead4417e9c033", "https://icq.affiliationfocus.com/client/click/551bfbd2ae20cc92457c56a917123dfd", "https://icq.affiliationfocus.com/client/click/6ef2161184dc5ebffd2f2dd568e327f2", "https://icq.affiliationfocus.com/client/click/3c367fbb9d82980d0e6b90f4960ffd41", "https://icq.affiliationfocus.com/client/click/7e69de8e7875c92ae5c73eb8cd8b46ea", "https://icq.affiliationfocus.com/client/click/4415e3e6eec5b3c5e2c3a863e820d5a7", "https://icq.affiliationfocus.com/client/click/0d2702d8842abf3740ba1552e4a62da9", "https://icq.affiliationfocus.com/client/click/5ddd68ec217dff434fa6e8bb8a167325", "https://icq.affiliationfocus.com/client/click/da64e743c1fb009c982c2d22619cb391", "https://icq.affiliationfocus.com/client/click/769857130b9f0bc7d800e49d75cd8422", "https://icq.affiliationfocus.com/client/click/0bc88766d63631a53498f80e00c5aac2", "https://icq.affiliationfocus.com/client/click/5f9d92cf6472241be84605a8c7dd86bc", "https://icq.affiliationfocus.com/client/click/a3b333eb5a0087a9add1f9abf3cbf30a", "https://icq.affiliationfocus.com/client/click/5415f2aad5969d53fb782e7de118e2bc", "https://icq.affiliationfocus.com/client/click/80f0c2be68725ad3d530f2c1f86978a4", "https://icq.affiliationfocus.com/client/click/4e9bf74ca182f4f95cd3772fb6e006dd", "https://icq.affiliationfocus.com/client/click/d0a066f70d63a6c21780bdb12bf7f1ed", "https://icq.affiliationfocus.com/client/click/bc27662ebc591ba4b4d58528799ac4a6", "https://icq.affiliationfocus.com/client/click/c9a4348c758b747da771b915b8dc93e0", "https://icq.affiliationfocus.com/client/click/715aab1dfa8b2a6f5de7592a1a8bc66e", "https://icq.affiliationfocus.com/client/click/40bdba81b6a9795124b0c029c6578bad", "https://icq.affiliationfocus.com/client/click/17952b8fbf279c28d93e86f130ba584c", "https://icq.affiliationfocus.com/client/click/de558f33fdaedd8bfe84319c1d0d8c21", "https://icq.affiliationfocus.com/client/click/3971e9db0cc7a22209ccfe0de87fe104", "https://icq.affiliationfocus.com/client/click/f81197578877acfa5deb71f5975ed0f4", "https://icq.affiliationfocus.com/client/click/4845df1ba3ffe550d01f5c6db5415cfe", "https://icq.affiliationfocus.com/client/click/1a93a406c3d21045d3a4256c3bf71c4b", "https://icq.affiliationfocus.com/client/click/daa63b0e0f77230654f0477ac4096633", "https://icq.affiliationfocus.com/client/click/51c9109a3fe41142449807de0bd3963c", "https://icq.affiliationfocus.com/client/click/54e81f12ea7f7a1b6d2665773807e409", "https://icq.affiliationfocus.com/client/click/a71c37389f1a7ef4853d0466ce232124", "https://icq.affiliationfocus.com/client/click/4f3c33aa18f0955a0e46dc9fbebbd2e5", "https://icq.affiliationfocus.com/client/click/d94bb632e5e6208e87840ca2216e1c5a", "https://icq.affiliationfocus.com/client/click/9b73dd4eab862acdcbcd469c63d9e29b", "https://icq.affiliationfocus.com/client/click/103b432f9073f5af4e3a1420c7f93425", "https://icq.affiliationfocus.com/client/click/daead1e5a64dfe28fc6cbe77f189cf30", "https://icq.affiliationfocus.com/client/click/4485cbf9ccbd4de0c4e135bb80ffd63d", "https://icq.affiliationfocus.com/client/click/23d4315e6bbbaffa33d9ca91d3603b55", "https://icq.affiliationfocus.com/client/click/fb7646a2813d016ef04c2848dffaa4b8", "https://icq.affiliationfocus.com/client/click/81cd757b5458a85872a7a9eee094ad5e", "https://icq.affiliationfocus.com/client/click/77105d32652673af62e67d379bc97431", "https://icq.affiliationfocus.com/client/click/0929ecdd27605bd2d66cb270a6a417e2", "https://icq.affiliationfocus.com/client/click/ebdfbcd514c8526ad7a86a16f9885394", "https://icq.affiliationfocus.com/client/click/a3e2aa4aab5dc1b211cb488716760dc8", "https://icq.affiliationfocus.com/client/click/cc025045142ba050119414afa3c9b8f7", "https://icq.affiliationfocus.com/client/click/0b91719c23a6b61f54244df5f4cb3855", "https://icq.affiliationfocus.com/client/click/60b5294cc1d77d8e16713a16c411fc1e", "https://icq.affiliationfocus.com/client/click/88fd44a87c6348e43e7bae0d047f385b", "https://icq.affiliationfocus.com/client/click/949beaee25f30154fe89019acd2e5299", "https://icq.affiliationfocus.com/client/click/dd7a210c791efe8083ea1b22c8c7f96f", "https://icq.affiliationfocus.com/client/click/ef55929645d51d37ceef2458b408782e", "https://icq.affiliationfocus.com/client/click/ec03d0e5b0edfeb8d20e5e0a4b36b246", "https://icq.affiliationfocus.com/client/click/a5f4121ef4554c8ca4480bb9f4cea178", "https://icq.affiliationfocus.com/client/click/191a38967335b964e9736fba4fa9ba1b", "https://icq.affiliationfocus.com/client/click/996172c95380819e3ed1cfb981c3ce55", "https://icq.affiliationfocus.com/client/click/f94b4fd10ddaf704428cc6457d7005db", "https://icq.affiliationfocus.com/client/click/e14addcb3b4cac01005da42d4adcddf6", "https://icq.affiliationfocus.com/client/click/c238eda18413e1847fca86756bdc443a", "https://icq.affiliationfocus.com/client/click/b8109633c465749fb8bcc6c264cdefa3", "https://icq.affiliationfocus.com/client/click/1c109b3e84498ed24ed5d58d950c0aa1", "https://icq.affiliationfocus.com/client/click/72e1ab50e794077e3db1944e9f59c1c0", "https://icq.affiliationfocus.com/client/click/e5c8f8c348f04ae80ede36594d853d13", "https://icq.affiliationfocus.com/client/click/9a9e8a62604a4c8186984422a267f05d", "https://icq.affiliationfocus.com/client/click/adfa9efb94df1e9fafcde8f3754dc039", "https://icq.affiliationfocus.com/client/click/072dbf9fbf10356ebdacc129cbcd1234", "https://icq.affiliationfocus.com/client/click/762c964e6a0f8722873ca52b7b95bb26", "https://icq.affiliationfocus.com/client/click/9e32284b928fe122b7dce634246ec61b", "https://icq.affiliationfocus.com/client/click/51857ea75d158ff7376de3038420eac0", "https://icq.affiliationfocus.com/client/click/4c14be483347c1b1c616239342940adc", "https://icq.affiliationfocus.com/client/click/e5da81829bd7175009e0948c27b0f717", "https://icq.affiliationfocus.com/client/click/68480a1cc322356dca8d5ba1a74f4054", "https://icq.affiliationfocus.com/client/click/a4fd304103691d153bd4e7c0dc71a5d9", "https://icq.affiliationfocus.com/client/click/74ef8b03d7a440137cc0ee58d649e257", "https://icq.affiliationfocus.com/client/click/8bc2a074c43fe7c7e9e6e44f8328eb44", "https://icq.affiliationfocus.com/client/click/ab179c927285449dcdc960f5324a87dc", "https://icq.affiliationfocus.com/client/click/5e744c9a539b449a32309ed27ac0f98f", "https://icq.affiliationfocus.com/client/click/0be7d1287c813a7d803790af2fdf0ee1", "https://icq.affiliationfocus.com/client/click/b6108bd2eec94ff391c09fc3d1ff682f", "https://icq.affiliationfocus.com/client/click/4e7c8d96fc80d163ba0f7a954a35a16c", "https://icq.affiliationfocus.com/client/click/8d9c9b332059e80a9d974556c09c52d8", "https://icq.affiliationfocus.com/client/click/b09335e1a975ff68443a6a86f86a8ee8", "https://icq.affiliationfocus.com/client/click/01fa995660adf0aebef0a0f01da54f6f", "https://icq.affiliationfocus.com/client/click/dc799bb2c8eadbc6e447b37b2d5fdff0", "https://icq.affiliationfocus.com/client/click/eba98c71df20864dda7696ac530d160f", "https://icq.affiliationfocus.com/client/click/0ff773c83fd205a913c0ddd12bcb5b07", "https://icq.affiliationfocus.com/client/click/f26e7ccc8970c9e402169d3adae06533", "https://icq.affiliationfocus.com/client/click/1dd0204eb3165a5b668c689d8a4ae02d", "https://icq.affiliationfocus.com/client/click/ec20810eccb21cdb9b7338d199a81611", "https://icq.affiliationfocus.com/client/click/44155a4dce520ffd4aa5e907c5a53e5f", "https://icq.affiliationfocus.com/client/click/69cb097e452dd6aa3c012835039ae6e3", "https://icq.affiliationfocus.com/client/click/39d4a4012f7e730383dbc0442ff31471", "https://icq.affiliationfocus.com/client/click/adb206bf9b6bf6d5d1425dddec077c29", "https://icq.affiliationfocus.com/client/click/22527349aad17a89f140b3af2bc9f6c4", "https://icq.affiliationfocus.com/client/click/c727c2d5310df1641ee755fe8498cc4c", "https://icq.affiliationfocus.com/client/click/194b97508d5dbd32e0fb14d8b779a32c", "https://icq.affiliationfocus.com/client/click/254b07736b9a7bf834a4c28b2398849c", "https://icq.affiliationfocus.com/client/click/784967db13bb40ecb4887571585e78e8", "https://icq.affiliationfocus.com/client/click/a75f291b5cca13ad411b05b99e44b5ee", "https://icq.affiliationfocus.com/client/click/1fad29cddc394f0ac6cc4448d1e2cb66", "https://icq.affiliationfocus.com/client/click/3ce17250c582c479b30d8eddd246c08a", "https://icq.affiliationfocus.com/client/click/1afe17302282dd5af90558f355607b5b", "https://icq.affiliationfocus.com/client/click/a112fa4c4511cfb355f38fe19ea7a672", "https://icq.affiliationfocus.com/client/click/d9257cd5457fe709175f8baeed84d9bd", "https://icq.affiliationfocus.com/client/click/3f495ffbd948fc35c193438488751cdb", "https://icq.affiliationfocus.com/client/click/c6c9e4390e81e2958152cadcf40ec6b2", "https://icq.affiliationfocus.com/client/click/ad9e310e907bdad868980831a50a6a4f", "https://icq.affiliationfocus.com/client/click/d7483dc539ffa22f72bb41a99a5501be", "https://icq.affiliationfocus.com/client/click/ae15bdab2ac934431812930c952392ca", "https://icq.affiliationfocus.com/client/click/74aca9ba191fd3bd176eafee7378f7e3", "https://icq.affiliationfocus.com/client/click/e798ddba76feee92e6a7e7075f2864ef", "https://icq.affiliationfocus.com/client/click/b3739dce8a51f7b90879e47b15277d28", "https://icq.affiliationfocus.com/client/click/0d2102af31b79cb6087255d73ea1dc78", "https://icq.affiliationfocus.com/client/click/a8b1c854bbd60517f4779e383c665208", "https://icq.affiliationfocus.com/client/click/588116bc3080996d2be7fdc6c65cc10e", "https://icq.affiliationfocus.com/client/click/bbcf839e535cce0a3d6b0247f7082779", "https://icq.affiliationfocus.com/client/click/79caa70c8656dea0e2e855e89ccb535e", "https://icq.affiliationfocus.com/client/click/e59577f012bfa1cb4d6e89ee245aab09", "https://icq.affiliationfocus.com/client/click/e112c1b758fbfdb607b71738a7c61399", "https://icq.affiliationfocus.com/client/click/dbc70c2ed4a216c583a9fcd211822e2a", "https://icq.affiliationfocus.com/client/click/2eab80679bc1f76bdb9ff2240108eaba", "https://icq.affiliationfocus.com/client/click/8f02592d314a7c678e89a1e101405017", "https://icq.affiliationfocus.com/client/click/f9cc6a23b2316440b787ec2ae5fce227", "https://icq.affiliationfocus.com/client/click/b4b571e6b9c2301c62741efd4c3baaee", "https://icq.affiliationfocus.com/client/click/a2f2802abe95f44c1418edea9bc5e32c", "https://icq.affiliationfocus.com/client/click/3e4782dabc74835e36fb89374d3a08a1", "https://icq.affiliationfocus.com/client/click/67c97a4c660deee75a7d00009226bbbc", "https://icq.affiliationfocus.com/client/click/326ec360d742ff6ec008e9b824a1d7ea", "https://icq.affiliationfocus.com/client/click/d18732cf37e646e0c6a8eaabec9aa1e5", "https://icq.affiliationfocus.com/client/click/c1b8c2f6033a7959f09a6093e6067a0d", "https://icq.affiliationfocus.com/client/click/1106f8e62263f10ac98323842d00d63b", "https://icq.affiliationfocus.com/client/click/ff23c9a4bc03e383af8cfc3f19033cb6", "https://icq.affiliationfocus.com/client/click/1d21ca5e5924747a394da532ba72bcf6", "https://icq.affiliationfocus.com/client/click/0e9cfb38298a189fe4315f457282ab48", "https://icq.affiliationfocus.com/client/click/dd8df4f83de41572befdb65d74329c52", "https://icq.affiliationfocus.com/client/click/8c689b3cd6ccd876a56cb1ac6659ab63", "https://icq.affiliationfocus.com/client/click/4c7674c4af837b50f83f523c80039024", "https://icq.affiliationfocus.com/client/click/cbda4699f5d06ea170bfd12e5d16be71", "https://icq.affiliationfocus.com/client/click/5391c2e1e37f6faa2d607eb6f1783495", "https://icq.affiliationfocus.com/client/click/199d9e414d38fbf192b161347c9b49c5", "https://icq.affiliationfocus.com/client/click/a523dddb555fd7aad4e45cdab939a7d6", "https://icq.affiliationfocus.com/client/click/8bf5396750e00948fc354238c10a0400", "https://icq.affiliationfocus.com/client/click/0f5c4323dc8a67175ae6d5270328da69", "https://icq.affiliationfocus.com/client/click/04d022b91d8c99ec2189929c6493289e", "https://icq.affiliationfocus.com/client/click/df55120cac200ac894ec3a30e3af6c8f", "https://icq.affiliationfocus.com/client/click/72f88e7b2dc310eb391f7d6559926a56", "https://icq.affiliationfocus.com/client/click/3112bc14b1aacda98aed533b2f5c9845", "https://icq.affiliationfocus.com/client/click/a08db8d10506cce9cfdd1a639387633e", "https://icq.affiliationfocus.com/client/click/5eff32314df9d37e8ef06400aa547531", "https://icq.affiliationfocus.com/client/click/f4a13303f8c3bdaf5fe1a07696613ee5", "https://icq.affiliationfocus.com/client/click/d45d202b4ca05893d9fce9803d1e854c", "https://icq.affiliationfocus.com/client/click/7d7d828f592bf7d995dcc1b8b2013598", "https://icq.affiliationfocus.com/client/click/769b68f56faaff42e2a61cbc1e055472", "https://icq.affiliationfocus.com/client/click/35597fde338d05a2219840b3f42977f0", "https://icq.affiliationfocus.com/client/click/ac1902e0e564f0daa15c410c60cd5d6e", "https://icq.affiliationfocus.com/client/click/7d2d83a7ed317ea997d3d5270be55348", "https://icq.affiliationfocus.com/client/click/1509e3ad6e41bc2c535e67ff40efb50b", "https://icq.affiliationfocus.com/client/click/f910cb01ce88db1e74d416ecf1245840", "https://icq.affiliationfocus.com/client/click/1a65e3f5cd67e51a2909f615df56271b", "https://icq.affiliationfocus.com/client/click/1109026c928edcf14af7e3ff6e44450a", "https://icq.affiliationfocus.com/client/click/22ee696dcb3e6252761d292f682758ec", "https://icq.affiliationfocus.com/client/click/ec0930624506605cc1d52390cd98e832", "https://icq.affiliationfocus.com/client/click/533e33574cfaeecb47a3cdda26873643", "https://icq.affiliationfocus.com/client/click/2c6a71cfc23f957affff4967c99a0cdb", "https://icq.affiliationfocus.com/client/click/b688df67c315a9f2ab37261cd2e12786", "https://icq.affiliationfocus.com/client/click/679f40d4facfee7f11d6ee68a7543b93", "https://icq.affiliationfocus.com/client/click/7b04e2a41be84cce51f9a46d40e2bcea", "https://icq.affiliationfocus.com/client/click/9665cd6867ccfb3da0efda52acc394c4", "https://icq.affiliationfocus.com/client/click/d2de20080e439467660adc394a644ace", "https://icq.affiliationfocus.com/client/click/324ba96151a9b15542a59884e3b5f7e5", "https://icq.affiliationfocus.com/client/click/b78c300be333dd8259db38e16d7a4bd2", "https://icq.affiliationfocus.com/client/click/6a5adcb5744e9ec018f00288c169011f", "https://icq.affiliationfocus.com/client/click/673834434de9c1547a6c338c901c9c37", "https://icq.affiliationfocus.com/client/click/e72cc8bccd36b260ab6a1171a6e7fa06", "https://icq.affiliationfocus.com/client/click/07a2903364b8e160410f7d9334ca4f98", "https://icq.affiliationfocus.com/client/click/e1cc923c8ab0076851408f204716067b", "https://icq.affiliationfocus.com/client/click/8486c2b11464f10a07ba703a93a9a9b5", "https://icq.affiliationfocus.com/client/click/303ea36a763c852fcc16c0e35b28e3ae", "https://icq.affiliationfocus.com/client/click/65c9cc92d2d4cfc916524c52e97f5484", "https://icq.affiliationfocus.com/client/click/781b4a83e63204b86ddcc4ad9f82d49e", "https://icq.affiliationfocus.com/client/click/0a90c3e88fb4183ccc0a79d3b804e60a", "https://icq.affiliationfocus.com/client/click/afcb4a602fc1818c17fa6aac376787ad", "https://icq.affiliationfocus.com/client/click/163e6630d8f2ec95e68f7187ad763aa9", "https://icq.affiliationfocus.com/client/click/848628323a99d2510f8e555f9e38bd9b", "https://icq.affiliationfocus.com/client/click/b797198e1ed27d7a06fc67a70c83c7dd", "https://icq.affiliationfocus.com/client/click/45116d6db13a871d1f7a9e007500ce7a", "https://icq.affiliationfocus.com/client/click/625cdf8d153459789adc548caf4eaa03", "https://icq.affiliationfocus.com/client/click/d898ba1f062193368186c016eeb30056", "https://icq.affiliationfocus.com/client/click/a2c97d28e6ef45423d484232e4468faa", "https://icq.affiliationfocus.com/client/click/c1c94914d8eeec07cccee7042ee8228b", "https://icq.affiliationfocus.com/client/click/5fcb96219e9844ed272acc245e1c4f62", "https://icq.affiliationfocus.com/client/click/2dbcb320f011f7707cb119c0465813ac", "https://icq.affiliationfocus.com/client/click/e78125d0fe432240202ef2a5cb4f9d98", "https://icq.affiliationfocus.com/client/click/ec5cb7cf5716544fe296ad2608e2f013", "https://icq.affiliationfocus.com/client/click/b44b18f50d0c6e2e2f51bc381cfccfbe", "https://icq.affiliationfocus.com/client/click/7f439565232c81e2c3182c0c2e8cf60b", "https://icq.affiliationfocus.com/client/click/8b0767d4525f0d748c915c26893b7cae", "https://icq.affiliationfocus.com/client/click/52a9c6d6ff483cfb222a79032c86f226", "https://icq.affiliationfocus.com/client/click/6cb9d50679ab6f39470cbf697bcc18e9", "https://icq.affiliationfocus.com/client/click/278285688f412a3dd414244ccb37ee56", "https://icq.affiliationfocus.com/client/click/303dcefed29d6615d6b4bfcd659dd96d", "https://icq.affiliationfocus.com/client/click/bb91c69eb2044226670ce103c4e4dd61", "https://icq.affiliationfocus.com/client/click/5dc859e830b7f2a7c48d7a8d6108e634", "https://icq.affiliationfocus.com/client/click/383d58d93e27f53f78a82a2cf755b4f8", "https://icq.affiliationfocus.com/client/click/7959d79f44dd65843c3ed04170a212d3", "https://icq.affiliationfocus.com/client/click/b6983cc14f473fe4796bfce49568fc06", "https://icq.affiliationfocus.com/client/click/5cf374f20d09bfdbea40c74ea5efe7ba", "https://icq.affiliationfocus.com/client/click/b335b06108aa981bb07349ac26fa43df", "https://icq.affiliationfocus.com/client/click/726d51bd13155a180bab2201d4d8a7d7", "https://icq.affiliationfocus.com/client/click/357d711248489ca0abcf2f67e9c5880b", "https://icq.affiliationfocus.com/client/click/6bdc81f9d627e0f1620a92ff87d4be47", "https://icq.affiliationfocus.com/client/click/d62b79b1b626868ed68e7bff2bc2678d", "https://icq.affiliationfocus.com/client/click/2b432e2f1106e98189291874d0291ed2", "https://icq.affiliationfocus.com/client/click/44b80d6dc397d87364d832ab41a3a8bf", "https://icq.affiliationfocus.com/client/click/66ea53f63739d8a2fac1a4fefcccc308", "https://icq.affiliationfocus.com/client/click/bb7ca24421910b11d1d80333c2221e0d"], "names": ["Alcyon", "Allo Simonne", "À Marée Basse", "Apéro à zéro", "Aquaovo", "ARICO", "Avanaa Chocolat", "BÄUM", "Béké bobo", "BKIND", "BOA Bijoux", "La boîte à vins", "Bonnetier", "Boutique art Inca", "Boutique Citrouille", "Brodé Serré", "Éditions Broquet", "Bubulle et Jujube", "Cactus En Ligne", "La Grande Gourmandise", "Camellia Sinensis", "Canard Goulu", "Carnet d'autre part", "Chandelles Funky", "Choco Chocolat", "Boutiques québécoises", "Cocooning Love", "Coffrets Prestige", "Concrete Memory", "Costume de bain", "Coussin etc.", "Créations Odie", "Custombuzz", "Dans le sac", "Délices du Lac-Saint-Jean", "Des enfantillages", "Harrington pétillants botaniques", "Doupando", "Évasion Plani Terre", "Ébénisterie Steve Genesse", "Ecolocado", "Les Éditions Cardinal", "Éditions de Mortagne", "L'érablière du Village", "Fab’", "Feu&co", "Flambette", "Floèm", "Fondussimo", "Ginius", "Café du Triangle d'Or", "GOWOOD", "Guides de voyage Ulysse", "Les couteaux Hazaki", "Hugo Didier", "Ikigai Box", "Jouer c'est grandir", "K5 Clothing", "Kanel", "KaseMe", "Kawelä", "Kim & Joe", "Kimo Savon Artisanal", "KO Éditions", "La boîte à bonbons", "La Lichée", "La Pimenterie", "La pincée", "LaPizzaShop", "L'Assembleuse", "LE NID Atelier", "Le Point Visible", "Les As du Fumoir", "Les Créations Fol-Artists", "Les Dériveuses", "Les Filles Fattoush", "Les Industries Groom", "Les Mains d'ici", "Les Mauvaises HERBES", "Les Tatoués", "Liliblanc", "Lili Graffiti", "LilloJEUX", "L'Instant Box", "Ma bulle de lecture", "Madame Germaine", "Maddle", "Main and Local", "Meyeur", "Piko Peppers", "LIAISON", "Milie Bijoux", "Moi d'abord", "Moka Toutou Musical", "MTL Balance Board", "Mushup", "Naturehike", "Neka", "Next Chance", "Nos Cabanes", "Nüspace", "OLA Bamboo", "Olives et Gourmandises", "Onquata", "O! PANIER", "Oui Manon", "Owly Packs", "Paella Marisol", "Paperole", "Pero", "Plantopi", "Plumme", "Poches & Fils", "Poseidn", "Quatre T", "QUB Livre", "Québec Amérique", "Racines boréales", "blanc par rouGe", "SaberX", "Saponaria", "Sardines Studio", "Senseaura", "Shop moi ça", "Soif de Voyages", "Solios", "Sounds Good", "Studio Raton", "Tamelo Boutique", "Ta peau, Ton fruit", "Baltic Club", "Ticoti Baby", "Toque & Tablier", "Tranche de bois", "Trucs d'enfants", "T surprise", "Tuta & Coco", "U Main", "Vox & Oz"], "sources": ["ideecadeauquebec"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/alcyonsel/", "https://www.ideecadeauquebec.com/boutique/allosimonne/", "https://www.ideecadeauquebec.com/boutique/amareebasse/", "https://www.ideecadeauquebec.com/boutique/aperoazero/", "https://www.ideecadeauquebec.com/boutique/aquaovo/", "https://www.ideecadeauquebec.com/boutique/arico/", "https://www.ideecadeauquebec.com/boutique/avanaa/", "https://www.ideecadeauquebec.com/boutique/baumproduitsnaturels/", "https://www.ideecadeauquebec.com/boutique/bekebobo/", "https://www.ideecadeauquebec.com/boutique/bkind/", "https://www.ideecadeauquebec.com/boutique/boabijoux/", "https://www.ideecadeauquebec.com/boutique/boiteavins/", "https://www.ideecadeauquebec.com/boutique/bonnetier/", "https://www.ideecadeauquebec.com/boutique/boutiqueartinca/", "https://www.ideecadeauquebec.com/boutique/boutiquecitrouille/", "https://www.ideecadeauquebec.com/boutique/brodeserre/", "https://www.ideecadeauquebec.com/boutique/broquet/", "https://www.ideecadeauquebec.com/boutique/bubulleetjujube/", "https://www.ideecadeauquebec.com/boutique/cactusenligne/", "https://www.ideecadeauquebec.com/boutique/cadeaugourmand/", "https://www.ideecadeauquebec.com/boutique/camellia-sinensis/", "https://www.ideecadeauquebec.com/boutique/canardgoulu/", "https://www.ideecadeauquebec.com/boutique/carnetdautrepart/", "https://www.ideecadeauquebec.com/boutique/chandellesfunky/", "https://www.ideecadeauquebec.com/boutique/chocochocolat/", "https://www.ideecadeauquebec.com/boutique/clubpastel/", "https://www.ideecadeauquebec.com/boutique/cocooninglove/", "https://www.ideecadeauquebec.com/boutique/coffretsprestige/", "https://www.ideecadeauquebec.com/boutique/concretememory/", "https://www.ideecadeauquebec.com/boutique/costumedebain/", "https://www.ideecadeauquebec.com/boutique/coussinsetc/", "https://www.ideecadeauquebec.com/boutique/creationsodie/", "https://www.ideecadeauquebec.com/boutique/custombuzz/", "https://www.ideecadeauquebec.com/boutique/danslesac/", "https://www.ideecadeauquebec.com/boutique/delicesdulac/", "https://www.ideecadeauquebec.com/boutique/desenfantillages/", "https://www.ideecadeauquebec.com/boutique/domaineharrington/", "https://www.ideecadeauquebec.com/boutique/doupando/", "https://www.ideecadeauquebec.com/boutique/easyplanettravel/", "https://www.ideecadeauquebec.com/boutique/ebenisteriestevegenesse/", "https://www.ideecadeauquebec.com/boutique/ecolocado/", "https://www.ideecadeauquebec.com/boutique/editions-cardinal/", "https://www.ideecadeauquebec.com/boutique/editionsdemortagne/", "https://www.ideecadeauquebec.com/boutique/erabliereduvillage/", "https://www.ideecadeauquebec.com/boutique/fabhandcrafted/", "https://www.ideecadeauquebec.com/boutique/feuetco/", "https://www.ideecadeauquebec.com/boutique/flambette/", "https://www.ideecadeauquebec.com/boutique/floem/", "https://www.ideecadeauquebec.com/boutique/fondussimo/", "https://www.ideecadeauquebec.com/boutique/ginius/", "https://www.ideecadeauquebec.com/boutique/goldentrianglecoffee/", "https://www.ideecadeauquebec.com/boutique/gowood/", "https://www.ideecadeauquebec.com/boutique/guidesulysse/", "https://www.ideecadeauquebec.com/boutique/hazakiknives/", "https://www.ideecadeauquebec.com/boutique/hugodidier/", "https://www.ideecadeauquebec.com/boutique/ikigai-box/", "https://www.ideecadeauquebec.com/boutique/jouercestgrandir/", "https://www.ideecadeauquebec.com/boutique/k5clothing/", "https://www.ideecadeauquebec.com/boutique/kanel/", "https://www.ideecadeauquebec.com/boutique/kasemedesign/", "https://www.ideecadeauquebec.com/boutique/kawela/", "https://www.ideecadeauquebec.com/boutique/kimetjoe/", "https://www.ideecadeauquebec.com/boutique/kimosoap/", "https://www.ideecadeauquebec.com/boutique/ko-media/", "https://www.ideecadeauquebec.com/boutique/laboiteabonbons/", "https://www.ideecadeauquebec.com/boutique/lalichee/", "https://www.ideecadeauquebec.com/boutique/lamamanpoule/", "https://www.ideecadeauquebec.com/boutique/lapimenterie/", "https://www.ideecadeauquebec.com/boutique/lapincee/", "https://www.ideecadeauquebec.com/boutique/lapizzashop/", "https://www.ideecadeauquebec.com/boutique/lassembleuse/", "https://www.ideecadeauquebec.com/boutique/lenidatelier/", "https://www.ideecadeauquebec.com/boutique/lepointvisible/", "https://www.ideecadeauquebec.com/boutique/lesasdufumoir/", "https://www.ideecadeauquebec.com/boutique/lescreationsfol-artists/", "https://www.ideecadeauquebec.com/boutique/lesderiveuses/", "https://www.ideecadeauquebec.com/boutique/lesfillesfattoush/", "https://www.ideecadeauquebec.com/boutique/lesindustriesgroom/", "https://www.ideecadeauquebec.com/boutique/lesmainsdici/", "https://www.ideecadeauquebec.com/boutique/lesmauvaisesherbes/", "https://www.ideecadeauquebec.com/boutique/lestatoues/", "https://www.ideecadeauquebec.com/boutique/liliblanc/", "https://www.ideecadeauquebec.com/boutique/liligraffiti/", "https://www.ideecadeauquebec.com/boutique/lillojeux/", "https://www.ideecadeauquebec.com/boutique/linstantbox/", "https://www.ideecadeauquebec.com/boutique/mabulledelecture/", "https://www.ideecadeauquebec.com/boutique/madamegermaine/", "https://www.ideecadeauquebec.com/boutique/maddleboards/", "https://www.ideecadeauquebec.com/boutique/mainandlocal/", "https://www.ideecadeauquebec.com/boutique/marie-lise/", "https://www.ideecadeauquebec.com/boutique/meyeur/", "https://www.ideecadeauquebec.com/boutique/microsauceriepikopeppers/", "https://www.ideecadeauquebec.com/boutique/miels-liaison/", "https://www.ideecadeauquebec.com/boutique/miliebijoux/", "https://www.ideecadeauquebec.com/boutique/mintndry/", "https://www.ideecadeauquebec.com/boutique/moidabord/", "https://www.ideecadeauquebec.com/boutique/mokatoutoumusical/", "https://www.ideecadeauquebec.com/boutique/mtlbboard/", "https://www.ideecadeauquebec.com/boutique/mushup/", "https://www.ideecadeauquebec.com/boutique/naturehike/", "https://www.ideecadeauquebec.com/boutique/neka/", "https://www.ideecadeauquebec.com/boutique/nextchance/", "https://www.ideecadeauquebec.com/boutique/noscabanes/", "https://www.ideecadeauquebec.com/boutique/nuspace/", "https://www.ideecadeauquebec.com/boutique/olabamboo/", "https://www.ideecadeauquebec.com/boutique/olivesetgourmandises/", "https://www.ideecadeauquebec.com/boutique/onquata/", "https://www.ideecadeauquebec.com/boutique/opanier/", "https://www.ideecadeauquebec.com/boutique/ouimanon/", "https://www.ideecadeauquebec.com/boutique/owlypacks/", "https://www.ideecadeauquebec.com/boutique/paellamarisol/", "https://www.ideecadeauquebec.com/boutique/paperole/", "https://www.ideecadeauquebec.com/boutique/pero-qc/", "https://www.ideecadeauquebec.com/boutique/plantopi/", "https://www.ideecadeauquebec.com/boutique/plummebox/", "https://www.ideecadeauquebec.com/boutique/pochesetfils/", "https://www.ideecadeauquebec.com/boutique/poseidn/", "https://www.ideecadeauquebec.com/boutique/quatret/", "https://www.ideecadeauquebec.com/boutique/qublivre/", "https://www.ideecadeauquebec.com/boutique/quebec-amerique/", "https://www.ideecadeauquebec.com/boutique/racinesboreales/", "https://www.ideecadeauquebec.com/boutique/rougemaple/", "https://www.ideecadeauquebec.com/boutique/saberx/", "https://www.ideecadeauquebec.com/boutique/saponaria/", "https://www.ideecadeauquebec.com/boutique/sardinesstudio/", "https://www.ideecadeauquebec.com/boutique/senseaura/", "https://www.ideecadeauquebec.com/boutique/shopmoica/", "https://www.ideecadeauquebec.com/boutique/soifdevoyages/", "https://www.ideecadeauquebec.com/boutique/solioswatches/", "https://www.ideecadeauquebec.com/boutique/soundsgood/", "https://www.ideecadeauquebec.com/boutique/studioraton/", "https://www.ideecadeauquebec.com/boutique/tameloboutique/", "https://www.ideecadeauquebec.com/boutique/tapeautonfruit/", "https://www.ideecadeauquebec.com/boutique/thebalticclub/", "https://www.ideecadeauquebec.com/boutique/ticotibaby/", "https://www.ideecadeauquebec.com/boutique/toqueettablier/", "https://www.ideecadeauquebec.com/boutique/tranchedebois/", "https://www.ideecadeauquebec.com/boutique/trucsdenfants/", "https://www.ideecadeauquebec.com/boutique/tsurprise/", "https://www.ideecadeauquebec.com/boutique/tutacoco/", "https://www.ideecadeauquebec.com/boutique/u-main/", "https://www.ideecadeauquebec.com/boutique/veillesurtoi/", "https://www.ideecadeauquebec.com/boutique/voxandoz/"], "socials": ["https://www.instagram.com/ideecadeauquebec/", "https://www.facebook.com/IdeeCadeauQuebec/", "https://pinterest.com/IdeeCadeauQC", "https://twitter.com/IdeeCadeauQC", "https://www.youtube.com/c/Id%C3%A9eCadeauQu%C3%A9bec"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Bas-Saint-Laurent", "Capitale-Nationale", "Centre-du-Québec", "Chaudière-Appalaches", "Côte-Nord", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Nord-du-Québec", "Outaouais", "Saguenay", "Îles-de-la-Madeleine"]}
@@ -1649,11 +1710,13 @@
1649 1710 {"domain": "impactessentials.ca", "urls": ["https://www.impactessentials.ca/"], "names": ["Impact Essentials"], "sources": ["search_sweep_vendors"], "source_pages": ["\"Impact Essentials\" beurre à barbe Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
1650 1711 {"domain": "imperialsnacking.com", "urls": ["http://www.imperialsnacking.com/"], "names": ["Imperial Snacking"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/imperial-snacking"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J7R", "phone": null, "regions_mentioned": ["Laurentides"]}
1651 1712 {"domain": "impressfoods.com", "urls": ["http://www.impressfoods.com"], "names": ["Aliments Impress"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/aliments-impress"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G1E", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
1713 +{"domain": "indi-gene.ca", "urls": ["https://indi-gene.ca"], "names": ["Indigène"], "sources": ["search_sweep_cmaq"], "source_pages": ["Indigène Genevieve Gaboury ébéniste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec, QC"]}
1652 1714 {"domain": "indigosuperfruit.com", "urls": ["http://www.indigosuperfruit.com"], "names": ["Indigo super fruit"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/indigo-super-fruit"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0E", "phone": null, "regions_mentioned": ["Estrie"]}
1653 1715 {"domain": "inewa.com", "urls": ["http://www.inewa.com"], "names": ["La boulangerie alternative Inewa (9326-2285 Québec Inc.)"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-boulangerie-alternative-inewa-9326-2285-quebec-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H1R", "phone": null, "regions_mentioned": ["Montréal"]}
1654 1716 {"domain": "infime.ca", "urls": ["https://www.infime.ca"], "names": ["Infime"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/infime"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G1L", "phone": "514 847-9799", "regions_mentioned": []}
1655 1717 {"domain": "innovabris.com", "urls": ["https://innovabris.com"], "names": ["Innovabris"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois abris garages de toile boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
1656 1718 {"domain": "innovasens.ca", "urls": ["http://www.innovasens.ca"], "names": ["Innovasens inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/innovasens-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J7B", "phone": null, "regions_mentioned": ["Laurentides"]}
1719 +{"domain": "inspiiir.com", "urls": ["https://inspiiir.com/"], "names": ["INSPiiiR"], "sources": ["search_sweep_cmaq"], "source_pages": ["INSPiiiR Marie-Sophie Bertrand joaillier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Capitale-Nationale, QC"]}
1657 1720 {"domain": "inspirationgourmande.ca", "urls": ["https://www.inspirationgourmande.ca"], "names": ["Inspiration gourmande"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/inspiration-gourmande"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H2L", "phone": null, "regions_mentioned": ["Montréal"]}
1658 1721 {"domain": "intermarchebourget.ca", "urls": ["http://www.intermarchebourget.ca"], "names": ["Intermarché Bourget"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/linter-marche-bourget/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/marchebourget/"], "postal_prefix": "G7P", "phone": "418 672-4702", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
1659 1722 {"domain": "intermarchestdenis.com", "urls": ["https://www.intermarchestdenis.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/intermarche-st-denis/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/intermarchestdenis/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fintermarche-st-denis%2F&t=Intermarch%C3%A9%20St-Denis", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fintermarche-st-denis%2F&text=Intermarch%C3%A9%20St-Denis", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fintermarche-st-denis%2F&title=Intermarch%C3%A9%20St-Denis&summary="], "postal_prefix": "J0B", "phone": "(819) 846-4500", "regions_mentioned": ["Cantons-de-l'Est"]}
@@ -1664,6 +1727,7 @@
1664 1727 {"domain": "iphea.ca", "urls": ["https://www.iphea.ca/fr", "https://www.iphea.ca/"], "names": ["IPHÉA"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/iphea"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H7N", "phone": "514 847-9799", "regions_mentioned": ["Laval"]}
1665 1728 {"domain": "irisarlo.com", "urls": ["https://irisarlo.com/"], "names": ["Iris + Arlo"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/iris-arlo"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
1666 1729 {"domain": "isabellealepins.com", "urls": ["https://isabellealepins.com/", "https://www.isabellealepins.com/"], "names": ["Isabelle Alepins - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/isabelle-alepins-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H3M", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
1730 +{"domain": "isabelleferland.com", "urls": ["https://isabelleferland.com"], "names": ["Isabelle Ferland Bijoux en bois"], "sources": ["search_sweep_bijoux"], "source_pages": ["Cadran bijoux Québec créateur"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
1667 1731 {"domain": "isabellehuot.com", "urls": ["https://www.isabellehuot.com/"], "names": ["Kilo Solution"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/kilo-solution"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H3E", "phone": null, "regions_mentioned": ["Montréal"]}
1668 1732 {"domain": "isabelleinc.ca", "urls": ["http://www.isabelleinc.ca"], "names": ["C. Isabelle Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/c-isabelle-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0L", "phone": null, "regions_mentioned": ["Montérégie"]}
1669 1733 {"domain": "isabellelehouxmontreal.com", "urls": ["https://www.isabellelehouxmontreal.com/"], "names": ["Isabelle Lehoux"], "sources": ["search_sweep_nonfood"], "source_pages": ["bijoux accessoires Montérégie fait main boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
@@ -1706,10 +1770,11 @@
1706 1770 {"domain": "jenniferglasgowdesign.com", "urls": ["https://www.jenniferglasgowdesign.com"], "names": ["Jennifer Glasgow Design"], "sources": ["search_sweep_urban"], "source_pages": ["marque montréalaise vêtements boutique en ligne fabriqué à Montréal"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
1707 1771 {"domain": "jennihealthy.com", "urls": ["https://www.jennihealthy.com/"], "names": ["Jenni Tea"], "sources": ["croquezoutaouais"], "source_pages": ["https://www.croquezoutaouais.com/entreprises/jenni-tea/"], "socials": ["https://www.facebook.com/croquezloutaouais/", "https://www.instagram.com/croquezoutaouais", "https://web.facebook.com/croquezloutaouais/?_rdc=1&_rdr", "https://www.instagram.com/croquezoutaouais/"], "postal_prefix": "J8X", "phone": "819-712-7194", "regions_mentioned": ["Outaouais"]}
1708 1772 {"domain": "jessicapastries.com", "urls": ["http://www.jessicapastries.com"], "names": ["Pâtisserie Jessica"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/patisserie-jessica"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J3Y", "phone": null, "regions_mentioned": ["Montérégie"]}
1773 +{"domain": "jessicapchang.com", "urls": ["https://jessicapchang.com/the-bag-lady-atelier"], "names": ["The Bag Lady Atelier"], "sources": ["search_sweep_cmaq"], "source_pages": ["The Bag Lady Atelier Jessica Poirier-Chang couturier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
1709 1774 {"domain": "jeuxface4.com", "urls": ["https://jeuxface4.com"], "names": ["Jeux Face4 inc."], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/jeux-face4-inc"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J5R", "phone": "514 847-9799", "regions_mentioned": []}
1710 1775 {"domain": "jgfruitsetlegumes.com", "urls": ["http://www.jgfruitsetlegumes.com"], "names": ["J G Rive-Sud Fruits et Légumes"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/j-g-rive-sud-fruits-et-legumes"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J3L", "phone": null, "regions_mentioned": ["Montérégie"]}
1711 1776 {"domain": "jlfreeman.ca", "urls": ["https://www.jlfreeman.ca"], "names": ["JLFreeman Sec, WEBBER Activ+, WEBBER, SIROP LAMBERT, GLYCERODERMINE"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/jlfreeman-sec-webber-activ-webber-sirop-lambert-glycerodermine"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J4B", "phone": "514 847-9799", "regions_mentioned": []}
1712 −{"domain": "joailleriestonge.com", "urls": ["https://joailleriestonge.com/"], "names": ["Joaillerie St-Onge"], "sources": ["search_sweep_vendors"], "source_pages": ["direct domain guess joailleriestonge.com, verified via WebFetch"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
1777 +{"domain": "joailleriestonge.com", "urls": ["https://joailleriestonge.com/collections/bagues-de-fiancailles", "https://joailleriestonge.com/"], "names": ["Joaillerie St-Onge"], "sources": ["search_sweep_bijoux", "search_sweep_vendors"], "source_pages": ["bagues de fiançailles créateur québécois boutique en ligne", "direct domain guess joailleriestonge.com, verified via WebFetch"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal", "Montréal, QC"]}
1713 1778 {"domain": "johnnytalie.com", "urls": ["https://johnnytalie.com/"], "names": ["Les Produits la la Inc"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/les-produits-lala-sauces-bobby/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Sauces-Bobby-1491883711092867/?fref=ts"], "postal_prefix": "G7X", "phone": "418 547-5539", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
1714 1779 {"domain": "joliesminoix.ca", "urls": ["http://www.joliesminoix.ca"], "names": ["Jolies Mi-Noix"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/jolies-mi-noix"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0W", "phone": null, "regions_mentioned": ["Laurentides"]}
1715 1780 {"domain": "jolygene.com", "urls": ["https://www.jolygene.com/fr"], "names": ["Ferme Jolygène"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/ferme-jolygene/"], "socials": ["https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/ferme-jolygene/", "https://twitter.com/intent/tweet?text=Ferme+Jolyg%C3%A8ne https://www.erabledici.ca/fr/erabliere/ferme-jolygene/"], "postal_prefix": "G0S", "phone": "819 383-9053", "regions_mentioned": ["Chaudière-Appalaches"]}
@@ -1721,6 +1786,7 @@
1721 1786 {"domain": "jouetsboisemond.com", "urls": ["https://www.jouetsboisemond.com/fr/catalogue"], "names": ["Jouets Boisemond"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois jouets en bois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (since 1978)"]}
1722 1787 {"domain": "journalmetro.com", "urls": ["http://journalmetro.com/plus/bouffe/891638/le-boom-des-microbrasseries-au-quebec/"], "names": ["Le boom des microbrasseries au Québec"], "sources": ["wikipedia_lists"], "source_pages": ["https://fr.wikipedia.org/wiki/Liste_de_microbrasseries_au_Qu%C3%A9bec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
1723 1788 {"domain": "jplmaraicher.com", "urls": ["http://www.jplmaraicher.com"], "names": ["JPL MARAÎCHER INC, LEBLANC BIO"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/jpl-maraicher-inc-leblanc-bio"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G0R", "phone": null, "regions_mentioned": ["Chaudière-Appalaches"]}
1789 +{"domain": "judithdubord.com", "urls": ["https://www.judithdubord.com"], "names": ["DUBORD Céramiste | Verrier"], "sources": ["search_sweep_cmaq"], "source_pages": ["DUBORD Judith Dubord céramiste verrier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Jean-Port-Joli, QC"]}
1724 1790 {"domain": "juleidesign.com", "urls": ["https://www.juleidesign.com"], "names": ["Julei design - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/julei-design-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7Z", "phone": "514 847-9799", "regions_mentioned": []}
1725 1791 {"domain": "juniperfarm.ca", "urls": ["https://juniperfarm.ca/fr"], "names": ["Ferme Juniper"], "sources": ["croquezoutaouais"], "source_pages": ["https://www.croquezoutaouais.com/entreprises/ferme-juniper/"], "socials": ["https://www.facebook.com/croquezloutaouais/", "https://www.instagram.com/croquezoutaouais", "https://web.facebook.com/croquezloutaouais/?_rdc=1&_rdr", "https://www.instagram.com/croquezoutaouais/"], "postal_prefix": "J0X", "phone": "819-459-1630", "regions_mentioned": ["Outaouais"]}
1726 1792 {"domain": "juresucre.com", "urls": ["https://juresucre.com/", "https://juresucre.com/panier/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/au-blanc-marronnier-jure-sucre/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/people/Jur%C3%A9-Sucr%C3%A9/100083247101261/", "https://www.instagram.com/camerisejuresucre/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fau-blanc-marronnier-jure-sucre%2F&t=Au%20blanc%20Marronnier%20%2F%20Jur%C3%A9%20Sucr%C3%A9", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fau-blanc-marronnier-jure-sucre%2F&text=Au%20blanc%20Marronnier%20%2F%20Jur%C3%A9%20Sucr%C3%A9", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fau-blanc-marronnier-jure-sucre%2F&title=Au%20blanc%20Marronnier%20%2F%20Jur%C3%A9%20Sucr%C3%A9&summary="], "postal_prefix": "J0E", "phone": "(819) 821-0422", "regions_mentioned": ["Cantons-de-l'Est"]}
@@ -1735,7 +1801,7 @@
1735 1801 {"domain": "kanopefragrances.com", "urls": ["https://kanopefragrances.com/fr"], "names": ["Kanopé Fragrances"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/kanope-fragrances"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2H", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
1736 1802 {"domain": "kaochocolat.com", "urls": ["http://www.kaochocolat.com", "https://kaochocolat.com/boutique/"], "names": ["Kao Chocolat"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/kao-chocolat/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Kaochocolat/info/?tab=overview", "https://www.instagram.com/kaochocolat_inc/"], "postal_prefix": "G0V", "phone": "418 608-8494", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
1737 1803 {"domain": "kapelier.com", "urls": ["https://kapelier.com/"], "names": ["Les Arts Kapelier"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/les-arts-kapelier"], "socials": ["https://www.facebook.com/kapelier", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G0A", "phone": "418 635-1061", "regions_mentioned": ["Saguenay"]}
1738 −{"domain": "karabijouxetstyle.com", "urls": ["https://karabijouxetstyle.com", "https://karabijouxetstyle.com/"], "names": ["Kara Bijoux & Style", "Kara Bijoux et Style"], "sources": ["lesproduitsduquebec_ent", "search_sweep_vendors"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/kara-bijoux-style", "\"Kara Bijoux\" Québec collier bracelet boutique"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G6V", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Lévis, QC"]}
1804 +{"domain": "karabijouxetstyle.com", "urls": ["https://karabijouxetstyle.com", "https://karabijouxetstyle.com/"], "names": ["Kara Bijoux & Style", "Kara Bijoux", "Kara Bijoux et Style"], "sources": ["lesproduitsduquebec_ent", "search_sweep_bijoux", "search_sweep_vendors"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/kara-bijoux-style", "bijoux résine faits au Québec boutique en ligne", "\"Kara Bijoux\" Québec collier bracelet boutique"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G6V", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Québec (ville)", "Lévis, QC"]}
1739 1805 {"domain": "kariberitaj.com", "urls": ["https://kariberitaj.com/"], "names": ["Aliments DGL"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/aliments-dgl"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": null, "phone": null, "regions_mentioned": []}
1740 1806 {"domain": "karinejoncas.ca", "urls": ["http://www.karinejoncas.ca"], "names": ["Karine Joncas"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/karine-joncas"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2N", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
1741 1807 {"domain": "karkass.ca", "urls": ["https://Karkass.ca"], "names": ["Karkass - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/karkass-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G1K", "phone": "514 847-9799", "regions_mentioned": []}
@@ -1831,6 +1897,7 @@
1831 1897 {"domain": "lafabriquegourmande.com", "urls": ["https://lafabriquegourmande.com"], "names": ["La Fabrique Gourmande inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-fabrique-gourmande-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G0X", "phone": null, "regions_mentioned": ["Mauricie"]}
1832 1898 {"domain": "lafamilledulait.com", "urls": ["https://www.lafamilledulait.com/fr/contact/#_ga=2.160971389.1110064080.1664355988-450401216.1644418992", "https://www.lafamilledulait.com/"], "names": ["Fous du fromage", "Laiterie Charlevoix", "Famille Migneron de Charlevoix", "Fromagerie Laiterie des Coteaux", "Fromagerie P'tit Plaisir", "Trappe à Fromage de l'Outaouais", "Microlaiterie Riverin du Lac", "Maison Riviera", "Les Fromagiers de la Table Ronde", "Les Fromages Latino", "Les Dépendances", "Le Fromage au Village", "Laiterie Laroche", "Laiterie de Coaticook", "Lait Charbonneau", "Lactalis Canada - Victoriaville", "La Moutonnière inc.", "Kingsey", "Fromages Saputo – Montréal", "Fromages Saputo – Mont-Laurier", "Fromages de l'isle d'Orléans", "Fromages biobio (affineur)", "Fromagerie Victoria", "Fromagerie St-Laurent", "Fromagerie St-Guillaume", "Fromagerie St-Fidèle", "Fromagerie Saint-Benoît-du-Lac", "Fromagerie Roy", "Fromagerie Rang 9", "Fromagerie Qualité Summum", "Fromagerie Pépite d'or", "Fromagerie Proulx", "Fromagerie Port-Joli", "Fromagerie Polyethnique inc.", "Fromagerie Perron", "Fromagerie Nouvelle France", "Fromagerie Médard", "Fromagerie Montebello", "Fromagerie Missiska", "Fromagerie Marie Kadé", "Fromagerie Les Rivières", "Fromagerie les Broussailles", "Fromagerie Lemaire", "Fromagerie Lehmann", "Fromagerie Le P'tit Train du Nord", "Fromagerie Le Métayer", "Fromagerie Le Mouton Blanc", "Fromagerie Le Détour", "Fromagerie Le Chant des Fromages", "Fromagerie Le Campagnard", "Fromagerie La Vache à Maillotte", "Fromagerie La Suisse Normande", "Fromagerie La Station", "Fromagerie La Normandinoise", "Fromagerie La Chaudière", "Fromagerie La Cabriole", "Fromagerie La Bourgade", "Fromagerie l'Autre Versant", "Fromagerie L'Ancêtre", "Fromagerie Hamel", "Fromagerie Gilbert", "Fromagerie Fromabitibi", "Fromagerie Fritz Kaiser", "Fromagerie Etchemin", "Fromagerie d’Oka - Agropur", "Fromagerie du Terroir de Bellechasse", "Fromagerie du Presbytère", "Fromagerie du Pied-De-Vent", "Fromagerie du Littoral", "Fromagerie du Champ à la Meule", "Fromagerie Deschaillons", "Fromagerie des Grondines", "Fromagerie des Cantons", "Fromagerie des Basques", "Fromagerie de St-Hyacinthe - Agropur", "Fromagerie de Notre-Dame-du-Bon-Conseil - Agropur", "Fromagerie de l'Isle", "Fromagerie de Granby – Agropur", "Fromagerie de Beauceville – Agropur", "Fromagerie Champêtre", "Fromagerie Boréalait", "Fromagerie Boivin", "Fromagerie Blackburn", "Fromagerie Bergeron", "Fromagerie Bel Canada", "Fromagerie au Pays des Bleuets", "Fromagerie Amafaçon", "Fromagerie Allen", "Fromagerie Alexis de Portneuf – Saint-Raymond", "Fromagerie Alexis de Portneuf – Mont-Laurier", "Fromagerie 1860 DuVillage", "Fromage Warwick", "Ferme Vallée Verte 1912", "Ferme Phylum", "Bouchard Artisan Bio", "1001 Fondues", "Gasper"], "sources": ["fromagesdici"], "source_pages": ["https://www.fromagesdici.com/fr/fromageries/fous-du-fromage", "https://www.fromagesdici.com/fr/fromageries/laiterie-charlevoix", "https://www.fromagesdici.com/fr/fromageries/maison-daffinage-maurice-dufour-inc", "https://www.fromagesdici.com/fr/fromageries/fromagerie-laiterie-des-coteaux", "https://www.fromagesdici.com/fr/fromageries/fromagerie-ptit-plaisir", "https://www.fromagesdici.com/fr/fromageries/trappe-a-fromage-de-l-outaouais", "https://www.fromagesdici.com/fr/fromageries/microlaiterie-riverin-du-lac", "https://www.fromagesdici.com/fr/fromageries/maison-riviera", "https://www.fromagesdici.com/fr/fromageries/fromagiers-de-la-table-ronde", "https://www.fromagesdici.com/fr/fromageries/les-fromages-latino", "https://www.fromagesdici.com/fr/fromageries/les-dependances", "https://www.fromagesdici.com/fr/fromageries/fromage-au-village", "https://www.fromagesdici.com/fr/fromageries/laiterie-laroche", "https://www.fromagesdici.com/fr/fromageries/laiterie-de-coaticook", "https://www.fromagesdici.com/fr/fromageries/lait-charbonneau", "https://www.fromagesdici.com/fr/fromageries/lactalis-canada-victoriaville", "https://www.fromagesdici.com/fr/fromageries/la-moutonniere-inc", "https://www.fromagesdici.com/fr/fromageries/kingsey", "https://www.fromagesdici.com/fr/fromageries/fromages-saputo-montreal", "https://www.fromagesdici.com/fr/fromageries/fromages-saputo-mont-laurier", "https://www.fromagesdici.com/fr/fromageries/fromages-de-lisle-dorleans", "https://www.fromagesdici.com/fr/fromageries/fromages-biobio-affineur", "https://www.fromagesdici.com/fr/fromageries/la-fromagerie-victoria", "https://www.fromagesdici.com/fr/fromageries/fromagerie-st-laurent", "https://www.fromagesdici.com/fr/fromageries/fromagerie-st-guillaume", "https://www.fromagesdici.com/fr/fromageries/fromagerie-st-fidele", "https://www.fromagesdici.com/fr/fromageries/abbaye-de-saint-benoit-du-lac", "https://www.fromagesdici.com/fr/fromageries/fromagerie-roy", "https://www.fromagesdici.com/fr/fromageries/fromagerie-eco-delices", "https://www.fromagesdici.com/fr/fromageries/fromagerie-qualite-summum", "https://www.fromagesdici.com/fr/fromageries/fromagerie-pepite-dor", "https://www.fromagesdici.com/fr/fromageries/fromagerie-proulx", "https://www.fromagesdici.com/fr/fromageries/fromagerie-port-joli", "https://www.fromagesdici.com/fr/fromageries/bedouin", "https://www.fromagesdici.com/fr/fromageries/fromagerie-perron", "https://www.fromagesdici.com/fr/fromageries/fromagerie-nouvelle-france", "https://www.fromagesdici.com/fr/fromageries/fromagerie-medard", "https://www.fromagesdici.com/fr/fromageries/fromagerie-montebello", "https://www.fromagesdici.com/fr/fromageries/fromagerie-missiska", "https://www.fromagesdici.com/fr/fromageries/fromagerie-marie-kade", "https://www.fromagesdici.com/fr/fromageries/fromagerie-les-rivieres", "https://www.fromagesdici.com/fr/fromageries/fromagerie-les-broussailles", "https://www.fromagesdici.com/fr/fromageries/fromagerie-lemaire", "https://www.fromagesdici.com/fr/fromageries/fromagerie-lehmann", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-p-tit-train-du-nord", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-metayer", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-mouton-blanc", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-detour", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-chant-des-fromages", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-campagnard", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-vache-a-maillotte", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-suisse-normande", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-station", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-normandinoise", "https://www.fromagesdici.com/fr/fromageries/fromages-la-chaudiere", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-cabriole", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-bourgade", "https://www.fromagesdici.com/fr/fromageries/fromagerie-l-autre-versant", "https://www.fromagesdici.com/fr/fromageries/fromagerie-lancetre", "https://www.fromagesdici.com/fr/fromageries/fromagerie-hamel", "https://www.fromagesdici.com/fr/fromageries/fromagerie-gilbert", "https://www.fromagesdici.com/fr/fromageries/fromagerie-fromabitibi", "https://www.fromagesdici.com/fr/fromageries/fritz-kaiser", "https://www.fromagesdici.com/fr/fromageries/fromagerie-etchemin", "https://www.fromagesdici.com/fr/fromageries/fromagerie-oka", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-terroir-de-bellechasse", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-presbytere", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-pied-de-vent", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-littoral", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-champ-a-la-meule", "https://www.fromagesdici.com/fr/fromageries/fromagerie-deschaillons", "https://www.fromagesdici.com/fr/fromageries/fromagerie-des-grondines", "https://www.fromagesdici.com/fr/fromageries/fromagerie-des-cantons", "https://www.fromagesdici.com/fr/fromageries/fromagerie-des-basques", "https://www.fromagesdici.com/fr/fromageries/agropur", "https://www.fromagesdici.com/fr/fromageries/agropur-notre-dame-du-bon-conseil", "https://www.fromagesdici.com/fr/fromageries/fromagerie-de-l-isle", "https://www.fromagesdici.com/fr/fromageries/fromagerie-de-granby-agropur", "https://www.fromagesdici.com/fr/fromageries/fromagerie-de-beauceville-agropur", "https://www.fromagesdici.com/fr/fromageries/fromagerie-champetre", "https://www.fromagesdici.com/fr/fromageries/fromagerie-borealait", "https://www.fromagesdici.com/fr/fromageries/fromagerie-boivin", "https://www.fromagesdici.com/fr/fromageries/fromagerie-blackburn", "https://www.fromagesdici.com/fr/fromageries/fromagerie-bergeron", "https://www.fromagesdici.com/fr/fromageries/fromagerie-bel-canada", "https://www.fromagesdici.com/fr/fromageries/fromagerie-au-pays-des-bleuets", "https://www.fromagesdici.com/fr/fromageries/fromagerie-amafacon", "https://www.fromagesdici.com/fr/fromageries/fromagerie-allen", "https://www.fromagesdici.com/fr/fromageries/fromagerie-alexis-de-portneuf-saint-raymond", "https://www.fromagesdici.com/fr/fromageries/fromagerie-alexis-de-portneuf-mont-laurier", "https://www.fromagesdici.com/fr/fromageries/la-fromagerie-1860-duvillage-inc", "https://www.fromagesdici.com/fr/fromageries/fromage-warwick", "https://www.fromagesdici.com/fr/fromageries/ferme-vallee-verte-1912", "https://www.fromagesdici.com/fr/fromageries/ferme-phylum", "https://www.fromagesdici.com/fr/fromageries/bouchard-artisan-bio", "https://www.fromagesdici.com/fr/fromageries/1001-fondues", "https://www.fromagesdici.com/fr/fromageries/gasper"], "socials": ["https://www.facebook.com/fromagesdici", "https://www.youtube.com/channel/UCxSGDuWDPFOvNy7xP_LylcA", "https://www.instagram.com/fromages.dici/", "https://www.pinterest.ca/fromagesdici/", "https://www.laiteriecharlevoix.com/fr", "http://www.laiteriechalifoux.com", "https://fromagerieproulx.com/", "https://www.facebook.com/fromagerielesrivieres/", "https://www.facebook.com/Fromagerie-le-campagnard-608663716006909/", "https://www.facebook.com/people/Fromagerie-LAutre-Versant/100064447851405/", "https://fr-ca.facebook.com/Champalameule/", "https://www.facebook.com/FromagerieDeschaillons/", "https://www.facebook.com/borealait/", "https://www.facebook.com/pages/category/Cheese-Shop/Ferme-Phylum-2274864726112534/", "https://www.facebook.com/Gasper-217682308665189/"], "postal_prefix": "G0A", "phone": "418 829-0177", "regions_mentioned": ["Abitibi", "Bas-Saint-Laurent", "Centre-du-Québec", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue", "Îles-de-la-Madeleine", "Laval"]}
1833 1899 {"domain": "lafascine.com", "urls": ["https://www.lafascine.com/"], "names": ["Auberge La Fascine Bistro Culturel", "Auberge la Fascine Bistro culturel - Restaurant"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/auberge-la-fascine-bistro-culturel", "https://www.tourisme-charlevoix.com/fr/entreprises/auberge-la-fascine-bistro-culturel-restaurant"], "socials": ["https://www.instagram.com/la_fascine", "http://www.facebook.com/aubergelafascine", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://www.instagram.com/la_fascine/"], "postal_prefix": "G0A", "phone": "418 438-1010", "regions_mentioned": ["Saguenay"]}
1900 +{"domain": "lafeebranchee.com", "urls": ["https://lafeebranchee.com/a-propos"], "names": ["La fée branchée"], "sources": ["search_sweep_cmaq"], "source_pages": ["La fée branchée Johanne Dubeau créateur imprimeur textile québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Greenfield Park, QC"]}
1834 1901 {"domain": "lafermeafrederique.com", "urls": ["https://www.lafermeafrederique.com"], "names": ["La ferme à Frédérique"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/la-ferme-a-frederique"], "socials": ["https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G7A", "phone": "(418) 559-6001", "regions_mentioned": []}
1835 1902 {"domain": "lafermeaufonddu2.ca", "urls": ["http://www.lafermeaufonddu2.ca", "https://www.lafermeaufonddu2.ca/", "https://www.lafermeaufonddu2.ca/category/all-products"], "names": ["La Ferme au Fond du 2", "Créateurs"], "sources": ["alimentsduquebec_ent", "createursdesaveurs"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-ferme-au-fond-du-2", "https://createursdesaveurs.com/createurs/la-ferme-au-fond-du-2/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/aspergeraiedeweedon", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-ferme-au-fond-du-2%2F&t=La%20Ferme%20au%20Fond%20du%202", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-ferme-au-fond-du-2%2F&text=La%20Ferme%20au%20Fond%20du%202", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-ferme-au-fond-du-2%2F&title=La%20Ferme%20au%20Fond%20du%202&summary="], "postal_prefix": "J0B", "phone": "(819) 640-9482", "regions_mentioned": ["Estrie", "Cantons-de-l'Est"]}
1836 1903 {"domain": "lafermebasque.ca", "urls": ["http://www.lafermebasque.ca", "https://lafermebasque.ca/"], "names": ["La ferme Basque de Charlevoix", "La Ferme Basque de Charlevoix"], "sources": ["alimentsduquebec_ent", "charlevoix"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-ferme-basque-de-charlevoix", "https://www.tourisme-charlevoix.com/fr/entreprises/la-ferme-basque-de-charlevoix"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/fermebasquecharlevoix/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G0A", "phone": "418 639-2246", "regions_mentioned": ["Capitale-Nationale", "Saguenay"]}
@@ -1902,7 +1969,7 @@
1902 1969 {"domain": "lamareaudiable.ca", "urls": ["https://lamareaudiable.ca/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/microbrasserie-la-mare-au-diable/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-la-mare-au-diable%2F&t=Microbrasserie%20La%20Mare%20Au%20Diable", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-la-mare-au-diable%2F&text=Microbrasserie%20La%20Mare%20Au%20Diable", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-la-mare-au-diable%2F&title=Microbrasserie%20La%20Mare%20Au%20Diable&summary="], "postal_prefix": "J1H", "phone": "(819) 562-1001", "regions_mentioned": ["Cantons-de-l'Est"]}
1903 1970 {"domain": "lamarinarestobar.com", "urls": ["https://www.lamarinarestobar.com/"], "names": ["La Marina Resto-Bar"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/la-marina-resto-bar"], "socials": ["https://www.facebook.com/lamarinarestobarsjpj?locale=fr_CA", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 358-0866", "regions_mentioned": []}
1904 1971 {"domain": "lambertetfils.com", "urls": ["https://lambertetfils.com/fr"], "names": ["Lambert & Fils"], "sources": ["search_sweep_urban"], "source_pages": ["luminaires design fabriqués Montréal studio boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
1905 −{"domain": "lameduseim.com", "urls": ["https://lameduseim.com"], "names": ["La Méduse"], "sources": ["search_sweep_manuf"], "source_pages": ["verre soufflé québécois boutique en ligne atelier"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Îles-de-la-Madeleine, QC"]}
1972 +{"domain": "lameduseim.com", "urls": ["https://lameduseim.com"], "names": ["Verrerie La Méduse", "La Méduse", "La Méduse (Catherine Chevrier-Turbide)"], "sources": ["search_sweep_cmaq", "search_sweep_manuf"], "source_pages": ["Verrerie La Méduse François Turbide artiste verrier québec", "La Méduse Sophie Bourgeois artiste verrier québec", "La Méduse Catherine Chevrier-Turbide artiste verrier québec", "verre soufflé québécois boutique en ligne atelier"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Havre-aux-Maisons, Îles-de-la-Madeleine, QC", "Îles-de-la-Madeleine, QC"]}
1906 1973 {"domain": "lamemphre.com", "urls": ["https://lamemphre.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/microbrasserie-la-memphre/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/publamemphre", "https://www.instagram.com/microlamemphre/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-la-memphre%2F&t=Microbrasserie%20La%20Memphr%C3%A9", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-la-memphre%2F&text=Microbrasserie%20La%20Memphr%C3%A9", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmicrobrasserie-la-memphre%2F&title=Microbrasserie%20La%20Memphr%C3%A9&summary="], "postal_prefix": "J1X", "phone": "(819) 843-3405", "regions_mentioned": ["Cantons-de-l'Est"]}
1907 1974 {"domain": "lameric.ca", "urls": ["https://www.lameric.ca/"], "names": ["LamEric Design"], "sources": ["search_sweep_vendors"], "source_pages": ["\"LamEric Design\" pot céramique collection Ariane Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["QC"]}
1908 1975 {"domain": "lamexicoiseinc.com", "urls": ["https://www.lamexicoiseinc.com/"], "names": ["La Mexicoise Inc"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-mexicoise-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H1R", "phone": null, "regions_mentioned": ["Montréal"]}
@@ -1912,7 +1979,7 @@
1912 1979 {"domain": "laminoteriedesanciens.com", "urls": ["http://www.laminoteriedesanciens.com"], "names": ["PRODUCTEURS/TRANSFORMATEURS"], "sources": ["gaspesiegourmande"], "source_pages": ["https://gaspesiegourmande.com/producteurs-transformateurs?id=498&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=498&amp;Filtre=3&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=498&amp;Filtre=5&amp;FiltreSec=2"], "socials": ["https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": null, "phone": "418 729-3813", "regions_mentioned": ["Bas-Saint-Laurent", "Gaspésie"]}
1913 1980 {"domain": "lamirabliere.com", "urls": ["https://lamirabliere.com/"], "names": ["Les Sucreries Jetté", "Les Sucreries Jetté – La Mirablière"], "sources": ["alimentsduquebec_ent", "erabledici", "laurentidesjenmange"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-sucreries-jette", "https://www.erabledici.ca/fr/erabliere/les-sucreries-jette-la-mirabliere/", "https://laurentidesjenmange.ca/membre/les-sucreries-jette-la-mirabliere"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/lamirabliere/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/les-sucreries-jette-la-mirabliere/", "https://twitter.com/intent/tweet?text=Les+Sucreries+Jett%C3%A9+%26%238211%3B+La+Mirabli%C3%A8re https://www.erabledici.ca/fr/erabliere/les-sucreries-jette-la-mirabliere/", "https://www.facebook.com/laurentidesjm/", "https://www.instagram.com/laurentidesjenmange/", "https://www.facebook.com/profile.php?id=61574090424622&locale=fr_CA", "https://www.youtube.com/channel/UCW2AsAw1UpE3ixjADMrnm8g"], "postal_prefix": "J7N", "phone": "450 258-2606", "regions_mentioned": ["Laurentides"]}
1914 1981 {"domain": "lamorin.ca", "urls": ["https://www.lamorin.ca/"], "names": ["La Morin"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-morin"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H2K", "phone": null, "regions_mentioned": ["Montreal", "Montréal"]}
1915 −{"domain": "lamosaiquefleurie.ca", "urls": ["https://www.lamosaiquefleurie.ca/"], "names": ["La mosaïque fleurie - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/la-mosaique-fleurie-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J4L", "phone": "514 847-9799", "regions_mentioned": []}
1982 +{"domain": "lamosaiquefleurie.ca", "urls": ["https://www.lamosaiquefleurie.ca/", "https://www.lamosaiquefleurie.ca"], "names": ["La mosaïque fleurie - CMAQ", "Mosaïque Fleurie"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/la-mosaique-fleurie-cmaq", "Mosaïque Fleurie Claire Labelle ébéniste québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J4L", "phone": "514 847-9799", "regions_mentioned": ["Montérégie, QC"]}
1916 1983 {"domain": "lamoureuxandsons.com", "urls": ["https://lamoureuxandsons.com"], "names": ["Lamoureux & Sons"], "sources": ["search_sweep_manuf"], "source_pages": ["couteaux artisanaux coutellerie québécoise boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
1917 1984 {"domain": "lamoutonniere.com", "urls": ["http://www.lamoutonniere.com/"], "names": ["La Moutonnière inc."], "sources": ["fromagesdici"], "source_pages": ["https://www.fromagesdici.com/fr/fromageries/la-moutonniere-inc"], "socials": ["https://www.facebook.com/fromagesdici", "https://www.youtube.com/channel/UCxSGDuWDPFOvNy7xP_LylcA", "https://www.instagram.com/fromages.dici/", "https://www.pinterest.ca/fromagesdici/"], "postal_prefix": "G0P", "phone": "(819) 382-2300", "regions_mentioned": ["Abitibi", "Bas-Saint-Laurent", "Centre-du-Québec", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue", "Îles-de-la-Madeleine"]}
1918 1985 {"domain": "lanaudiere.ca", "urls": ["https://lanaudiere.ca/fr/activites-lanaudiere/marche-decouvertes/"], "names": ["Marché des découvertes de Saint-Donat"], "sources": ["marchespublics"], "source_pages": ["https://www.marchespublicsduquebec.ca/marches-publics/marche-des-decouvertes-de-saint-donat/"], "socials": ["https://www.facebook.com/profile.php?id=61572446764485", "https://www.facebook.com/marchespublicsqc", "https://www.linkedin.com/company/marches-publics-du-quebec/", "https://www.instagram.com/marchespublicsqc/", "https://www.youtube.com/channel/UCtwIcRX4_9l0XsOT7MgjFQQ"], "postal_prefix": "J0T", "phone": null, "regions_mentioned": ["Lanaudière"]}
@@ -1922,7 +1989,7 @@
1922 1989 {"domain": "lanticerable.com", "urls": ["https://lanticerable.com/fr/"], "names": ["Lantic Érable Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/lantic-erable-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J2J", "phone": null, "regions_mentioned": ["Centre-du-Québec"]}
1923 1990 {"domain": "lantiquairedesaintirenee.ca", "urls": ["https://www.lantiquairedesaintirenee.ca", "https://www.lantiquairedesaintirenee.ca/", "https://www.lantiquairedesaintirenee.ca/contact"], "names": ["L'Antiquaire de Saint-Irénée"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/l-antiquaire-de-saint-irenee"], "socials": ["https://www.facebook.com/marc12468/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G0T", "phone": "418 452-8266", "regions_mentioned": ["Saguenay"]}
1924 1991 {"domain": "lanvert.ca", "urls": ["http://lanvert.ca"], "names": ["Lanvert"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/lanvert/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Lanvert-112393923619794/"], "postal_prefix": null, "phone": "514 424-5393", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
1925 −{"domain": "laparebijoux.ca", "urls": ["https://www.laparebijoux.ca/?fbclid=IwY2xjawSnk3hleHRuA2FlbQIxMABicmlkETEwdUFWV3pkVGw2T1pacG9Cc3J0YwZhcHBfaWQQMjIyMDM5MTc4ODIwMDg5MgABHmkyg5Jm1yRDnGn0kzdMyCvfg7AY-tUH3Bj1V4Q5s5WS4i-K24RyZ1WEFdEO_aem_1JLcwp9894J-v1RhnV2UTg"], "names": ["Laparé Bijoux - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/lapare-bijoux-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G8Y", "phone": "514 847-9799", "regions_mentioned": []}
1992 +{"domain": "laparebijoux.ca", "urls": ["https://www.laparebijoux.ca/?fbclid=IwY2xjawSnk3hleHRuA2FlbQIxMABicmlkETEwdUFWV3pkVGw2T1pacG9Cc3J0YwZhcHBfaWQQMjIyMDM5MTc4ODIwMDg5MgABHmkyg5Jm1yRDnGn0kzdMyCvfg7AY-tUH3Bj1V4Q5s5WS4i-K24RyZ1WEFdEO_aem_1JLcwp9894J-v1RhnV2UTg", "https://www.laparebijoux.ca"], "names": ["Laparé Bijoux - CMAQ", "Laparé bijoux"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/lapare-bijoux-cmaq", "Laparé bijoux Chantal Laparé québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G8Y", "phone": "514 847-9799", "regions_mentioned": ["Trois-Rivières, QC"]}
1926 1993 {"domain": "lapaysannerie.ca", "urls": ["https://lapaysannerie.ca/categorie-produit/erable/", "https://lapaysannerie.ca/"], "names": ["La Paysannerie inc."], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/la-paysannerie-inc/"], "socials": ["https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/la-paysannerie-inc/", "https://twitter.com/intent/tweet?text=La+Paysannerie+inc. https://www.erabledici.ca/fr/erabliere/la-paysannerie-inc/"], "postal_prefix": "J0X", "phone": "819 458-3439", "regions_mentioned": ["Outaouais"]}
1927 1994 {"domain": "lapecheresse.com", "urls": ["https://lapecheresse.com/"], "names": ["Microbrasserie La Pécheresse"], "sources": ["ambq_profils"], "source_pages": ["https://ambq.ca/fr/microbrasserie/microbrasserie-la-p-cheresse"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/microlapecheresse/", "https://www.instagram.com/microbrasserie_la_pecheresse/"], "postal_prefix": "G9X", "phone": "819 709-6844", "regions_mentioned": ["Mauricie"]}
1928 1995 {"domain": "lapiazzetta.ca", "urls": ["https://lapiazzetta.ca/"], "names": ["La Piazzetta"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-piazzetta"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G1R", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
@@ -1970,6 +2037,8 @@
1970 2037 {"domain": "laterreferme.com", "urls": ["https://www.laterreferme.com/"], "names": ["La Terre Ferme"], "sources": ["search_sweep_food"], "source_pages": ["ferme panier légumes bio boutique en ligne Lanaudière Laurentides"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lanaudière"]}
1971 2038 {"domain": "latheierealenvers.com", "urls": ["https://latheierealenvers.com/"], "names": ["La Théière à l'Envers"], "sources": ["search_sweep_food"], "source_pages": ["thé tisane boréale boutique en ligne Côte-Nord Saguenay"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saguenay–Lac-Saint-Jean"]}
1972 2039 {"domain": "latinacuisine.com", "urls": ["https://www.latinacuisine.com/fr"], "names": ["Latina Cuisine Inc"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/latina-cuisine-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H3N", "phone": null, "regions_mentioned": ["Montreal", "Montréal"]}
2040 +{"domain": "laumecera.com", "urls": ["https://www.laumecera.com/blank-1"], "names": ["Laume"], "sources": ["search_sweep_cmaq"], "source_pages": ["Laume Laura MacLean céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Val-David, QC"]}
2041 +{"domain": "launeatelier.com", "urls": ["https://www.launeatelier.com"], "names": ["L'AUNE Atelier", "L'AUNE"], "sources": ["search_sweep_bijoux", "search_sweep_cmaq"], "source_pages": ["bijoux faits main Québec boutique en ligne artisan", "L'AUNE Karine Denault joaillier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal", "Montréal, QC"]}
1973 2042 {"domain": "lauthentik.ca", "urls": ["https://lauthentik.ca/"], "names": ["L'Authentik Café - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/lauthentik-cafe/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/lauthentikcafe/?locale=fr_FR", "https://www.instagram.com/lauthentik.cafe/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/lauthentik-cafe/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=L'Authentik Café&url=https://goutezy.com/entreprise/lauthentik-cafe/"], "postal_prefix": "G6T", "phone": "(819) 604-4656", "regions_mentioned": ["Centre-du-Québec"]}
1974 2043 {"domain": "lautrebrasserie.ca", "urls": ["https://lautrebrasserie.ca/"], "names": ["L'Autre Brasserie", "Créateurs"], "sources": ["ambq_profils", "createursdesaveurs"], "source_pages": ["https://ambq.ca/fr/microbrasserie/l-autre-brasserie", "https://createursdesaveurs.com/createurs/lautre-brasserie/"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/autrebrasserie", "https://www.instagram.com/lautrebrasserie/", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Flautre-brasserie%2F&t=L%E2%80%99Autre%20Brasserie", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Flautre-brasserie%2F&text=L%E2%80%99Autre%20Brasserie", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Flautre-brasserie%2F&title=L%E2%80%99Autre%20Brasserie&summary="], "postal_prefix": "J0J", "phone": "514-929-3026", "regions_mentioned": ["Cantons-de-l'Est", "Estrie"]}
1975 2044 {"domain": "lavalleebleue.net", "urls": ["http://lavalleebleue.net", "https://www.lavalleebleue.net/", "https://www.lavalleebleue.net/product-page/sirop-d-%C3%A9rable-500ml", "https://www.lavalleebleue.net/product-page/sucre-d-%C3%A9rable-250g", "https://www.lavalleebleue.net/product-page/liqueur-d-%C3%A9rable", "https://www.lavalleebleue.net/product-page/vinaigrette-bleuet-et-sirop-d-%C3%A9rable", "https://www.lavalleebleue.net/product-page/chandelle-cabane-%C3%A0-sucre"], "names": ["Distillerie La Vallée Bleue", "La Vallée Bleue Distillerie"], "sources": ["distilleriesduquebec", "erabledici"], "source_pages": ["https://distilleriesduquebec.com/fr/le-repertoire-des-distilleries/distillerie-la-vallee-bleue", "https://www.erabledici.ca/fr/erabliere/la-vallee-bleue-distillerie/"], "socials": ["https://www.facebook.com/distillerielavalleebleue", "https://www.facebook.com/distilleriedequebec/", "https://www.instagram.com/distilleriedequebec/", "https://www.linkedin.com/company/union-québécoise-des-microdistilleries/?originalSubdomain=ca", "https://www.youtube.com/@distilleriesqc", "https://www.facebook.com/ad_center/boost/?entry_point=www_pages_applus_leftnav_boost_ig_post&page_id=100142279061429&item_picker=boosted_fb_instagram_media_picker", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/la-vallee-bleue-distillerie/", "https://twitter.com/intent/tweet?text=La+Vall%C3%A9e+Bleue+Distillerie https://www.erabledici.ca/fr/erabliere/la-vallee-bleue-distillerie/"], "postal_prefix": "G0S", "phone": "418 271-3063", "regions_mentioned": ["Chaudière-Appalaches", "Laval"]}
@@ -2087,6 +2156,7 @@
2087 2156 {"domain": "lesbecs.ca", "urls": ["https://lesbecs.ca"], "names": ["Les Becs Sucrés-Salés"], "sources": ["search_sweep_regions"], "source_pages": ["chocolaterie confiserie Abitibi-Témiscamingue boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Abitibi-Témiscamingue"]}
2088 2157 {"domain": "lesbellesbobettes.ca", "urls": ["https://lesbellesbobettes.ca"], "names": ["Les belles bobettes"], "sources": ["search_sweep_urban"], "source_pages": ["lingerie québécoise fabriquée Montréal boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2089 2158 {"domain": "lesbeurres.ca", "urls": ["https://lesbeurres.ca/"], "names": ["LES BEURRÉS Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-beurres-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G2K", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
2159 +{"domain": "lesbijouxtherrien.com", "urls": ["https://www.lesbijouxtherrien.com"], "names": ["Les Bijoux Therrien"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Saguenay Chicoutimi boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Chicoutimi, Saguenay"]}
2090 2160 {"domain": "lesbleuetsdumarquis.com", "urls": ["https://lesbleuetsdumarquis.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/les-bleuets-bio-du-marquis/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/bleuetsdumarquis", "https://instagram.com/bleuets_du_marquis?utm_medium=copy_link", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-bleuets-bio-du-marquis%2F&t=Les%20Bleuets%20bio%20du%20Marquis", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-bleuets-bio-du-marquis%2F&text=Les%20Bleuets%20bio%20du%20Marquis", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-bleuets-bio-du-marquis%2F&title=Les%20Bleuets%20bio%20du%20Marquis&summary="], "postal_prefix": "J0E", "phone": "(514) 951-9164", "regions_mentioned": ["Cantons-de-l'Est"]}
2091 2161 {"domain": "lesbleuetsduvirecrepes.com", "urls": ["http://www.lesbleuetsduvirecrepes.com", "https://www.lesbleuetsduvirecrepes.com"], "names": ["Les Bleuets Du Vire-Crêpes", "Les Bleuets du Vire-Crêpes"], "sources": ["alimentsduquebec_ent", "arretsgourmands"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-bleuets-du-vire-crepes", "https://arretsgourmands.ca/arrets-gourmands/les-bleuets-du-vire-crepes"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G7A", "phone": "(418) 836-2955", "regions_mentioned": ["Chaudière-Appalaches"]}
2092 2162 {"domain": "lesbobines.com", "urls": ["http://www.lesbobines.com", "https://www.lesbobines.com/", "https://www.lesbobines.com/fr/produits/points-de-vente"], "names": ["Ferme Piscicole Des Bobines Inc.", "Créateurs"], "sources": ["alimentsduquebec_ent", "createursdesaveurs"], "source_pages": ["https://alimentsduquebec.com/entreprises/ferme-piscicole-des-bobines-inc", "https://createursdesaveurs.com/createurs/ferme-piscicole-des-bobines-inc/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/profile.php?id=61554184478720", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-piscicole-des-bobines-inc%2F&t=Ferme%20piscicole%20les%20Bobines%20inc", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-piscicole-des-bobines-inc%2F&text=Ferme%20piscicole%20les%20Bobines%20inc", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-piscicole-des-bobines-inc%2F&title=Ferme%20piscicole%20les%20Bobines%20inc&summary="], "postal_prefix": "J0B", "phone": "(819) 844-2418", "regions_mentioned": ["Estrie", "Cantons-de-l'Est"]}
@@ -2198,7 +2268,7 @@
2198 2268 {"domain": "lharmattan.com", "urls": ["https://lharmattan.com/", "https://lharmattan.com/nous-joindre/"], "names": ["Galerie l'Harmattan"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/galerie-l-harmattan"], "socials": ["https://www.instagram.com/galeriedartlharmattan/", "https://www.facebook.com/profile.php?id=100083302690800", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G3Z", "phone": "418 435-2970", "regions_mentioned": ["Saguenay"]}
2199 2269 {"domain": "liberte.ca", "urls": ["https://liberte.ca/fr/index"], "names": ["Yoplait Liberte Canada Co."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/yoplait-liberte-canada-co"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J2S", "phone": null, "regions_mentioned": ["Montérégie"]}
2200 2270 {"domain": "librairiebaiestpaul.com", "urls": ["https://librairiebaiestpaul.com/"], "names": ["Librairie Baie-St-Paul"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/librairie-baie-st-paul"], "socials": ["https://www.facebook.com/LibrairieBaieStPaul/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G3Z", "phone": "418 435-5432", "regions_mentioned": ["Saguenay"]}
2201 −{"domain": "lidiajewelry.ca", "urls": ["https://lidiajewelry.ca/"], "names": ["Lidia Raymond - CMAQ", "Lidia"], "sources": ["lesproduitsduquebec_ent", "search_sweep_vendors"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/lidia-raymond-cmaq", "\"Lidia\" bijoux boucles d'oreilles argent Québec boutique"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2K", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Montréal, QC"]}
2271 +{"domain": "lidiajewelry.ca", "urls": ["https://lidiajewelry.ca/", "https://lidiajewelry.ca"], "names": ["Lidia Raymond - CMAQ", "Lidia Jewelry", "Lidia"], "sources": ["lesproduitsduquebec_ent", "search_sweep_bijoux", "search_sweep_vendors"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/lidia-raymond-cmaq", "bijoux minimalistes Montréal créateur boutique en ligne", "\"Lidia\" bijoux boucles d'oreilles argent Québec boutique"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2K", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Montréal, QC"]}
2202 2272 {"domain": "ligneerr2.com", "urls": ["http://www.ligneerr2.com", "https://www.ligneerr2.com/"], "names": ["Charcuterie Lignée RR2 inc.", "Lignée RR2"], "sources": ["alimentsduquebec_ent", "search_sweep_food"], "source_pages": ["https://alimentsduquebec.com/entreprises/charcuterie-lignee-rr2-inc", "boucherie fumoir viande artisanale boutique en ligne Centre-du-Québec Mauricie"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G0X", "phone": null, "regions_mentioned": ["Mauricie"]}
2203 2273 {"domain": "liliblanc.ca", "urls": ["https://www.liliblanc.ca/?aftag=76c776b8439dec4dfb6b101588e63e32&utm_medium=afocus"], "names": ["Liliblanc"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/liliblanc/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
2204 2274 {"domain": "lilietgordo.com", "urls": ["https://lilietgordo.com"], "names": ["Aliments Lili et Gordo - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/aliments-lili-et-gordo/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/marchemx.drummond", "https://www.instagram.com/marchemx.drummondville/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/aliments-lili-et-gordo/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Aliments Lili et Gordo&url=https://goutezy.com/entreprise/aliments-lili-et-gordo/"], "postal_prefix": "J2C", "phone": "(819) 862-0811", "regions_mentioned": ["Centre-du-Québec"]}
@@ -2221,6 +2291,7 @@
2221 2291 {"domain": "lordupotager.com", "urls": ["https://lordupotager.com/"], "names": ["L'Or du Potager - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/lor-du-potager/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/profile.php?id=61556653872674&locale=fr_CA", "https://instagram.com/lordupotager", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/lor-du-potager/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=L'Or du Potager&url=https://goutezy.com/entreprise/lor-du-potager/"], "postal_prefix": "G0X", "phone": "(450) 531-2574", "regions_mentioned": ["Centre-du-Québec"]}
2222 2292 {"domain": "lordviolet.ca", "urls": ["https://lordviolet.ca/"], "names": ["Lord Violet"], "sources": ["search_sweep_vendors"], "source_pages": ["direct domain guess lordviolet.com redirects to lordviolet.ca, verified via WebFetch"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
2223 2293 {"domain": "losbalderas.com", "urls": ["https://www.losbalderas.com"], "names": ["Los Balderas"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/los-balderas"], "socials": ["https://www.facebook.com/losbalderastacos", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G6J", "phone": "(418) 836-7007", "regions_mentioned": []}
2294 +{"domain": "lostandfaune.com", "urls": ["https://www.lostandfaune.com"], "names": ["Lost & Faune"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux émail créateur québécois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2224 2295 {"domain": "louinspirations.com", "urls": ["https://louinspirations.com/en-us/"], "names": ["Lou Inspirations"], "sources": ["search_sweep_vendors"], "source_pages": ["\"Lou Inspirations\" sac banane Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
2225 2296 {"domain": "louisacafedequartier.ca", "urls": ["https://louisacafedequartier.ca/"], "names": ["Louisa Café de Quartier"], "sources": ["laurentidesjenmange"], "source_pages": ["https://laurentidesjenmange.ca/membre/louisa-cafe-de-quartier"], "socials": ["https://www.facebook.com/laurentidesjm/", "https://www.instagram.com/laurentidesjenmange/", "https://www.facebook.com/louisacafedequartier", "https://www.instagram.com/louisacafedequartier/"], "postal_prefix": "J0N", "phone": "(450) 818-1841", "regions_mentioned": ["Laurentides"]}
2226 2297 {"domain": "lovelegrand.com", "urls": ["https://lovelegrand.com/"], "names": ["Maison Le Grand"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/maison-le-grand"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J7C", "phone": null, "regions_mentioned": ["Laurentides"]}
@@ -2267,6 +2338,7 @@
2267 2338 {"domain": "maisondherbes.com", "urls": ["https://maisondherbes.com/"], "names": ["Groupe La Feuille Verte"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/groupe-la-feuille-verte"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J1Z", "phone": "514 847-9799", "regions_mentioned": []}
2268 2339 {"domain": "maisondubootlegger.com", "urls": ["http://www.maisondubootlegger.com/", "https://www.maisondubootlegger.com", "https://www.maisondubootlegger.com/"], "names": ["La maison du Bootlegger", "Presbytère du Bootlegger - Hébergement", "Maison du Bootlegger"], "sources": ["alimentsduquebec_ent", "charlevoix"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-maison-du-bootlegger", "https://www.tourisme-charlevoix.com/fr/entreprises/presbytere-du-bootlegger-hebergement", "https://www.tourisme-charlevoix.com/fr/entreprises/maison-du-bootlegger"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/LAMAISONDUBOOTLEGGER", "https://www.youtube.com/channel/UCMyNSykN4O4j1p4k-GbtJXQ", "https://www.instagram.com/maisondubootlegger/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://www.facebook.com/LAMAISONDUBOOTLEGGER/?ref=ts"], "postal_prefix": "G5A", "phone": "418 439-3711", "regions_mentioned": ["Capitale-Nationale", "Saguenay"]}
2269 2340 {"domain": "maisondupecheur.ca", "urls": ["http://www.maisondupecheur.ca"], "names": ["COMPLICES"], "sources": ["gaspesiegourmande"], "source_pages": ["https://gaspesiegourmande.com/complices?id=584&amp;FiltreSec=3"], "socials": ["https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": "G0C", "phone": "418 782-5331", "regions_mentioned": ["Gaspésie"]}
2341 +{"domain": "maisonenchanvre.com", "urls": ["https://maisonenchanvre.com/a-propos"], "names": ["ArtCan construction chanvre"], "sources": ["search_sweep_cmaq"], "source_pages": ["ArtCan chanvre Gabriel Gauthier peintre décorateur québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montérégie, QC"]}
2270 2342 {"domain": "maisonlavande.ca", "urls": ["https://maisonlavande.ca/products/detergent-a-lessive-clementine-lavande-laundry-detergent-clementine-lavender"], "names": ["Maison Lavande"], "sources": ["search_sweep_manuf"], "source_pages": ["savon à lessive fabricant québécois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2271 2343 {"domain": "maisonmere.ca", "urls": ["https://maisonmere.ca/parcoursmuseal/", "https://maisonmere.ca/", "https://maisonmere.ca/a-propos/"], "names": ["Parcours muséal des Petites Franciscaines de Marie", "Le Jardin de François à Maison Mère Baie-Saint-Paul", "Maison Mère Baie-Saint-Paul", "Marché de Noël de Baie-Saint-Paul"], "sources": ["charlevoix", "marchespublics"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/parcours-museal-des-petites-franciscaines-de-marie", "https://www.tourisme-charlevoix.com/fr/entreprises/parcours-museal-des-petites-franciscaines-de-marie-2", "https://www.tourisme-charlevoix.com/fr/entreprises/le-jardin-de-francois-a-maison-mere-baie-saint-paul", "https://www.tourisme-charlevoix.com/fr/entreprises/maison-mere-baie-saint-paul", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-baie-saint-paul/"], "socials": ["https://www.instagram.com/maisonmere.bsp/", "https://www.facebook.com/maisonmere.bsp/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://www.facebook.com/maisonmere.bsp", "https://www.facebook.com/marchepublicbsp/", "https://www.instagram.com/marchepublic.bsp/", "https://www.facebook.com/marchespublicsqc", "https://www.linkedin.com/company/marches-publics-du-quebec/", "https://www.instagram.com/marchespublicsqc/", "https://www.youtube.com/channel/UCtwIcRX4_9l0XsOT7MgjFQQ"], "postal_prefix": "G3Z", "phone": "418 435-3521", "regions_mentioned": ["Saguenay"]}
2272 2344 {"domain": "maisonorphee.com", "urls": ["http://www.maisonorphee.com"], "names": ["La Maison Orphée Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/la-maison-orphee-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G1P", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
@@ -2279,7 +2351,7 @@
2279 2351 {"domain": "maitreglacier.com", "urls": ["https://maitreglacier.com"], "names": ["Maître Glacier Ste-Claire"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/maitre-glacier-ste-claire"], "socials": ["https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 209-4395", "regions_mentioned": []}
2280 2352 {"domain": "makabon.ca", "urls": ["http://www.makabon.ca"], "names": ["Makabon"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/makabon/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/pages/Makabon/114788692052640?fref=ts"], "postal_prefix": null, "phone": "418 720-7411", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2281 2353 {"domain": "makabon.com", "urls": ["http://www.makabon.com/"], "names": ["Makabon"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/makabon"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G8C", "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2282 −{"domain": "makeloo.com", "urls": ["https://makeloo.com/", "https://makeloo.com/fr/"], "names": ["Makeloo Studio. - Laine Québec - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/makeloo-studio-laine-quebec-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J0K", "phone": "514 847-9799", "regions_mentioned": ["Lanaudière"]}
2354 +{"domain": "makeloo.com", "urls": ["https://makeloo.com/", "https://makeloo.com/fr/", "https://makeloo.com/pages/a-propos-de-nous"], "names": ["Makeloo Studio. - Laine Québec - CMAQ", "Makeloo Studio"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/makeloo-studio-laine-quebec-cmaq", "Makeloo Studio Marcelo Martins fileur québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J0K", "phone": "514 847-9799", "regions_mentioned": ["Lanaudière", "Lanaudière, QC"]}
2283 2355 {"domain": "malainemaison.com", "urls": ["https://malainemaison.com"], "names": ["Ma Laine Maison"], "sources": ["search_sweep_manuf"], "source_pages": ["alpaga mohair fabricant québécois boutique en ligne laine"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2284 2356 {"domain": "mallainlapin.com", "urls": ["https://mallainlapin.com/", "https://www.mallainlapin.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/mallain-lapin/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/profile.php?id=100085491732170", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmallain-lapin%2F&t=Mallain%20Lapin", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmallain-lapin%2F&text=Mallain%20Lapin", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmallain-lapin%2F&title=Mallain%20Lapin&summary="], "postal_prefix": "J0B", "phone": "(819) 452-3041", "regions_mentioned": ["Cantons-de-l'Est"]}
2285 2357 {"domain": "malteriecauxlaflamme.com", "urls": ["http://malteriecauxlaflamme.com/"], "names": ["Malterie Caux Laflamme"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/malterie-caux-laflamme"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G0S", "phone": null, "regions_mentioned": ["Chaudière-Appalaches"]}
@@ -2294,6 +2366,7 @@
2294 2366 {"domain": "manoirhortensia.com", "urls": ["https://www.manoirhortensia.com", "https://www.manoirhortensia.com/"], "names": ["Le Manoir Hortensia"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/le-manoir-hortensia"], "socials": ["http://www.facebook.com/manoir.hortensia?ref=hl", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires", "https://atrcharlevoix.com/medias-tournees-presse"], "postal_prefix": "G0T", "phone": "418 452-8180", "regions_mentioned": ["Saguenay"]}
2295 2367 {"domain": "manoirhovey.com", "urls": ["https://manoirhovey.com/fr/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/restaurant-le-hatley/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.instagram.com/restaurantlehatley/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Frestaurant-le-hatley%2F&t=Restaurant%20Le%20Hatley", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Frestaurant-le-hatley%2F&text=Restaurant%20Le%20Hatley", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Frestaurant-le-hatley%2F&title=Restaurant%20Le%20Hatley&summary="], "postal_prefix": "J0B", "phone": "819 346-8905", "regions_mentioned": ["Cantons-de-l'Est"]}
2296 2368 {"domain": "manonbterroirdeco.com", "urls": ["https://www.manonbterroirdeco.com/"], "names": ["Manon Brassard, Terroir et décoration"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/manon-brassard-terroir-et-decoration/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/profile.php?id=100063668464307", "https://www.instagram.com/manob1962/"], "postal_prefix": "G8K", "phone": "418 900-8062", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2369 +{"domain": "mantionbijoutier.com", "urls": ["https://mantionbijoutier.com"], "names": ["Mantion Bijoutier"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Terrebonne boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Terrebonne"]}
2297 2370 {"domain": "maple3.ca", "urls": ["http://www.maple3.ca/"], "names": ["Maple 3 (Groupe Acéricole Sn Inc.)"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/maple-3-groupe-acericole-sn-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G1L", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
2298 2371 {"domain": "maplemc2.com", "urls": ["https://maplemc2.com/", "https://maplemc2.com/nos-produits"], "names": ["Maple MC2"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/maple-mc2/"], "socials": ["https://www.facebook.com/profile.php?id=61556522819717", "https://www.instagram.com/maple_mc2/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/maple-mc2/", "https://twitter.com/intent/tweet?text=Maple+MC2 https://www.erabledici.ca/fr/erabliere/maple-mc2/"], "postal_prefix": "J0G", "phone": "450 785-2148", "regions_mentioned": ["Montérégie"]}
2299 2372 {"domain": "maplesavage.com", "urls": ["https://www.maplesavage.com"], "names": ["Maple Savage"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/maple-savage/"], "socials": ["https://www.facebook.com/MAPLESAVAGEHONEY/", "https://www.instagram.com/fermesavage/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/maple-savage/", "https://twitter.com/intent/tweet?text=Maple+Savage https://www.erabledici.ca/fr/erabliere/maple-savage/"], "postal_prefix": "J1A", "phone": "819 345-3059", "regions_mentioned": ["Estrie"]}
@@ -2359,9 +2432,10 @@
2359 2432 {"domain": "marchevieuxhull.ca", "urls": ["https://www.marchevieuxhull.ca/"], "names": ["Marché Vieux-Hull (Gatineau)"], "sources": ["marchespublics"], "source_pages": ["https://www.marchespublicsduquebec.ca/marches-publics/marche-vieux-hull-gatineau/"], "socials": ["https://www.facebook.com/marche.vieuxhull.1", "https://www.facebook.com/marchespublicsqc", "https://www.linkedin.com/company/marches-publics-du-quebec/", "https://www.instagram.com/marchespublicsqc/", "https://www.youtube.com/channel/UCtwIcRX4_9l0XsOT7MgjFQQ"], "postal_prefix": "J8X", "phone": null, "regions_mentioned": ["Outaouais"]}
2360 2433 {"domain": "mareechandelles.com", "urls": ["https://mareechandelles.com/en"], "names": ["Marée Chandelles"], "sources": ["search_sweep_nonfood"], "source_pages": ["chandelles soya québécoises boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Mauricie (Trois-Rivières)"]}
2361 2434 {"domain": "margarinethibault.com", "urls": ["https://margarinethibault.com/"], "names": ["Margarine Thibault Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/margarine-thibault-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/Nuvel.margarine"], "postal_prefix": "G9A", "phone": null, "regions_mentioned": ["Mauricie"]}
2435 +{"domain": "marie-les-bains.com", "urls": ["https://marie-les-bains.com/pages/a-propos"], "names": ["Marie-Les-Bains"], "sources": ["search_sweep_cmaq"], "source_pages": ["Marie-Les-Bains Marie-Eve Dion créateur imprimeur textile québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Cantons-de-l'Est, QC"]}
2362 2436 {"domain": "mariefil.com", "urls": ["http://www.mariefil.com"], "names": ["Marie fil"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/marie-fil"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G1L", "phone": "514 847-9799", "regions_mentioned": []}
2363 2437 {"domain": "marieserreau.com", "urls": ["https://marieserreau.com"], "names": ["Mains dans la terre (Les)"], "sources": ["search_sweep_cmaq"], "source_pages": ["Mains dans la terre Marie Serreau céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec, QC"]}
2364 −{"domain": "marigoldmtl.com", "urls": ["https://marigoldmtl.com/", "https://marigoldmtl.com"], "names": ["Marigold - CMAQ", "Marigold"], "sources": ["lesproduitsduquebec_ent", "search_sweep_urban"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/marigold-cmaq", "Marigold vêtements fabriqués Montréal boutique en ligne site officiel"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H4G", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
2438 +{"domain": "marigoldmtl.com", "urls": ["https://marigoldmtl.com/", "https://marigoldmtl.com/en", "https://marigoldmtl.com"], "names": ["Marigold - CMAQ", "Marigold clothing / Les vêtements Marigold", "Marigold"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq", "search_sweep_urban"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/marigold-cmaq", "Marigold clothing Marilyne Baril couturier québec", "Marigold vêtements fabriqués Montréal boutique en ligne site officiel"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H4G", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Montréal, QC"]}
2365 2439 {"domain": "mariloudesign.com", "urls": ["https://mariloudesign.com", "https://mariloudesign.com/"], "names": ["Marilou Design"], "sources": ["search_sweep_manuf", "search_sweep_nonfood"], "source_pages": ["vêtements de travail fabricant québécois boutique en ligne", "vêtements conçus fabriqués au Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec City, QC", "Capitale-Nationale (Quebec City)"]}
2366 2440 {"domain": "markshotsauce.com", "urls": ["https://markshotsauce.com"], "names": ["Mark's Hot Sauce"], "sources": ["search_sweep_urban"], "source_pages": ["hot sauce Montréal made in Montreal shop online"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2367 2441 {"domain": "martindessert.com", "urls": ["https://martindessert.com/"], "names": ["Martin Dessert"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/martin-dessert"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G2J", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
@@ -2374,8 +2448,11 @@
2374 2448 {"domain": "matelasbonheur.ca", "urls": ["https://matelasbonheur.ca", "https://www.matelasbonheur.ca/"], "names": ["Matelas Bonheur Inc."], "sources": ["lesproduitsduquebec_det"], "source_pages": ["https://lesproduitsduquebec.com/detaillants/matelas-bonheur-inc"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H9R", "phone": "514 847-9799", "regions_mentioned": []}
2375 2449 {"domain": "matelibre.com", "urls": ["https://matelibre.com/"], "names": ["Mate Libre"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/mate-libre"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/matelibre/", "https://www.instagram.com/matelibre", "https://www.linkedin.com/company/matelibre/"], "postal_prefix": "H2T", "phone": null, "regions_mentioned": ["Montréal"]}
2376 2450 {"domain": "materiauxsml.com", "urls": ["https://www.materiauxsml.com/produits/clotures-en-composite"], "names": ["Matériaux SML"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois clôtures boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2451 +{"domain": "mathieublanchard.ca", "urls": ["https://mathieublanchard.ca"], "names": ["Mathieu Blanchard Joaillerie"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijouterie Granby boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Granby"]}
2377 2452 {"domain": "mathpiquant.com", "urls": ["http://www.mathpiquant.com"], "names": ["Math Piquant!"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/math-piquant"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/mathpiquant/", "https://www.instagram.com/math.piquant2/", "https://www.tiktok.com/@math.piquant"], "postal_prefix": "J7N", "phone": null, "regions_mentioned": ["Laurentides"]}
2378 2453 {"domain": "mathsport.ca", "urls": ["https://mathsport.ca/products/shoe-builder", "https://mathsport.ca/"], "names": ["Chaussure Gen3 standard - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/chaussures/chaussure-gen3-standard/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
2454 +{"domain": "matpel.ca", "urls": ["https://matpel.ca/a-propos-de-matpel-ebenisterie"], "names": ["Matpel ébénisterie ecologique"], "sources": ["search_sweep_cmaq"], "source_pages": ["Matpel ébénisterie ecologique Mathieu Pellerin québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
2455 +{"domain": "matsheshucreations.com", "urls": ["https://matsheshucreations.com/collections/bijoux-artisanaux-autochtones"], "names": ["Matshesku Creations"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux autochtones perlage Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2379 2456 {"domain": "maturin.ca", "urls": ["https://www.maturin.ca/producteur/fromagerie-missiska/271", "https://www.maturin.ca/producteur/ferme-piscicole-des-bobines/683", "https://www.maturin.ca/producteur/jolies-mi-noix/244?fbclid=IwAR1jhZbQkAJRpJYZbcExMPfESURJfMSSbNyu9yHqg7K_feHsZ0YD7oNikJI", "https://www.maturin.ca/producteur/ribozome/983", "https://www.maturin.ca/recherche/a/Ferme%2520junique"], "names": ["Créateurs", "Jolies Mi-Noix", "Ribozome", "Ferme Junique"], "sources": ["createursdesaveurs", "laurentidesjenmange", "zoneboreale"], "source_pages": ["https://createursdesaveurs.com/createurs/fromagerie-missiska/", "https://createursdesaveurs.com/createurs/ferme-piscicole-des-bobines-inc/", "https://laurentidesjenmange.ca/membre/jolies-mi-noix", "https://zoneboreale.com/entreprises/ribozome-canada/", "https://zoneboreale.com/entreprises/ferme-jasmin-theberge/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/fromage.missiska/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-missiska%2F&t=Fromagerie%20Missiska", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-missiska%2F&text=Fromagerie%20Missiska", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-missiska%2F&title=Fromagerie%20Missiska&summary=", "https://www.facebook.com/profile.php?id=61554184478720", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-piscicole-des-bobines-inc%2F&t=Ferme%20piscicole%20les%20Bobines%20inc", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-piscicole-des-bobines-inc%2F&text=Ferme%20piscicole%20les%20Bobines%20inc", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-piscicole-des-bobines-inc%2F&title=Ferme%20piscicole%20les%20Bobines%20inc&summary=", "https://www.facebook.com/laurentidesjm/", "https://www.instagram.com/laurentidesjenmange/", "https://www.facebook.com/JoliesMiNoixHL", "https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.instagram.com/ribozome_officiel/", "https://www.facebook.com/ribozomecanada", "https://www.facebook.com/profile.php?id=100076857422252"], "postal_prefix": "J0J", "phone": "(579) 433-8585", "regions_mentioned": ["Cantons-de-l'Est", "Laval", "Montérégie", "Laurentides", "Lac-Saint-Jean", "Saguenay"]}
2380 2457 {"domain": "mavericktannery.ca", "urls": ["https://www.mavericktannery.ca/", "https://www.mavericktannery.ca/collection"], "names": ["ÉCONOMUSÉE® du tanneur"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-tanneur-sk/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/people/Maverick-Tannery-Unity/100063538121942/?_rdc=1&_rdr#", "https://www.instagram.com/mavericktannery/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
2381 2458 {"domain": "mcadam.mcauslan.com", "urls": ["https://mcadam.mcauslan.com/"], "names": ["Brasserie McAdam – Les producteurs de cidre du Québec"], "sources": ["cidreduquebec"], "source_pages": ["https://cidreduquebec.com/cidreries/brasserie-mcauslan/"], "socials": ["https://www.facebook.com/cidreduquebec", "https://www.instagram.com/cidreduquebec", "https://www.facebook.com/cidremcadam", "https://www.instagram.com/cidremcadam/", "https://www.facebook.com/groups/jaimelecidreduquebec"], "postal_prefix": "H4C", "phone": "514-939-3060", "regions_mentioned": ["Montréal"]}
@@ -2384,23 +2461,27 @@
2384 2461 {"domain": "mechouidesappalaches.ca", "urls": ["https://www.mechouidesappalaches.ca"], "names": ["Méchoui des Appalaches Inc"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/mechoui-des-appalaches-inc"], "socials": ["https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 248-5555", "regions_mentioned": []}
2385 2462 {"domain": "media-nova.ca", "urls": ["https://media-nova.ca/2019/01/cadeaux/?fbclid=IwAR1n5tNYrOV3xdlPje68WCERMgyMWgSE3-eeHDDzieJzCxbL4EoqKtRblRI", "https://media-nova.ca/2019/01/cadeaux/"], "names": ["Cadeau - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/cadeau/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
2386 2463 {"domain": "medicom.com", "urls": ["https://medicom.com/fr/", "http://medicom.com/fr/"], "names": ["AMD Medicom inc"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/amd-medicom-inc"], "socials": ["https://www.youtube.com/watch?v=GQhkNv0_9SU", "https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H9P", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
2464 +{"domain": "melanielaplante.com", "urls": ["https://www.melanielaplante.com"], "names": ["MÉLA"], "sources": ["search_sweep_cmaq"], "source_pages": ["MÉLA Mélanie Laplante artiste verrier bijoutier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2387 2465 {"domain": "melissacharette.com", "urls": ["https://www.melissacharette.com/misskikooz"], "names": ["Misskikooz"], "sources": ["search_sweep_cmaq"], "source_pages": ["Misskikooz Mélissa Charette-Laganière couturier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2388 2466 {"domain": "mellonbrasserie.ca", "urls": ["https://mellonbrasserie.ca/"], "names": ["Mellön Microbrasserie"], "sources": ["ambq_profils"], "source_pages": ["https://ambq.ca/fr/microbrasserie/mell-n-microbrasserie"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/mellonbrasserie", "https://www.instagram.com/mellonbrasserie/"], "postal_prefix": "H2S", "phone": "514 217-2355", "regions_mentioned": ["Montréal"]}
2389 2467 {"domain": "mellonia.ca", "urls": ["https://www.mellonia.ca", "https://www.mellonia.ca/shop"], "names": ["Mellonia"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/mellonia/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/ApicultureMellonia", "https://www.instagram.com/apiculture_mellonia/"], "postal_prefix": "G8B", "phone": "418 719-5767", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2390 2468 {"domain": "mementocycles.com", "urls": ["https://mementocycles.com"], "names": ["Memento Cycles"], "sources": ["search_sweep_urban"], "source_pages": ["sacoches vélo Montréal fabriqué localement boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2391 2469 {"domain": "memphremagogvraiment.com", "urls": ["https://www.memphremagogvraiment.com/activites/marche-agricole-de-georgeville"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/marche-agricole-de-georgeville/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/profile.php?id=61577677468333", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-agricole-de-georgeville%2F&t=March%C3%A9%20agricole%20de%20Georgeville", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-agricole-de-georgeville%2F&text=March%C3%A9%20agricole%20de%20Georgeville", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-agricole-de-georgeville%2F&title=March%C3%A9%20agricole%20de%20Georgeville&summary="], "postal_prefix": "J0B", "phone": "819 346-8905", "regions_mentioned": ["Cantons-de-l'Est"]}
2392 2470 {"domain": "menaud.ca", "urls": ["https://menaud.ca/"], "names": ["Menaud"], "sources": ["charlevoix", "distilleriesduquebec"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/menaud", "https://distilleriesduquebec.com/fr/le-repertoire-des-distilleries/menaud-2"], "socials": ["https://www.instagram.com/menaud.chx/", "https://www.facebook.com/Menaud.chx/", "https://www.linkedin.com/company/menaud/?originalSubdomain=ca", "https://www.youtube.com/@menaud4197", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://www.facebook.com/Menaud.chx", "https://www.facebook.com/distilleriedequebec/", "https://www.instagram.com/distilleriedequebec/", "https://www.linkedin.com/company/union-québécoise-des-microdistilleries/?originalSubdomain=ca", "https://www.youtube.com/@distilleriesqc"], "postal_prefix": "G4A", "phone": null, "regions_mentioned": ["Saguenay", "Capitale-Nationale"]}
2471 +{"domain": "menuiserie-authentique.com", "urls": ["https://www.menuiserie-authentique.com/a-propos"], "names": ["Menuiserie Authentique"], "sources": ["search_sweep_cmaq"], "source_pages": ["Menuiserie Authentique Eloi Gagnon menuisier d'art québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Jean-Port-Joli, QC"]}
2393 2472 {"domain": "menuverger.com", "urls": ["https://menuverger.com/"], "names": ["Menu Verger"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/menu-verger/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/menuverger", "https://www.instagram.com/menuverger/reels/"], "postal_prefix": "G7H", "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2394 2473 {"domain": "mercilaterrebio.com", "urls": ["https://www.mercilaterrebio.com"], "names": ["Merci La Terre"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/merci-la-terre/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/mercilaterrebio", "https://www.instagram.com/merci_la_terre/?fbclid=IwAR0VL2flkWg3KPdbJZPiuVeXUknJmfarbF7vGRXuB1lL2GIdtVu7-qkeh-Y"], "postal_prefix": "G8G", "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2395 2474 {"domain": "meredithjoaillerie.com", "urls": ["https://meredithjoaillerie.com/"], "names": ["Meredith Joaillerie"], "sources": ["search_sweep_vendors"], "source_pages": ["direct domain guess meredithjoaillerie.com, verified via WebFetch"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["QC"]}
2396 2475 {"domain": "meremichele.ca", "urls": ["http://www.meremichele.ca/"], "names": ["Confiserie La Mère Michèle"], "sources": ["goutcotenord"], "source_pages": ["https://legoutdelacotenord.ca/artisan/confiserie-la-mere-michele/"], "socials": ["https://www.facebook.com/legoutdelacotenord", "https://www.instagram.com/legoutdelacotenord/", "https://www.facebook.com/lameremichele/"], "postal_prefix": "G5C", "phone": "418 589-2364", "regions_mentioned": ["Côte-Nord"]}
2397 2476 {"domain": "merlaine.com", "urls": ["https://merlaine.com/"], "names": ["Merlaine"], "sources": ["search_sweep_nonfood"], "source_pages": ["couvertures jetées textile laine fabriqué au Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)"]}
2398 2477 {"domain": "mermax.ca", "urls": ["https://www.mermax.ca/transformation", "https://www.mermax.ca/commande", "http://www.mermax.ca"], "names": ["Viandomax", "Mermax"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/viandomax/", "https://zoneboreale.com/entreprises/mermax/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Mermax-inc-10150091823160604/?fref=ts", "https://www.instagram.com/mermax2025/"], "postal_prefix": "G7K", "phone": "418 543-8777", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2478 +{"domain": "mesbijouxdefamille.ca", "urls": ["https://www.mesbijouxdefamille.ca"], "names": ["Mes bijoux de Famille"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux personnalisés gravure Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2399 2479 {"domain": "metalico.ca", "urls": ["https://metalico.ca"], "names": ["Métalico"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois système ventilation résidentielle boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2400 2480 {"domain": "meteore.ca", "urls": ["https://meteore.ca"], "names": ["Cuisine Fusion Météore"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/cuisine-fusion-meteore/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/cuisinefusionmeteore", "https://www.instagram.com/cuisinefusionmeteore/?fbclid=IwY2xjawKsStZleHRuA2FlbQIxMABicmlkETFxOHZGSHR2ZHc5TGFvSUh3AR4ZNQsbuWjQgavSI7jCRD3LgEpr6epKi49GQw0OEXulj7-_9vuFh8GdklKIlg_aem_EM1t6AXm-3HX6_feRzGIMQ"], "postal_prefix": "G8L", "phone": "418 276-7469", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2401 2481 {"domain": "metrodb.ca", "urls": ["https://www.metrodb.ca/"], "names": ["Metro Plus D. Boutin", "Metro D. Boutin"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/metro-plus-d-boutin/", "https://zoneboreale.com/entreprises/metro-plus-db/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/metrodboutin"], "postal_prefix": "G8L", "phone": "418 276-0361", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2402 2482 {"domain": "meubleshochelaga.com", "urls": ["https://meubleshochelaga.com/"], "names": ["Meubles Hochelaga (Stefi & Seb)"], "sources": ["search_sweep_nonfood"], "source_pages": ["ébénisterie meubles québécois boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2403 2483 {"domain": "meyeur.com", "urls": ["https://www.meyeur.com/?aftag=be582dce319255d5d895ed6a659533fd&utm_medium=afocus"], "names": ["Meyeur"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/meyeur/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
2484 +{"domain": "mia-bijoux.ca", "urls": ["https://www.mia-bijoux.ca"], "names": ["Mia Bijoux"], "sources": ["search_sweep_bijoux"], "source_pages": ["Mia Bijoux Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (ville)"]}
2404 2485 {"domain": "miailleurs.ca", "urls": ["http://www.miailleurs.ca", "http://miailleurs.ca"], "names": ["Marché d'ici et d'ailleurs Inc", "Marché d’Ici et d’Ailleurs"], "sources": ["alimentsduquebec_ent", "zoneboreale"], "source_pages": ["https://alimentsduquebec.com/entreprises/marche-dici-et-dailleurs-inc", "https://zoneboreale.com/entreprises/marche-dici-et-dailleurs/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Marchedicietdailleurs"], "postal_prefix": "G8K", "phone": "438 395-7573", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2405 2486 {"domain": "miboty.com", "urls": ["https://www.miboty.com", "https://miboty.com/"], "names": ["MIBOTY"], "sources": ["lesproduitsduquebec_ent", "search_sweep_vendors"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/miboty", "direct domain guess miboty.com, verified via WebFetch"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H4L", "phone": "514 847-9799", "regions_mentioned": ["QC"]}
2406 2487 {"domain": "michelecourtemanche.ca", "urls": ["https://michelecourtemanche.ca/"], "names": ["Michèle Courtemanche, artiste bijoutière - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/michele-courtemanche-artiste-bijoutiere-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J8Y", "phone": "514 847-9799", "regions_mentioned": ["Outaouais"]}
@@ -2432,6 +2513,7 @@
2432 2513 {"domain": "microstho.com", "urls": ["https://microstho.com", "https://microstho.com/boutique"], "names": ["Microbrasserie Saint-Honoré"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/microbrasserie-saint-honore/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Micro.StHo.Pub.Le.Laser", "https://www.instagram.com/microstho/?hl=fr"], "postal_prefix": "G0V", "phone": "418 905-3187", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2433 2514 {"domain": "microtadoussac.com", "urls": ["https://microtadoussac.com/", "http://www.microtadoussac.com/"], "names": ["Microbrasserie Tadoussac"], "sources": ["ambq_profils", "goutcotenord"], "source_pages": ["https://ambq.ca/fr/microbrasserie/microbrasserie-tadoussac", "https://legoutdelacotenord.ca/artisan/microbrasserie-tadoussac/"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/MicrobrasserieTadoussac", "https://www.instagram.com/microbrasserietadoussac/", "https://www.facebook.com/legoutdelacotenord", "https://www.instagram.com/legoutdelacotenord/", "https://www.facebook.com/MicrobrasserieTadoussac/"], "postal_prefix": "G0T", "phone": "418 980-4900", "regions_mentioned": ["Saguenay", "Côte-Nord"]}
2434 2515 {"domain": "microverdure.ca", "urls": ["http://www.microverdure.ca"], "names": ["Micro Verdure Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/micro-verdure-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0E", "phone": null, "regions_mentioned": ["Montérégie"]}
2516 +{"domain": "midi34.ca", "urls": ["https://midi34.ca"], "names": ["Midi34"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux minimalistes Montréal créateur boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2435 2517 {"domain": "midigo.ca", "urls": ["https://midigo.ca"], "names": ["MidiGo Presto Victo - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/midigo-presto/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/share/19mxwKMKb8/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/midigo-presto/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=MidiGo Presto Victo&url=https://goutezy.com/entreprise/midigo-presto/"], "postal_prefix": "G6P", "phone": "(819) 260-4888", "regions_mentioned": ["Centre-du-Québec"]}
2436 2518 {"domain": "mieetcie.com", "urls": ["https://mieetcie.com/fr-ca"], "names": ["Maison Longueuil Boulangerie"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/maison-longueuil-boulangerie"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J4V", "phone": null, "regions_mentioned": ["Montérégie"]}
2437 2519 {"domain": "mielabitemis.com", "urls": ["http://www.mielabitemis.com", "https://www.mielabitemis.com"], "names": ["Miel Abitemis", "Miel Abitémis"], "sources": ["alimentsduquebec_ent", "search_sweep_regions"], "source_pages": ["https://alimentsduquebec.com/entreprises/miel-abitemis", "miel bleuet boréal Abitibi-Témiscamingue boutique en ligne producteur"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0Z", "phone": null, "regions_mentioned": ["Abitibi", "Témiscamingue", "Abitibi-Témiscamingue"]}
@@ -2459,7 +2541,9 @@
2459 2541 {"domain": "mimiandaugust.com", "urls": ["https://mimiandaugust.com/collections/candles"], "names": ["Mimi and August"], "sources": ["search_sweep_nonfood"], "source_pages": ["chandelles soya québécoises boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2460 2542 {"domain": "minigrange.ca", "urls": ["https://www.minigrange.ca"], "names": ["MiniGrange"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois cabanons remises jardin boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2461 2543 {"domain": "minitipi.ca", "urls": ["https://www.minitipi.ca/fr/"], "names": ["MINI TIPI"], "sources": ["search_sweep_vendors"], "source_pages": ["\"MINI TIPI\" châle écoresponsable Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["QC"]}
2544 +{"domain": "minuitmetal.com", "urls": ["https://www.minuitmetal.com"], "names": ["Minuit Metal"], "sources": ["search_sweep_cmaq"], "source_pages": ["Minuit Metal Julie Williston joaillier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
2462 2545 {"domain": "mirabuches.com", "urls": ["https://www.mirabuches.com/", "https://www.mirabuches.com"], "names": ["Mirabûches"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/mirabuches"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7N", "phone": "514 847-9799", "regions_mentioned": []}
2546 +{"domain": "mirakydesign.com", "urls": ["https://www.mirakydesign.com"], "names": ["Miraky Design"], "sources": ["search_sweep_cmaq"], "source_pages": ["Miraky Design Marie-Josée Francoeur ébéniste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Estrie, QC"]}
2463 2547 {"domain": "mishkafab.ca", "urls": ["https://mishkafab.ca/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/mishka-tisanes-fruitees/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/mishka.tisanes/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmishka-tisanes-fruitees%2F&t=Mishka%20Fruits%20%C3%A0%20boire", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmishka-tisanes-fruitees%2F&text=Mishka%20Fruits%20%C3%A0%20boire", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmishka-tisanes-fruitees%2F&title=Mishka%20Fruits%20%C3%A0%20boire&summary="], "postal_prefix": "J1N", "phone": "(819) 349-0903", "regions_mentioned": ["Cantons-de-l'Est"]}
2464 2548 {"domain": "mishkatisanes.com", "urls": ["https://mishkatisanes.com/vente/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/mishka-tisanes-fruitees/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/mishka.tisanes/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmishka-tisanes-fruitees%2F&t=Mishka%20Fruits%20%C3%A0%20boire", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmishka-tisanes-fruitees%2F&text=Mishka%20Fruits%20%C3%A0%20boire", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmishka-tisanes-fruitees%2F&title=Mishka%20Fruits%20%C3%A0%20boire&summary="], "postal_prefix": "J1N", "phone": "(819) 349-0903", "regions_mentioned": ["Cantons-de-l'Est"]}
2465 2549 {"domain": "missiska.com", "urls": ["https://missiska.com/", "https://www.missiska.com/fr/points-de-vente", "https://missiska.com/fr/"], "names": ["Créateurs", "Fromagerie Missiska"], "sources": ["createursdesaveurs", "fromagesdici"], "source_pages": ["https://createursdesaveurs.com/createurs/fromagerie-missiska/", "https://www.fromagesdici.com/fr/fromageries/fromagerie-missiska"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/fromage.missiska/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-missiska%2F&t=Fromagerie%20Missiska", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-missiska%2F&text=Fromagerie%20Missiska", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-missiska%2F&title=Fromagerie%20Missiska&summary=", "https://www.facebook.com/fromagesdici", "https://www.youtube.com/channel/UCxSGDuWDPFOvNy7xP_LylcA", "https://www.instagram.com/fromages.dici/", "https://www.pinterest.ca/fromagesdici/"], "postal_prefix": "J0J", "phone": "(579) 433-8585", "regions_mentioned": ["Cantons-de-l'Est", "Laval", "Montérégie", "Abitibi", "Bas-Saint-Laurent", "Centre-du-Québec", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Mauricie", "Montréal", "Outaouais", "Saguenay", "Témiscamingue", "Îles-de-la-Madeleine"]}
@@ -2563,7 +2647,7 @@
2563 2647 {"domain": "mushup.ca", "urls": ["https://mushup.ca/?aftag=20bf7c9797da171bd2d9aff86c50dc79&utm_medium=afocus"], "names": ["Mushup"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/mushup/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
2564 2648 {"domain": "mxo.agency", "urls": ["http://mxo.agency"], "names": ["Expérience bières", "Chez Robin", "Chope-sur-mer | Carleton-Sur-Mer (Gaspésie)", "Côté Est Kamouraska | Kamouraska", "Dépanneur A.S.", "Épicerie Basta", "Épiceries les récoltes", "Espace Houblon | Blainville", "Espace Houblon | Laval", "Espace Houblon | Mascouche", "Espace Houblon | Saint-Eustache", "Ferme Guyon | Chambly", "Gourmande Boutique | Sherbrooke", "L’Ardoise épicerie boutique | Rimouski", "L’Épicerie Européenne | Québec", "La Barik | Trois-Rivières", "La Bière à boire | St-Constant", "La Boite à Vins | Longueuil", "La Glacière de l’est", "La Grande à Houblon | Sorel-Tracy", "La Maison des Bières (et vin!)", "Laiterie Charlevoix | Lévis", "Le Butterblume", "Le Fridge | Lévis", "Le marché de Yann et cie | Val David (Laurentides)", "Le Peluso", "Maché du Village | Ange-Gardien", "Le Vinologue", "Marché Centre-Ville | Chicoutimi", "Marché du Boisé | Trois-Rivières", "ÔBreton", "Pascal Le Boucher", "Pasquier | St-Jean", "Tite Frette | Candiac", "Tite Frette | Cowansville", "Tite Frette | Farnham", "Tite Frette | Granby", "Tite Frette | Limoilou", "Tite Frette | Tremblant", "Tite Frette | Varennes", "Veux-tu une bière?", "Vin Mon Lapin | Montréal", "Vinvinvin | Montréal", "William J. Walter | Sherbrooke", "William J. Walter | St-Bruno", "William J. Walter | St-Roch", "William J. Walter, Boire Grand", "Yannick Fromagerie | Québec", "Yannick Fromagerie | St-Jérome", "Le Baril à Volonté", "Les Gourmandes", "William J. Walter | Longueuil", "Les Petites Bonnevilles | St-Jean", "Marché Station 54", "Charcuterie de la Gare | Chicoutimi", "Pâtisserie Dorville | Eastmam", "La Place Boutique Gourmande | Québec", "Épicerie J.A. Moisan | Québec", "Marché de la Gare Saint-Adèle | Sainte-Adèle", "Au Vent du Nord | Rockforest", "Au Vent du Nord | Sherbrooke", "La Maison des Vins et Boissons Artisanales du Québec", "Marché des Saveurs", "La Supérette du Dinner | Québec", "Comptoir Boréal Chez Boulay | Québec", "Alimentation L’Impact | Québec", "Comptoir Ste-Cécile", "Decapsuleur", "Les Douceurs du marché", "Maltéhops", "Quartier Gourmand", "Chez Wilfrid", "Accomodation Chalou", "Restaurant Alentours", "L A Daigneault & Fils Ltee", "Marché Plouffe Bromont Inc.", "IGA extra Famille Patry Bromont", "Marché Vincent Inc.", "IGA Les Marchés Lambert Chambly", "IGA extra Famille Duchemin (Ville Saint-Laurent)", "IGA Extra Les Marchés Lambert St-Basile-le-Grand", "Marché d’alimentation Domaine inc.", "IGA Extra Les Marchés Pepin inc.", "Supermarché St-Hilaire", "SOIF BAR A VIN", "Toutes les choses parfaites"], "sources": ["vinsduquebec"], "source_pages": ["https://vinsduquebec.com/adresses/experience-bieres/", "https://vinsduquebec.com/adresses/chez-robin/", "https://vinsduquebec.com/adresses/chope-sur-mer-carleton-sur-mer-gaspesie/", "https://vinsduquebec.com/adresses/cote-est-kamouraska-kamouraska/", "https://vinsduquebec.com/adresses/depanneur-a-s/", "https://vinsduquebec.com/adresses/epicerie-basta/", "https://vinsduquebec.com/adresses/epiceries-les-recoltes/", "https://vinsduquebec.com/adresses/espace-houblon-blainville/", "https://vinsduquebec.com/adresses/espace-houblon-laval/", "https://vinsduquebec.com/adresses/espace-houblon-mascouche/", "https://vinsduquebec.com/adresses/espace-houblon-saint-eustache/", "https://vinsduquebec.com/adresses/ferme-guyon-chambly/", "https://vinsduquebec.com/adresses/gourmande-boutique-sherbrooke/", "https://vinsduquebec.com/adresses/lardoise-epicerie-boutique-rimouski/", "https://vinsduquebec.com/adresses/lepicerie-europeenne-quebec/", "https://vinsduquebec.com/adresses/la-barik-trois-rivieres/", "https://vinsduquebec.com/adresses/la-biere-a-boire-st-constant/", "https://vinsduquebec.com/adresses/la-boite-a-vins-longueuil/", "https://vinsduquebec.com/adresses/la-glaciere-de-lest/", "https://vinsduquebec.com/adresses/la-grande-a-houblon-sorel-tracy/", "https://vinsduquebec.com/adresses/la-maison-des-bieres-et-vin/", "https://vinsduquebec.com/adresses/laiterie-charlevoix-levis/", "https://vinsduquebec.com/adresses/le-butterblume/", "https://vinsduquebec.com/adresses/le-fridge-levis/", "https://vinsduquebec.com/adresses/le-marche-de-yann-et-cie-val-david-laurentides/", "https://vinsduquebec.com/adresses/le-peluso/", "https://vinsduquebec.com/adresses/mache-du-village-ange-gardien/", "https://vinsduquebec.com/adresses/le-vinologue/", "https://vinsduquebec.com/adresses/marche-centre-ville-chicoutimi/", "https://vinsduquebec.com/adresses/marche-du-boise-trois-rivieres/", "https://vinsduquebec.com/adresses/obreton/", "https://vinsduquebec.com/adresses/pascal-le-boucher/", "https://vinsduquebec.com/adresses/pasquier-st-jean/", "https://vinsduquebec.com/adresses/tite-frette-candiac/", "https://vinsduquebec.com/adresses/tite-frette-cowansville/", "https://vinsduquebec.com/adresses/tite-frette-farnham/", "https://vinsduquebec.com/adresses/tite-frette-granby/", "https://vinsduquebec.com/adresses/tite-frette-limoilou/", "https://vinsduquebec.com/adresses/tite-frette-tremblant/", "https://vinsduquebec.com/adresses/tite-frette-varennes/", "https://vinsduquebec.com/adresses/veux-tu-une-biere/", "https://vinsduquebec.com/adresses/veux-tu-une-biere-2/", "https://vinsduquebec.com/adresses/veux-tu-une-biere-3/", "https://vinsduquebec.com/adresses/vin-mon-lapin-montreal/", "https://vinsduquebec.com/adresses/vinvinvin-montreal/", "https://vinsduquebec.com/adresses/william-j-walter-sherbrooke/", "https://vinsduquebec.com/adresses/william-j-walter-st-bruno/", "https://vinsduquebec.com/adresses/william-j-walter-st-roch/", "https://vinsduquebec.com/adresses/william-j-walter-boire-grand/", "https://vinsduquebec.com/adresses/yannick-fromagerie-quebec/", "https://vinsduquebec.com/adresses/yannick-fromagerie-st-jerome/", "https://vinsduquebec.com/adresses/https-www-lebarilavolonte-com/", "https://vinsduquebec.com/adresses/https-www-facebook-com-bistrolesgourmandes/", "https://vinsduquebec.com/adresses/https-boiteavins-com-blogs-vin-du-quebec-le-william-j-walter-du-vieux-longueuil-pas-juste-un-comptoir-a-saucisses/", "https://vinsduquebec.com/adresses/les-petites-bonnevilles-st-jean/", "https://vinsduquebec.com/adresses/marche-station-54/", "https://vinsduquebec.com/adresses/charcuterie-de-la-gare-chicoutimi/", "https://vinsduquebec.com/adresses/https-www-patisseriedorville-ca/", "https://vinsduquebec.com/adresses/la-place-boutique-gourmande-quebec/", "https://vinsduquebec.com/adresses/https-jamoisan-com/", "https://vinsduquebec.com/adresses/marche-de-la-gare-saint-adele-sainte-adele/", "https://vinsduquebec.com/adresses/au-vent-du-nord-rockforest/", "https://vinsduquebec.com/adresses/au-vent-du-nord-sherbrooke/", "https://vinsduquebec.com/adresses/la-maison-des-vins-et-boissons-artisanales-du-quebec/", "https://vinsduquebec.com/adresses/marche-des-saveurs/", "https://vinsduquebec.com/adresses/la-superette-du-dinner-quebec/", "https://vinsduquebec.com/adresses/comptoir-boreal-chez-boulay-quebec/", "https://vinsduquebec.com/adresses/alimentation-limpact-quebec/", "https://vinsduquebec.com/adresses/comptoir-ste-cecile/", "https://vinsduquebec.com/adresses/decapsuleur/", "https://vinsduquebec.com/adresses/les-douceurs-du-marche/", "https://vinsduquebec.com/adresses/maltehops/", "https://vinsduquebec.com/adresses/quartier-gourmand/", "https://vinsduquebec.com/adresses/chez-wilfrid/", "https://vinsduquebec.com/adresses/accomodation-chalou/", "https://vinsduquebec.com/adresses/restaurant-alentours/", "https://vinsduquebec.com/adresses/l-a-daigneault-fils-ltee/", "https://vinsduquebec.com/adresses/marche-plouffe-bromont-inc/", "https://vinsduquebec.com/adresses/iga-extra-famille-patry-bromont/", "https://vinsduquebec.com/adresses/marche-vincent-inc/", "https://vinsduquebec.com/adresses/iga-les-marches-lambert-chambly/", "https://vinsduquebec.com/adresses/iga-extra-famille-duchemin-ville-saint-laurent/", "https://vinsduquebec.com/adresses/iga-extra-les-marches-lambert-st-basile-le-grand/", "https://vinsduquebec.com/adresses/marche-dalimentation-domaine-inc/", "https://vinsduquebec.com/adresses/iga-extra-les-marches-pepin-inc/", "https://vinsduquebec.com/adresses/supermarche-st-hilaire/", "https://vinsduquebec.com/adresses/soif-bar-a-vin/", "https://vinsduquebec.com/adresses/toutes-les-choses-parfaites/"], "socials": ["https://www.facebook.com/vinsduquebec/", "https://www.instagram.com/vinsduquebec/", "https://www.youtube.com/channel/UCk8M0KDesbJlKV44cjvVzKw"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Gaspésie", "Laval", "Laurentides", "Montréal"]}
2565 2649 {"domain": "mycoboutique.com", "urls": ["https://mycoboutique.com/fr"], "names": ["Mycoboutique"], "sources": ["search_sweep_urban"], "source_pages": ["Mycoboutique champignons Montréal Plateau site officiel boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2566 −{"domain": "myeldesign.com", "urls": ["https://myeldesign.com/fr"], "names": ["MYEL Design", "MYEL"], "sources": ["search_sweep_nonfood", "search_sweep_urban"], "source_pages": ["bijoux accessoires Montérégie fait main boutique en ligne", "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2650 +{"domain": "myeldesign.com", "urls": ["https://myeldesign.com/fr"], "names": ["MYEL Design", "MYEL"], "sources": ["search_sweep_bijoux", "search_sweep_nonfood", "search_sweep_urban"], "source_pages": ["créateur bijoux Montréal boutique en ligne", "bijoux accessoires Montérégie fait main boutique en ligne", "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2567 2651 {"domain": "mygreenbag.ca", "urls": ["http://www.mygreenbag.ca/toutunsac/accueil.asp"], "names": ["Tout un Sac | My Green Bag"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/tout-un-sac-my-green-bag"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J3V", "phone": "514 847-9799", "regions_mentioned": []}
2568 2652 {"domain": "mylna.no", "urls": ["https://www.mylna.no/"], "names": ["ÉCONOMUSÉE® de la meunerie"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-la-meunerie-2/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
2569 2653 {"domain": "myni.ca", "urls": ["https://myni.ca/fr"], "names": ["Myni"], "sources": ["search_sweep_vendors"], "source_pages": ["\"Myni\" shampoing enfant Québec boutique (via ddg)"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["QC"]}
@@ -2576,6 +2660,7 @@
2576 2660 {"domain": "nasdrow.com", "urls": ["https://www.nasdrow.com/"], "names": ["Nasdrow"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/nasdrow"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/p/Nasdrow-61561880004936/", "https://www.instagram.com/nasdrow.mocktails/", "https://www.linkedin.com/company/nasdrow/"], "postal_prefix": null, "phone": null, "regions_mentioned": []}
2577 2661 {"domain": "nasuco.com", "urls": ["https://www.nasuco.com/"], "names": ["Norbleu"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/nasuco-canada-inc/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/lesfudgeslaurasecord.ca/", "https://www.instagram.com/les_fudges_laura_secord/"], "postal_prefix": null, "phone": "581 476-0193", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2578 2662 {"domain": "natartjuvenile.com", "urls": ["https://natartjuvenile.com/fr/accueil"], "names": ["Natart Juvénile"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois meubles pour bébé boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec/Canada"]}
2663 +{"domain": "nathaliesamson.com", "urls": ["https://nathaliesamson.com/ceramics-nat-samson"], "names": ["Samson Design"], "sources": ["search_sweep_cmaq"], "source_pages": ["Samson Design Nathalie Samson céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2579 2664 {"domain": "natuku.com", "urls": ["https://natuku.com/", "https://www.natuku.com", "https://natuku.com"], "names": ["Natuku", "Natuku (Manicouagan Sea Minerals / AEM Lab)"], "sources": ["lesproduitsduquebec_ent", "search_sweep_regions"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/natuku", "Natuku Minerals Manicouagan Sea Minerals Pointe-aux-Outardes boutique en ligne"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G0H", "phone": "514 847-9799", "regions_mentioned": ["Côte-Nord"]}
2580 2665 {"domain": "natura.ca", "urls": ["http://natura.ca"], "names": ["Aliments Natura"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/aliments-natura"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": null, "phone": null, "regions_mentioned": []}
2581 2666 {"domain": "nature-artisan.com", "urls": ["https://nature-artisan.com"], "names": ["Nature Artisan"], "sources": ["search_sweep_urban"], "source_pages": ["Verdun Montréal boutique en ligne artisan fabriqué local"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
@@ -2586,17 +2671,22 @@
2586 2671 {"domain": "naya.com", "urls": ["http://www.naya.com"], "names": ["Eaux Naya Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/eaux-naya-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/EauxNaya", "https://www.instagram.com/eauxnaya/", "https://www.linkedin.com/company/789999/admin/dashboard/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Laurentides"]}
2587 2672 {"domain": "neka.ca", "urls": ["https://neka.ca/?aftag=93b0fd21942ba888e5c42ca4a2a283c1&utm_medium=afocus"], "names": ["Neka"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/neka/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
2588 2673 {"domain": "nektar.ca", "urls": ["https://www.nektar.ca", "https://nektar.ca"], "names": ["NEKTAR TORRÉFACTEUR", "Nektar Torréfacteur"], "sources": ["alimentsduquebec_ent", "search_sweep_urban"], "source_pages": ["https://alimentsduquebec.com/entreprises/nektar-torrefacteur", "torréfacteur café Québec Limoilou Saint-Roch boutique en ligne"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G7A", "phone": null, "regions_mentioned": ["Chaudière-Appalaches", "Capitale-Nationale"]}
2674 +{"domain": "nemracstyle.com", "urls": ["https://www.nemracstyle.com/pages/about-us"], "names": ["Nemrac Style Inc."], "sources": ["search_sweep_cmaq"], "source_pages": ["Nemrac Style Carmen Popescu couturier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Lambert, QC"]}
2589 2675 {"domain": "neochips.ca", "urls": ["https://neochips.ca"], "names": ["Néo Chips"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/neo-chips"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J2S", "phone": null, "regions_mentioned": ["Montérégie"]}
2590 2676 {"domain": "neodrinks.ca", "urls": ["https://www.neodrinks.ca"], "names": ["Breuvages NEO inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/breuvages-neo-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J5R", "phone": null, "regions_mentioned": ["Montérégie"]}
2677 +{"domain": "neufvingtcinq.com", "urls": ["https://neufvingtcinq.com"], "names": ["NEUF.VINGT.CINQ"], "sources": ["search_sweep_bijoux"], "source_pages": ["joaillerie québécoise boutique en ligne créateur"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Boisbriand, Laurentides"]}
2591 2678 {"domain": "newswire.ca", "urls": ["https://www.newswire.ca/fr/news-releases/premiere-edition-de-la-journee-des-distilleries-du-quebec-867447713.html", "https://www.newswire.ca/fr/news-releases/isabelle-rochette-se-voit-decerner-le-prix-distinction-de-l-union-quebecoise-des-microdistilleries-850141739.html#:~:text=BROMONT%2C%20QC%2C%20le%2020%20avril,développement%20et%20au%20rayonnement%20de", "https://www.newswire.ca/fr/news-releases/zones-saq-les-distilleries-du-quebec-vivement-preoccupees-865099299.html", "https://www.newswire.ca/fr/news-releases/vente-des-prets-a-boire-a-base-de-spiritueux-en-epiceries-un-grand-pas-dans-la-bonne-direction-849737098.html", "https://www.newswire.ca/fr/news-releases/une-saison-estivale-2025-positive-pour-les-distilleries-quebecoises-818849823.html?utm_source=chatgpt.com", "https://www.newswire.ca/fr/news-releases/microdistilleries-quebecoises-toujours-aucune-reforme-et-un-siecle-de-retard-a-combler-888818676.html", "https://www.newswire.ca/fr/news-releases/l-uqmd-salue-l-annonce-du-gouvernement-visant-a-permettre-la-vente-directe-de-spiritueux-quebecois-aux-consommateurs-805499566.html", "https://www.newswire.ca/fr/news-releases/encourageons-nos-spiritueux-quebecois-un-gage-de-fierte-d-innovation-et-de-dynamisme-813660670.html"], "names": ["Les Distilleries du Québec dans l’actualité"], "sources": ["distilleriesduquebec"], "source_pages": ["https://distilleriesduquebec.com/fr/revue-de-presse"], "socials": ["https://www.facebook.com/distilleriedequebec/", "https://www.instagram.com/distilleriedequebec/", "https://www.linkedin.com/company/union-québécoise-des-microdistilleries/?originalSubdomain=ca", "https://www.youtube.com/@distilleriesqc"], "postal_prefix": null, "phone": null, "regions_mentioned": []}
2592 2679 {"domain": "nextchance.ca", "urls": ["https://www.nextchance.ca/policies/shipping-policy?aftag=6a531f0da5822e55ecec0bfed14b7d7e&utm_medium=afocus", "https://www.nextchance.ca/"], "names": ["Next Chance"], "sources": ["icq_resolved", "search_sweep_vendors"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/nextchance/", "\"Next Chance\" tote bag jean Québec boutique"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["QC"]}
2593 2680 {"domain": "ni-corporation.com", "urls": ["https://ni-corporation.com"], "names": ["Ni Corporation"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/ni-corporation"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H7L", "phone": "514 847-9799", "regions_mentioned": ["Laval"]}
2681 +{"domain": "niconico.ca", "urls": ["https://www.niconico.ca/atelier"], "names": ["Niconico"], "sources": ["search_sweep_cmaq"], "source_pages": ["Niconico Nicolas LeBlanc tourneur sur bois jouettier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Bromont, QC"]}
2682 +{"domain": "ninajanvier.com", "urls": ["https://www.ninajanvier.com/fr"], "names": ["NINA JANVIER INC."], "sources": ["search_sweep_cmaq"], "source_pages": ["NINA JANVIER bijoutier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
2594 2683 {"domain": "nival.ca", "urls": ["https://www.nival.ca/"], "names": ["Domaine du Nival – Les producteurs de cidre du Québec"], "sources": ["cidreduquebec"], "source_pages": ["https://cidreduquebec.com/cidreries/domaine-du-nival/"], "socials": ["https://www.facebook.com/cidreduquebec", "https://www.instagram.com/cidreduquebec", "https://www.facebook.com/Domainedunival/", "https://www.instagram.com/domainedunival/", "https://www.facebook.com/groups/jaimelecidreduquebec"], "postal_prefix": null, "phone": "450-518-4818", "regions_mentioned": ["Montréal", "Montérégie"]}
2595 2684 {"domain": "no900.com", "urls": ["https://no900.com"], "names": ["Groupe No900"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/groupe-no900"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H3L", "phone": null, "regions_mentioned": ["Montréal"]}
2596 2685 {"domain": "nobaanimal.com", "urls": ["https://nobaanimal.com/fr/"], "names": ["Noba Animal Co."], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/noba-animal-co"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J3B", "phone": "514 847-9799", "regions_mentioned": []}
2597 2686 {"domain": "noblebean.com", "urls": ["https://noblebean.com/", "https://www.noblebean.com"], "names": ["Noble bean", "Noble Bean Tempeh"], "sources": ["alimentsduquebec_ent", "search_sweep_urban"], "source_pages": ["https://alimentsduquebec.com/entreprises/noble-bean", "Noble Bean tempeh Montréal site officiel boutique en ligne"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H2T", "phone": null, "regions_mentioned": ["Montréal"]}
2598 2687 {"domain": "noctem.ca", "urls": ["http://www.noctem.ca", "https://www.noctem.ca/"], "names": ["Noctem", "Noctem Artisans Brasseurs"], "sources": ["alimentsduquebec_ent", "ambq_profils"], "source_pages": ["https://alimentsduquebec.com/entreprises/noctem", "https://ambq.ca/fr/microbrasserie/noctem-artisans-brasseurs"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/noctemartisansbrasseurs", "https://www.instagram.com/noctem_artisans_brasseurs", "https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.instagram.com/noctem_artisans_brasseurs/"], "postal_prefix": "G1N", "phone": "418 704-2428", "regions_mentioned": ["Capitale-Nationale"]}
2599 2688 {"domain": "nodo.eco", "urls": ["https://www.nodo.eco"], "names": ["NODO"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/nodo"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J4Y", "phone": "514 847-9799", "regions_mentioned": []}
2689 +{"domain": "noemiah.com", "urls": ["https://noemiah.com"], "names": ["Noémiah Design Inc"], "sources": ["search_sweep_cmaq"], "source_pages": ["Noémiah Design Noémie Vaillancourt couturier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2600 2690 {"domain": "noire-et-blanche.ca", "urls": ["https://noire-et-blanche.ca/"], "names": ["Microbrasserie Noire Et Blanche"], "sources": ["ambq_profils"], "source_pages": ["https://ambq.ca/fr/microbrasserie/microbrasserie-noire-et-blanche"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/nebmicro/", "https://www.instagram.com/micro_noire_et_blanche/"], "postal_prefix": "J7R", "phone": "450 983-6100", "regions_mentioned": []}
2601 2691 {"domain": "norbleu.com", "urls": ["https://www.norbleu.com"], "names": ["Norbleu"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/norbleu"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G8C", "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2602 2692 {"domain": "nord-bio.coop", "urls": ["https://www.nord-bio.coop/ecomarche", "https://www.nord-bio.coop/ecomarche/categories/les-jardins-bio-forestiers", "https://www.nord-bio.coop/ecomarche/produits/miel", "https://www.nord-bio.coop/ecomarche/categories/ferme-aux-3-soleils", "https://www.nord-bio.coop/ecomarche/categories/les-jardins-de-lily", "https://www.nord-bio.coop/ecomarche/produits/gourgane-congelees", "https://www.nord-bio.coop/ecomarche/categories/fraisiere-biologique-de-chambord", "http://www.nord-bio.coop/", "https://www.nord-bio.coop/ecomarche/"], "names": ["Jardins Terra Terre", "Les Jardins Bio-Forestiers", "Merci La Terre", "Verger Api-Pomme", "Ferme aux trois soleils", "À Contre-Vent", "Domaine Amblay", "Ferme le Filon", "Jardins de Sophie, ferme & resto", "Pousses Égales", "Hiberna – Congelerie Heritier", "Fraisière biologique Chambord", "Écomarché NORD-Bio", "Boulangerie Farine"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/jardins-terra-terre/", "https://zoneboreale.com/entreprises/les-jardins-bio-forestier/", "https://zoneboreale.com/entreprises/merci-la-terre/", "https://zoneboreale.com/entreprises/happy-pomme/", "https://zoneboreale.com/entreprises/ferme-aux-trois-soleils/", "https://zoneboreale.com/entreprises/a-contre-vent/", "https://zoneboreale.com/entreprises/domaine-amblay/", "https://zoneboreale.com/entreprises/les-jardins-de-lily/", "https://zoneboreale.com/entreprises/les-jardins-de-sophie/", "https://zoneboreale.com/entreprises/pousses-egales/", "https://zoneboreale.com/entreprises/congelerie-heritier/", "https://zoneboreale.com/entreprises/fraisiere-biologique-chambord/", "https://zoneboreale.com/entreprises/ecomarche-nord-bio/", "https://zoneboreale.com/entreprises/boulangeriefarine/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/jardinsterraterre/", "https://www.facebook.com/Les-Jardins-Bio-Forestiers-213786232113568", "https://www.facebook.com/mercilaterrebio", "https://www.instagram.com/merci_la_terre/?fbclid=IwAR0VL2flkWg3KPdbJZPiuVeXUknJmfarbF7vGRXuB1lL2GIdtVu7-qkeh-Y", "https://www.instagram.com/verger.apipomme?fbclid=IwY2xjawGPE09leHRuA2FlbQIxMAABHVG814lz26qn85jxg0OuWpYEKa552bHkbBMnJE0e7T6Y4rJZafJNw68B-w_aem_LImsz9zaapvwdM6DZxC1Bw", "https://www.facebook.com/profile.php?id=100048920480457", "https://www.facebook.com/Fermeaux3soleils/", "https://www.instagram.com/fermeauxtroissoleils/?hl=fr", "https://www.facebook.com/-Contre-Vent-456285584476526/", "https://www.facebook.com/profile.php?id=100057152482188", "https://www.facebook.com/Ferme-le-Filon-104695365578937", "https://www.instagram.com/ferme_le_filon/?igshid=ZmRlMzRkMDU%3D&fbclid=IwAR1UzJ7FX4k3Y_hCO5Yo02xDV14tD34460Eam_G5GDm9jTWM2H5lqcdGtiY", "https://www.facebook.com/Les-Jardins-de-Sophie-187774654597050/?fref=ts", "https://www.instagram.com/lesjardinsdesophie/", "https://www.facebook.com/profile.php?id=100088962977177", "https://www.facebook.com/pg/congelerieheritier/about/?ref=page_internal", "https://www.facebook.com/pages/Fraisire-Biologique-Chambord/478774735535710", "https://www.facebook.com/cooperativedesolidarite.nordbio/?ref=page_internal", "https://www.instagram.com/coopnordbio/?igshid=ZmRlMzRkMDU%3D&fbclid=IwAR2zvlcUQqfx_ZpiuQON0WRJnKdRYh871-FUa55QBEC17-Cq9zAOCEhpT_o", "https://www.facebook.com/Merci-la-mie-boulangerie-artisanale-106883500800962/", "https://www.instagram.com/boulangerie.farine/?hl=fr"], "postal_prefix": "G0W", "phone": "581 234-4827", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
@@ -2633,6 +2723,7 @@
2633 2723 {"domain": "oberson.com", "urls": ["https://oberson.com", "https://oberson.com/"], "names": ["Oberson"], "sources": ["lesproduitsduquebec_det"], "source_pages": ["https://lesproduitsduquebec.com/detaillants/oberson"], "socials": ["https://www.facebook.com/ObersonBoutique/", "https://www.instagram.com/obersonboutique/", "https://ca.linkedin.com/company/oberson-sport", "https://www.tiktok.com/@obersonboutique?_t=8nV6GMDXjx0&_r=1", "https://www.youtube.com/user/ObersonBoutique", "https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec"], "postal_prefix": "H7N", "phone": "514 847-9799", "regions_mentioned": ["Laurentides", "Laval", "Montréal"]}
2634 2724 {"domain": "ochampignon.com", "urls": ["http://www.ochampignon.com"], "names": ["9459-6434Quebec inc Ô champignon"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/9459-6434quebec-inc-o-champignon"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G1N", "phone": null, "regions_mentioned": ["Centre-du-Québec"]}
2635 2725 {"domain": "octavemicro.com", "urls": ["https://octavemicro.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/octave-microbrasserie/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/OctaveMicro", "https://www.instagram.com/octavemicrobrasserie/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Foctave-microbrasserie%2F&t=Octave%20Microbrasserie", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Foctave-microbrasserie%2F&text=Octave%20Microbrasserie", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Foctave-microbrasserie%2F&title=Octave%20Microbrasserie&summary="], "postal_prefix": "J1X", "phone": "(819) 847-9930", "regions_mentioned": ["Cantons-de-l'Est"]}
2726 +{"domain": "octeaujoaillier.com", "urls": ["https://www.octeaujoaillier.com"], "names": ["Octeau Joaillier"], "sources": ["search_sweep_bijoux"], "source_pages": ["joaillerie québécoise boutique en ligne créateur"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Sainte-Julie, Montérégie"]}
2636 2727 {"domain": "odayawellness.com", "urls": ["https://www.odayawellness.com/fr"], "names": ["Agence Tingg Inc"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/agence-tingg-inc"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H8T", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
2637 2728 {"domain": "odfnutra.com", "urls": ["https://odfnutra.com/"], "names": ["ODF Nutra / Nutra-Strip / Octane Boost"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/odf-nutra-nutra-strip-octane-boost"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J2S", "phone": "514 847-9799", "regions_mentioned": []}
2638 2729 {"domain": "odwyer.biz", "urls": ["https://odwyer.biz/en/home/", "http://odwyer.biz"], "names": ["O'Dwyer Micro-Distillerie Gaspésienne", "PRODUCTEURS/TRANSFORMATEURS"], "sources": ["distilleriesduquebec", "gaspesiegourmande"], "source_pages": ["https://distilleriesduquebec.com/fr/le-repertoire-des-distilleries/odwyer", "https://gaspesiegourmande.com/producteurs-transformateurs?id=448&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=448&amp;Filtre=1&amp;FiltreSec=3"], "socials": ["https://www.facebook.com/odwyergaspe/", "https://www.instagram.com/explore/locations/527965837385489/odwyer-distillerie-gaspesienne/", "https://www.tiktok.com/discover/o-dwyer-distillery", "https://www.facebook.com/distilleriedequebec/", "https://www.instagram.com/distilleriedequebec/", "https://www.linkedin.com/company/union-québécoise-des-microdistilleries/?originalSubdomain=ca", "https://www.youtube.com/@distilleriesqc", "https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": "G4X", "phone": null, "regions_mentioned": ["Gaspésie", "Îles-de-la-Madeleine"]}
@@ -2670,6 +2761,7 @@
2670 2761 {"domain": "order.koomi.com", "urls": ["https://order.koomi.com/cafe-fabule-6nXbRGKQRa/fr/2021012604/takeout/menu/breuvage-cafe-et-autres-6"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/cafe-fabule/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/cafe.fabule", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-fabule%2F&t=Caf%C3%A9%20Fabul%C3%A9", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-fabule%2F&text=Caf%C3%A9%20Fabul%C3%A9", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-fabule%2F&title=Caf%C3%A9%20Fabul%C3%A9&summary="], "postal_prefix": "J0B", "phone": "(819) 932-8999", "regions_mentioned": ["Cantons-de-l'Est"]}
2671 2762 {"domain": "order.ueat.io", "urls": ["https://order.ueat.io/integration/be0d9a56-dc3c-424e-aa66-a8ff4d6aced2/fr#/"], "names": ["Érablière La Grillade"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/erabliere-la-grillade/"], "socials": ["https://www.facebook.com/lagrilladegranby/", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/erabliere-la-grillade/", "https://twitter.com/intent/tweet?text=%C3%89rabli%C3%A8re+La+Grillade https://www.erabledici.ca/fr/erabliere/erabliere-la-grillade/"], "postal_prefix": "J0E", "phone": "450 375-5959", "regions_mentioned": ["Estrie", "Montérégie"]}
2672 2763 {"domain": "orera.ca", "urls": ["https://www.orera.ca"], "names": ["Oréra"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/orera"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G0M", "phone": "514 847-9799", "regions_mentioned": []}
2764 +{"domain": "originegravure.ca", "urls": ["https://originegravure.ca/fr"], "names": ["Origine Gravure"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux personnalisés gravure Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Césaire, Montérégie"]}
2673 2765 {"domain": "orpailleur.ca", "urls": ["https://orpailleur.ca/", "https://orpailleur.ca/boutique/", "https://orpailleur.ca/cart"], "names": ["ÉCONOMUSÉE® du vigneron", "Créateurs"], "sources": ["artisansaloeuvre", "createursdesaveurs"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-du-vigneron/", "https://createursdesaveurs.com/createurs/vignoble-de-lorpailleur-inc/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/vignobledelorpailleur", "https://www.instagram.com/vignobledelorpailleur/", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/vignobledelorpailleur/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fvignoble-de-lorpailleur-inc%2F&t=Vignoble%20de%20l%E2%80%99Orpailleur%20Inc", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fvignoble-de-lorpailleur-inc%2F&text=Vignoble%20de%20l%E2%80%99Orpailleur%20Inc", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fvignoble-de-lorpailleur-inc%2F&title=Vignoble%20de%20l%E2%80%99Orpailleur%20Inc&summary="], "postal_prefix": "J0E", "phone": "450 295 2763", "regions_mentioned": ["Lac-Saint-Jean", "Cantons-de-l'Est"]}
2674 2766 {"domain": "orthofab.com", "urls": ["https://www.orthofab.com"], "names": ["Orthofab"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/orthofab"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G2C", "phone": "514 847-9799", "regions_mentioned": []}
2675 2767 {"domain": "orviande.com", "urls": ["http://www.orviande.com"], "names": ["Orviande Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/orviande-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H1J", "phone": null, "regions_mentioned": ["Montréal"]}
@@ -2739,6 +2831,7 @@
2739 2831 {"domain": "peachandcream.com", "urls": ["https://peachandcream.com/fr", "https://peachandcream.com"], "names": ["Peach and Cream"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/peach-and-cream"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H1S", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
2740 2832 {"domain": "peakbwa.com", "urls": ["https://peakbwa.com/en"], "names": ["Peakbwa"], "sources": ["search_sweep_nonfood"], "source_pages": ["vêtements bébé enfant fabriqués au Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)"]}
2741 2833 {"domain": "pearsonboutique.com", "urls": ["https://www.pearsonboutique.com", "https://www.pearsonboutique.com/s/shop"], "names": ["Pearson"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/pearson/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Pearsoncomptoirgourmet", "https://www.instagram.com/les_chocolats_pearson/?hl=fr"], "postal_prefix": "G7X", "phone": "418 817-2229", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2834 +{"domain": "peasejewelry.com", "urls": ["https://peasejewelry.com/en"], "names": ["Bijoux Pease"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux minimalistes Montréal créateur boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2742 2835 {"domain": "pecheriemanicouagan.com", "urls": ["http://pecheriemanicouagan.com/fr/"], "names": ["Pêcherie Manicouagan"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/pecherie-manicouagan/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Poissonnerie.Detail/"], "postal_prefix": "G7H", "phone": "418 690-3300", "regions_mentioned": ["Côte-Nord", "Lac-Saint-Jean", "Saguenay"]}
2743 2836 {"domain": "pecheriesgaspesiennes.com", "urls": ["https://pecheriesgaspesiennes.com/", "http://www.pecheriesgaspesiennes.com", "https://pecheriesgaspesiennes.com/en/"], "names": ["Les Pêcheries Gaspésiennes", "PRODUCTEURS/TRANSFORMATEURS"], "sources": ["alimentsduquebec_ent", "gaspesiegourmande", "search_sweep_food"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-pecheries-gaspesiennes", "https://gaspesiegourmande.com/producteurs-transformateurs?id=522&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=522&amp;Filtre=9&amp;FiltreSec=3", "poissonnerie fumoir Gaspésie boutique en ligne"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": "G4X", "phone": "418 269-3331", "regions_mentioned": ["Gaspésie", "Îles-de-la-Madeleine"]}
2744 2837 {"domain": "pecheriespetithavrefr.com", "urls": ["https://www.pecheriespetithavrefr.com/"], "names": ["Pêcheries Petit Havre"], "sources": ["goutcotenord"], "source_pages": ["https://legoutdelacotenord.ca/artisan/pecheries-petit-havre/"], "socials": ["https://www.facebook.com/legoutdelacotenord", "https://www.instagram.com/legoutdelacotenord/", "https://www.facebook.com/Pecheriespetithavre/"], "postal_prefix": "G0G", "phone": "418 809-6306", "regions_mentioned": ["Côte-Nord"]}
@@ -2748,6 +2841,7 @@
2748 2841 {"domain": "peinturelaurentide.com", "urls": ["https://peinturelaurentide.com/"], "names": ["Peinture Laurentide"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/peinture-laurentide"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G9N", "phone": "514 847-9799", "regions_mentioned": []}
2749 2842 {"domain": "peinturesmf.com", "urls": ["https://www.peinturesmf.com/", "https://www.peinturesmf.com"], "names": ["Peintures MF INC"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/peintures-mf-inc"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H7L", "phone": "514 847-9799", "regions_mentioned": ["Laval"]}
2750 2843 {"domain": "penega.com", "urls": ["https://www.penega.com/"], "names": ["Marchés Publics Gaspé", "C'est le temps d'y aller. Maintenent. Pour vrai.", "Marché fermier de Noël du Vieux Saint-Lambert", "Marché public de Sainte-Foy", "Marché public de Deschaillons-sur-St-Laurent", "Marché public de Rouyn-Noranda", "Marché public de Lac-Brome (Knowlton)", "Marché d’été Sainte-Agathe-des-Monts", "Marché Public Chertsey", "Marché de Boucherville – Marché Lionel-Daunais", "Marché public du Vieux Saint-Jean", "La Féerie au Lac du village", "Salon Expo-cadeaux", "Marché public de Salaberry-de-Valleyfield", "Marché Place Noël (Gatineau)", "Marché de Noël de Ville-Mont-Royal", "Marché de Noël de Mont-St-Hilaire", "Marché Public Shawinigan", "Grand Marché de Noël de Québec", "Marché de Noël de Saint-Hyacinthe", "Marché de Noël de New Richmond", "Marché de Noël de Lennoxville", "Marché de Noël de Baie-Saint-Paul", "Marché public de Noël de Ville-Marie", "Marché de Noël de La Pocatière", "Noël au village à Deschambault", "Marché des Fêtes de la Matanie (Matane)", "Marché public Drummondville", "POLNOR", "Marché de Noël de Saint-Ferréol-les-Neiges", "Marché de Noël", "Marché de Noël Godefroy", "Marché de Noël de Dégelis", "Marché public moulinois de Mascouche", "Marché public moulinois de Terrebonne", "Marché Sainte-Anne-de-Bellevue", "Marché Angus (Montréal)", "Marché Atwater (Montréal)", "Marché fermier Saint-Louis (Montréal)", "Marché Jean-Brillant (Montréal)", "Marché Jean-Talon (Montréal)", "Marché Maisonneuve (Montréal)", "Marché fermier Laurier (Montréal)", "Marché Square Victoria (Montréal)", "Marché de Noël de Val-David", "Marché public de Sainte-Émélie-de-l’Énergie", "Marché public de Saint-Colomban", "Festif Bromont", "Marché public de Beauharnois", "Marché Carré Saint-Louis (Montréal)", "Marché métro Papineau (Montréal)", "Marché place Jacques-Cartier (Montréal)", "Marché public de la Vallée-de-l'Or", "Marché public d’Avignon", "Marché public de Repentigny", "Marché fermier Baldwin (Montréal)", "Marché Vieux-Aylmer (Gatineau)", "Salon des Artisan.e.s de Saint-Damien", "Marché Public La Récolte de Rawdon", "Marché de Noël des collines de Sainte-Catherine-de-Hatley", "Marché public du festival La Virée Trad (Carleton-sur-Mer)", "Marché de Noël de Malartic", "Meunier tu fêtes! Marché de Noël au Moulin Michel (Bécancour)", "P’tit Marché des Chenaux (Sainte-Anne-de-la-Pérade)", "Marché public de Limoilou (Québec)", "Marché de Noël de Trois-Pistoles", "Marché fermier du comté de Huntingdon", "Marché de Noël de Pointe-aux-Trembles", "Marché de la Gare de Labelle", "Marche public d’été Stukely-Sud", "Marché de soir de Compton", "Marché couvert de Potton", "Marché Gourmand de Noël de Sainte-Anne-des-Monts", "Marché des Fêtes de Rimouski", "Marché de Noël du Vieux-Saint-Eustache", "Marché public de Blainville", "Marché public Sainte-Anne-de-Beaupré", "Marché de Noël de Thedford", "Marché fermier de Saint-Jean-de-Matha", "Marché de Noël de Cap-Rouge", "Marché fermier de Verchères", "Marché Fermier Ostara du Vieux-Lévis", "Marché public de Saint-Patrice-de-Beaurivage", "Marché de Noël lumineux de Sherbrooke", "Marché Vieux-Hull (Gatineau)", "Marché public Matapédien (Amqui)", "Marché public de Saint-Gédéon", "Marché de Noël : Sous les flocons de Ripon", "Marché public de Palmarolle", "Marcher Noël à Saint-Jérôme", "Marché Plateau Mont-Royal (Montréal)", "Marché des Fêtes de Bolton-Est", "Simplement Noël à Sainte-Luce-sur-Mer", "Marché de Noël à Sainte-Flavie", "Les Matinées gourmandes", "Le Marché des Curiosités (Gore)", "Marché Public de Noël de Mégantic", "Marché de Noël de Saint-Pascal", "Marché public Havre-Saint-Pierre", "Marché de Noel Magog Magique", "Le Marché du Village (Îles-de-la-Madeleine)", "Marché BEAU - Marché des Fêtes", "Marché de Noël d'Amos", "Rendez-vous agroalimentaires des Fêtes - Granby", "Marché public de La Malbaie", "Marché local de Stanstead", "Marché fermier de Frelighsburg", "Marché public Saint-Augustin", "Marché du Vieux-Saurel", "Marché des Fêtes à Notre-Dame-de-l’Île-Perrot et le Marché de Noël de l'Île-Perrot", "Marché public d’Ayer’s Cliff", "Marché des Jardiniers de La Prairie", "Marché de Noël de Saint-Narcisse", "Marché des Fêtes de Mont-Tremblant", "Marché sous les Étoiles à Racine", "Marché de Noël de Melbourne", "Marché Samedi Sutton – Saturday Market", "Marchés publics de l’île d’Orléans", "Marché public de Varennes", "Marché public de Dudswell", "Les vendredis sains – Marchés villageois (Saint-Casimir)", "Marché de Noël de Chambly", "Mékinac Gourmand – Marché public de Saint-Tite", "Marché de Noël de Joliette", "Marché de Chapeau (L’Isle-aux-Allumettes)", "Les Péchés mignons de Lanoraie - Édition Noël", "Marché Villageois de Sawyerville Villager’s Market", "Marché du Plateau (Gatineau)", "Marché fermier de Buckingham (Gatineau)", "Marchés fermiers de Verdun (Montréal)", "Marché de Noël du Marché public d'Eastman", "Marché public des Fêtes de Saint-Raymond", "Le petit marché de Sainte-Julie", "Marché de Noël de North Hatley", "Marché public de Lotbinière", "Marché solidaire Frontenac (Montréal)", "Marché public Saint-Sauveur (Québec)", "Marché public de Rivière-du-Loup", "Marché des saveurs de Plessisville", "Marché des saveurs de Notre-Dame-de-Lourdes", "Marché des saveurs de Princeville", "Marché public d’Inverness", "Marché public de Saint-Ferdinand", "La Clé des Champs de Saint-Camille", "Marché des bonheurs gourmands de Sainte-Julienne", "Marché public du Lac-Masson", "Marché public de Beauport", "Marché des découvertes de Saint-Donat", "Marché public Mercier-Est", "Marché P’tit Beaubien (Montréal)", "Marché fermier de la Station (Montréal)", "Marché de Noël de Farnham"], "sources": ["marchespublics"], "source_pages": ["https://www.marchespublicsduquebec.ca/marches-publics/marches-publics-gaspe/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-la-chevre-et-le-chou/", "https://www.marchespublicsduquebec.ca/marches-publics/mcgill-farmers-market/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-du-vieux-saint-lambert/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-sainte-foy/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-la-sarre/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-deschaillons-sur-st-laurent/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-rouyn-noranda/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-lac-brome-knowlton/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-dete-sainte-agathe-des-monts/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-chertsey/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-boucherville-marche-lionel-daunais/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-kamouraska/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-du-vieux-saint-jean/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-romain/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-saint-adrien/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-waterville/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-de-sainte-cecile-de-milton/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-rosemere/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-d-arrundel/", "https://www.marchespublicsduquebec.ca/marches-publics/le-ptit-marche-de-la-gare-nominingue/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-d-ete-de-riviere-rouge/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-senneterre/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-bruno-de-montarville/", "https://www.marchespublicsduquebec.ca/marches-publics/le-marche-public-de-sept-iles/", "https://www.marchespublicsduquebec.ca/marches-publics/le-petit-marche-public-de-tadoussac/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-mont-louis/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-local-de-new-carlisle/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-radstock-de-sainte-marcelline-de-kildare/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-saint-cuthbert/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-sainte-catherine-de-la-jacques-cartier/", "https://www.marchespublicsduquebec.ca/marches-publics/le-ptit-marche-saint-jean-baptiste-quebec/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-sainte-therese/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-apero-a-saint-irenee/", "https://www.marchespublicsduquebec.ca/marches-publics/le-grand-marche-beauce-sartigan/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-dosquet/", "https://www.marchespublicsduquebec.ca/marches-publics/marches-publics-beauce-centre-a-tring-jonction/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-malachie/", "https://www.marchespublicsduquebec.ca/marches-publics/marches-publics-beauce-centre-a-saint-joseph-de-beauce/", "https://www.marchespublicsduquebec.ca/marches-publics/marches-publics-beauce-centre-a-saint-odilon-de-cranbourne/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-de-la-pelle-du-vrac-a-saint-apolinaire/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-darvida/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-salaberry-de-valleyfield/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-bowman/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-wakefield-market/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-lac-sainte-marie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-chelsea-market/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-bristol-market/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-la-patrie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-baie-comeau/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-solidarite-regionale-de-lestrie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-yamachiche/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-dete-de-sainte-christine/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-des-eclusiers/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-de-saint-norbert/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-pont-rouge/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-goutez-lotbiniere/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-georgeville/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-saint-felix-de-valois/", "https://www.marchespublicsduquebec.ca/marches-publics/marches-publics-beauce-centre-a-beauceville/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-notre-dame/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-chelsea-market-2/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-longueuil/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-du-vieux-longueuil/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-hubert/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-greenfield-park/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-ville-mont-royal/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-mont-saint-hilaire/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-shawinigan/", "https://www.marchespublicsduquebec.ca/marches-publics/le-grand-marche-de-quebec/", "https://www.marchespublicsduquebec.ca/marches-publics/le-1555-marche-public-de-saint-hyacinthe/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-new-richmond/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-lennoxville/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-baie-saint-paul/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-ville-marie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-la-grande-anse/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-deschambault/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-la-matanie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-drummondville/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-brownsburg-chatham/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-ferreol-les-neiges/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-des-hauts-plateaux/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-godefroy/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-gourmand-desjardins-du-temiscouata/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-les-saveurs-de-la-vallee/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-moulinois-mascouche/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-moulinois-terrebonne/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-sainte-anne/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-angus/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-atwater/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-saint-louis/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-jean-brillant/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-jean-talon/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-maisonneuve/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-laurier/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-square-victoria/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-sainte-sophie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-val-david/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-sainte-emilie-de-l-energie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-colomban/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-du-vieux-bromont/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-beauharnois/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-carre-saint-louis/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-metro-papineau/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-place-jacques-cartier/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-la-vallee-de-l-or/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-davignon/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-repentigny/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-baldwin/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-vieux-aylmer/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-autour-du-four-de-saint-damien/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-la-recolte-de-rawdon/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-des-collines-de-sainte-catherine-de-hatley/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-festival-viree-trad-carleton-sur-mer/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-malartic/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-du-moulin-michel-a-becancour/", "https://www.marchespublicsduquebec.ca/marches-publics/p-tit-petit-marche-des-chenaux/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-limoilou/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-des-basques/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-du-comte-de-huntingdon/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-pointe-aux-trembles/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-la-gare-de-labelle/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-dete-stukely-sud/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-soir-de-compton/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-couvert-de-potton/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-cap-chat/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-rimouski/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-du-vieux-saint-eustache/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-blainville/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-sainte-anne/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-thetford/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-de-saint-jean-de-matha/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-cap-rouge/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-de-vercheres/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-ostara/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-patrice-de-beaurivage/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-la-gare-de-sherbrooke/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-montmagny/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-vieux-hull-gatineau/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-matapedien/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-gedeon/", "https://www.marchespublicsduquebec.ca/marches-publics/cooperative-place-marche-public-petite-nation/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-palmarolle/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-jerome/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-plateau-mont-royal/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-bolton-est-le-rucher-boltonnois/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-sainte-luce-sur-mer/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-la-mitis/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-local-de-waterloo/", "https://www.marchespublicsduquebec.ca/marches-publics/les-matinees-gourmandes/", "https://www.marchespublicsduquebec.ca/marches-publics/le-marche-des-curiosites/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-megantic/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-l-expo-de-saint-pascal/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-havre-saint-pierre/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-magog/", "https://www.marchespublicsduquebec.ca/marches-publics/le-marche-du-village/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-beau/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-d-amos/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-granby-et-region/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-la-malbaie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-local-de-stanstead/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-de-frelighsburg/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-saint-augustin/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-du-vieux-saurel/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-des-saveurs-de-l-ile-perrot/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-d-ayers-cliff/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-des-jardiniers-de-la-prairie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-champetre-de-saint-narcisse/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-d-ete-de-mont-tremblant/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-locavore-de-racine/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-champetre-de-melbourne/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-samedi-sutton-saturday-market/", "https://www.marchespublicsduquebec.ca/marches-publics/marches-publics-de-l-ile-dorleans/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-varennes/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-dudswell/", "https://www.marchespublicsduquebec.ca/marches-publics/les-vendredis-sains-marches-villageois/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-chambly/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-tite/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-joliette/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-de-chapeau/", "https://www.marchespublicsduquebec.ca/marches-publics/les-peches-mignons-de-lanoraie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-villageois-de-sawyerville-villagers-market/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-du-plateau-gatineau/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-fermier-de-buckingham/", "https://www.marchespublicsduquebec.ca/marches-publics/marches-fermiers-de-verdun/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-d-eastman/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-raymond/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-sainte-julie/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-champetre-de-north-hatley/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-lotbiniere/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-du-terroir-de-mirabel/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-solidaire-frontenac/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-saint-sauveur/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-riviere-du-loup/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-des-saveurs-de-plessisville/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-des-saveurs-de-notre-dame-de-lourdes/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-des-saveurs-de-princeville/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-d-inverness/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-saint-ferdinand/", "https://www.marchespublicsduquebec.ca/marches-publics/la-cle-des-champs-de-saint-camille/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-sainte-julienne/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-du-lac-masson/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-matapedia/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-la-conception/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-prevost/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-beauport/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-des-decouvertes-de-saint-donat/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-mercier-est/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-ptit-beaubien-montreal/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-l-ile-des-soeurs/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-farnham/"], "socials": ["https://www.facebook.com/marchespublicsgaspe", "https://www.youtube.com/watch?v=_AxFQGXR8eA&t=2s", "https://www.facebook.com/marchespublicsqc", "https://www.linkedin.com/company/marches-publics-du-quebec/", "https://www.instagram.com/marchespublicsqc/", "https://www.youtube.com/channel/UCtwIcRX4_9l0XsOT7MgjFQQ", "https://www.facebook.com/marchefermiervstlambert/", "https://www.instagram.com/marchefermiervstlambert/", "https://www.facebook.com/MarcheSainteFoy", "https://www.instagram.com/mpsaintefoy/", "https://www.facebook.com/profile.php?id=100057182361609", "https://www.facebook.com/MPRouynNoranda", "https://www.facebook.com/profile.php?id=61557778988730&locale=fr_CA", "https://www.facebook.com/sainteagathe", "https://www.facebook.com/MarchePublicChertsey", "https://www.facebook.com/VilleBoucherville/?locale=fr_CA", "https://www.instagram.com/villeboucherville/", "https://www.facebook.com/mpvsj?mibextid=kFxxJD", "https://www.facebook.com/stbrunodemontarville/", "https://www.instagram.com/saintbrunodemontarville/", "https://www.youtube.com/user/stbrunodemontarville%20et%20https://ca.linkedin.com/company/ville-de-saint-bruno-de-montarville", "https://www.facebook.com/MPValleyfield", "https://www.facebook.com/MNDGatineau", "https://www.instagram.com/marchenotredamevg/", "https://www.facebook.com/profile.php?id=100089801031421&mibextid=ZbWKwL", "https://www.facebook.com/marchesainthilaire/", "https://www.facebook.com/March%C3%A9-Public-de-Shawinigan-109132122499287/", "https://www.facebook.com/GrandMarcheQuebec/", "https://ca.linkedin.com/company/grand-march%C3%A9-de-qu%C3%A9bec", "https://www.instagram.com/grandmarcheqc/?hl=fr", "https://www.facebook.com/1555marchepublic", "https://www.instagram.com/1555marchepublic/", "https://www.facebook.com/marchepublicnewrichmond", "https://www.instagram.com/villedenewrichmond/", "https://www.facebook.com/amalennox/", "https://www.instagram.com/explore/locations/247535772059835/marchepublic-de-lennoxville-lennoxville-farmersmarket/", "https://www.facebook.com/marchepublicbsp/", "https://www.instagram.com/marchepublic.bsp/", "https://www.facebook.com/marchepublicdevillemarie", "https://www.facebook.com/marchepubliclapocatiere/?locale=fr_CA", "https://www.facebook.com/Marché-Public-de-Deschambault-104809776270038/", "https://www.instagram.com/marchepublicdeschambault/?igsh=MXNkeGVuNnU3Z3k4YQ%3D%3D", "https://www.facebook.com/marchepublicmatanie/", "https://www.facebook.com/marchepublicdrummondville", "https://www.instagram.com/marche_public_drummondville/", "https://www.youtube.com/@marchepublicdrummondville9612", "https://www.tiktok.com/@marchepublicdrummond", "https://www.facebook.com/March-public-St-Ferrol-les-Neiges-108158092850809", "https://www.marchehautsplateaux.com", "https://www.facebook.com/marchehautsplateaux", "https://www.facebook.com/marchegodefroy/", "https://www.facebook.com/MarcheGourmandDesjardinsTemiscouata", "https://www.facebook.com/MarcheGourmandDesjardinsTemiscouata/", "https://www.facebook.com/MarchepublicMoulinois", "https://www.instagram.com/marchepublicmoulinois/", "https://www.facebook.com/MarcheSteAnne", "https://www.instagram.com/marchesteanne/", "https://www.tiktok.com/@marchesteanne", "https://www.facebook.com/marche.angus", "https://www.instagram.com/marche.angus/", "https://www.facebook.com/mpatw", "https://www.linkedin.com/company/march%C3%A9s-publics-de-montr%C3%A9al/", "https://www.instagram.com/marcheatwater/?hl=fr", "https://www.facebook.com/marchesfermiers", "https://www.instagram.com/marchesfermiers/", "https://www.facebook.com/marchejeanbrillant/", "https://www.instagram.com/marche_jb_cdn/", "https://www.facebook.com/mjeantalon", "https://fr.linkedin.com/company/march%C3%A9s-publics-de-montr%C3%A9al", "https://www.instagram.com/marchejeantalon/", "https://www.facebook.com/marchemaisonneuve", "https://www.instagram.com/marchemaisonneuve/?hl=fr", "https://www.facebook.com/profile.php?id=61555621262966", "https://www.linkedin.com/company/march%C3%A9s-publics-de-montr%C3%A9al", "https://www.instagram.com/marchespublicsmtl/", "https://www.facebook.com/marchesdici", "https://instagram.com/marchesdici/", "https://www.facebook.com/marche.sainte.emelie", "https://www.instagram.com/marchepublicstemelie/", "https://www.facebook.com/MarchePublicSaintColomban/", "https://www.instagram.com/marchepublicsaintcolomban/", "https://www.facebook.com/tourismebromont", "https://www.facebook.com/lekiosquek", "https://www.facebook.com/mpatw/", "https://www.instagram.com/marcheplacejc/", "https://www.facebook.com/MPVDO", "https://www.linkedin.com/company/71995627", "https://www.instagram.com/marchepublicvalleedelor/", "https://www.facebook.com/Passionmarches", "https://www.facebook.com/marchevieuxaylmer/", "https://www.facebook.com/autourdufoursaintdamien", "https://www.instagram.com/marche.autourdufour/", "https://www.youtube.com/watch?v=ola71OahA5I", "https://www.facebook.com/municipalite.derawdon", "https://www.facebook.com/marchedescollines", "https://www.facebook.com/FestivalLaVireeTrad", "https://www.instagram.com/festivallavireetrad", "https://www.facebook.com/marchepublicdeMalartic", "https://www.facebook.com/lemoulinmichel", "https://www.instagram.com/moulinmicheldegentilly", "https://www.facebook.com/ptitmarchedeschenaux", "https://www.instagram.com/ptitmarchedeschenaux/", "https://facebook.com/marchelimoilou", "https://www.instagram.com/marchelimoilou", "https://www.facebook.com/marchepublicdesbasques", "https://www.youtube.com/@marchepublicdesbasques7764", "https://www.facebook.com/marchefermiercomtehuntingdon", "https://www.instagram.com/marche.fermier.huntingdon/", "https://www.facebook.com/MarchePublicPAT", "https://www.linkedin.com/company/marché-public-de-pointe-aux-trembles/", "https://www.instagram.com/marche.public.pat/", "https://www.youtube.com/@Marchepublicpat", "https://www.tiktok.com/@marchepublicpat?is_from_webapp=1&sender_device=pc", "https://www.facebook.com/marchegarelabelle/", "https://www.facebook.com/profile.php?id=61573557239677", "https://www.facebook.com/LesComptonales/", "https://www.instagram.com/lescomptonales/", "https://www.youtube.com/channel/UCiqehwpYCEHk4Quod9Q97bQ", "https://www.facebook.com/MarchedePottonMarket", "https://www.instagram.com/marchedepottonmarket/", "https://www.facebook.com/marchepcapchat", "https://www.facebook.com/marchepublicrimouski", "https://www.instagram.com/marchepublicderimouski/", "https://www.facebook.com/marchepublicduvieuxsainteustache/", "https://www.instagram.com/marchepublicvieuxsteustache/", "http://facebook.com/VilleBlainville", "https://www.instagram.com/villeblainville/", "https://www.facebook.com/MarchePublicSainteAnne", "https://www.facebook.com/marchepublicthetford", "https://www.instagram.com/marchepublicthetford/", "https://www.tiktok.com/@marchepublicthetford", "https://www.facebook.com/marchefermier.matha", "https://www.instagram.com/marchefermier.matha/?fbclid=IwZXh0bgNhZW0CMTAAAR17dEVhO5aK_LKn6pA1uui42yAE0AEPVsKCqfY3ShxcsJGJgT7KiRO5UTw_aem_AUJq2rUkMLKMsj7Rgkbj4eybwHD4FFbSEjywPDkXk3hp1zfUCRBCIe3GWH-2MIkz0wj0DXnbQ-fyLCx-f36H4KhD", "https://www.facebook.com/marchepublicdecaprouge", "https://www.instagram.com/marchepubliccaprouge_mpcr/#", "https://www.facebook.com/profile.php?id=100055222302875", "https://www.facebook.com/MarcheOstara", "https://www.facebook.com/MarchePublicDeStPatrice", "https://www.youtube.com/watch?v=FsfShfOEDDs", "https://www.facebook.com/marchedelagare/", "https://www.facebook.com/marche.vieuxhull.1", "https://www.facebook.com/marchematapedien", "https://www.instagram.com/marchematapedien/", "https://www.facebook.com/marchepublicsaintgedeon?ref=br_rs", "https://www.facebook.com/marchepublic", "https://www.instagram.com/cooperative_place_du_marche/", "https://www.facebook.com/MarchePublicPalmarolle", "https://www.facebook.com/kiosquemontroyal", "https://www.instagram.com/kiosque.mont.royal/", "https://www.facebook.com/MarchePublicBoltonEst", "https://www.facebook.com/marchepublicsainteluce/", "https://www.facebook.com/Steflavie", "https://instagram.com/marchepublicdela?igshid=OGQ5ZDc2ODk2ZA==", "https://www.facebook.com/matineesgourmandes/", "https://www.facebook.com/events/896900115747156/896900155747152/", "https://www.youtube.com/watch?v=pTSdNXxYaT4", "https://www.facebook.com/marchepublicmegantic", "https://www.facebook.com/marchedelexpo", "https://www.facebook.com/Tourismehsp", "https://www.facebook.com/marchepublicmagog/", "https://www.facebook.com/lemarcheduvillage/?fref=ts", "https://www.facebook.com/LesAmisduVillageBeaurepaire", "https://www.instagram.com/amis.village.beaurepaire", "https://www.facebook.com/MarchePublicAmos", "https://www.facebook.com/MarchePublicGranby", "https://www.instagram.com/marchepublicgranby_region/", "https://www.facebook.com/marchepubliclamalbaie/", "https://www.facebook.com/marchepubliclamalbaie", "https://www.facebook.com/share/18VFJCLPwy/", "https://www.instagram.com/marchestansteadmarket?igsh=MTM2b2hxYWozdjc3eg==", "https://www.facebook.com/marchefrelighsburg", "https://www.instagram.com/marchefrelighsburg", "https://www.facebook.com/VSADslcvc", "https://www.facebook.com/marcheduvieuxsaurel", "https://www.facebook.com/marchesaveursip/", "https://www.instagram.com/marchedessaveurs/", "https://www.facebook.com/AyersCliffFarmersMarket?mibextid=LQQJ4d", "https://www.facebook.com/Marchedesjardiniers/", "https://www.instagram.com/marche_des_jardiniers/?hl=fr", "https://www.facebook.com/marchechampetredesaintnarcisse", "https://www.facebook.com/VilleMTremblant/", "https://www.facebook.com/marchelocavore", "https://www.facebook.com/MarcheChampetredeMelbourne/", "https://www.instagram.com/marchechampetredemelbourne/?hl=fr", "https://www.facebook.com/marche.sutton.market/", "https://www.instagram.com/marche.sutton.market/", "https://www.facebook.com/MarchePublicVarennes?locale=fr_CA", "https://m.facebook.com/MarchePublicVarennes", "https://www.instagram.com/marchepublicvarennes/", "https://www.facebook.com/marchepublicdudswell", "https://www.facebook.com/lesvendredissains", "https://www.facebook.com/villedechambly", "https://www.instagram.com/villedechambly/", "https://www.facebook.com/mekinacgourmand/", "https://www.facebook.com/marchepublicjoliette", "https://www.facebook.com/profile.php?id=100063764597184", "https://www.facebook.com/lanoraie", "https://www.facebook.com/MarcheVillageoisSawyerville", "https://www.facebook.com/marchepublicplateau", "https://www.facebook.com/p/March%C3%A9-fermier-de-Buckingham-100089804727711/?locale=fr_CA", "https://www.instagram.com/marchefermierdebuckingham/", "https://www.facebook.com/marchesfermiersdeVerdun/", "https://www.facebook.com/marchepubliceastman/", "https://www.facebook.com/marchepublicdesaintraymond", "https://www.linkedin.com/in/rapha%C3%ABl-benoit-9980b4305/", "https://www.instagram.com/marchepublicsaintraymond/", "https://www.facebook.com/lepetitmarchesaintejulie/", "https://www.facebook.com/marchepublicdelotbiniere", "https://www.facebook.com/marchesolidairefrontenac/", "https://www.linkedin.com/company/carrefoursolidaire/", "https://www.instagram.com/marchesolidairefrontenac/?img_index=1", "https://www.facebook.com/MarcheSaintSauveur/", "https://www.instagram.com/reel/C5yHTDzsUf4/", "https://www.facebook.com/marchepublicrdl", "https://www.facebook.com/marcheinverness", "https://www.facebook.com/marchepublicstferdinand/", "https://www.facebook.com/fermebiocledeschamps/", "https://www.facebook.com/municipalitesaintejulienne", "https://www.facebook.com/marchepubliclacmasson/", "https://www.facebook.com/marche.public.de.beauport", "https://www.instagram.com/marche.public.de.beauport/", "https://www.facebook.com/profile.php?id=61572446764485", "https://www.facebook.com/profile.php?id=61590130000178", "https://www.facebook.com/profile.php?id=61590772765140", "https://www.facebook.com/profile.php?id=61576201474665", "https://www.facebook.com/MarchePublicFarnham/", "https://www.instagram.com/marchepublicdefarnham/?hl=fr"], "postal_prefix": "G4X", "phone": null, "regions_mentioned": ["Gaspésie", "Montérégie", "Centre-du-Québec", "Abitibi", "Témiscamingue", "Cantons-de-l'Est", "Laurentides", "Lanaudière", "Montréal", "Outaouais", "Mauricie", "Bas-Saint-Laurent", "Chaudière-Appalaches", "Saguenay", "Côte-Nord", "Îles-de-la-Madeleine", "Estrie", "Laval"]}
2844 +{"domain": "penelopeclinique.com", "urls": ["https://penelopeclinique.com"], "names": ["Pénélope Clinique"], "sources": ["search_sweep_bijoux"], "source_pages": ["piercing body jewelry Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saint-Jérôme, Laurentides"]}
2751 2845 {"domain": "penseesauvagedestacy.com", "urls": ["https://www.penseesauvagedestacy.com/"], "names": ["Pensée Sauvage de stacy"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/pensee-sauvage-de-stacy/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/PenseeSauvageDeStacy"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2752 2846 {"domain": "pepiniereborealis.com", "urls": ["http://www.pepiniereborealis.com/", "http://www.pepiniereborealis.com/store/c1/Featured_Products.html"], "names": ["Pépinière Boréalis"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/pepiniere-borealis/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://fr-fr.facebook.com/pepiniereborealis", "https://www.instagram.com/pepiniereborealis/?hl=fr"], "postal_prefix": "G7X", "phone": "418 699-1313", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2753 2847 {"domain": "pepiniereducerneau.com", "urls": ["http://www.pepiniereducerneau.com/"], "names": ["Pépinière du cerneau"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/pepiniere-du-cerneau/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/Pepiniereducerneau"], "postal_prefix": null, "phone": "581 667-2032", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
@@ -2780,6 +2874,7 @@
2780 2874 {"domain": "piebraque.com", "urls": ["http://www.piebraque.com", "https://piebraque.com/", "https://piebraque.com/boutique/#/"], "names": ["Pie Braque Microbrasserie", "Pie Braque Microbrasserie Coopérative"], "sources": ["alimentsduquebec_ent", "ambq_profils", "zoneboreale"], "source_pages": ["https://alimentsduquebec.com/entreprises/pie-braque-microbrasserie", "https://ambq.ca/fr/microbrasserie/pie-braque-microbrasserie", "https://zoneboreale.com/entreprises/pie-braque-microbrasserie-cooperative/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/PieBraque/", "https://www.instagram.com/piebraquemicrobrasserie/", "https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/PieBraque", "https://www.instagram.com/piebraquemicrobrasserie/?hl=fr"], "postal_prefix": "G7X", "phone": "418 818-0735", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2781 2875 {"domain": "piedmontdora.com", "urls": ["http://www.piedmontdora.com"], "names": ["Pied-Mont Dora Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/pied-mont-dora-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J5N", "phone": null, "regions_mentioned": ["Laurentides"]}
2782 2876 {"domain": "pierogerie.ca", "urls": ["https://pierogerie.ca/", "https://pierogerie.ca/shop/", "https://pierogerie.ca/experience/"], "names": ["ÉCONOMUSÉE® du fabricant de pierogis"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-fabricant-pierogis-ab/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/Pierogerie", "https://www.instagram.com/pierogerie/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
2877 +{"domain": "pierresdailleurs.ca", "urls": ["https://www.pierresdailleurs.ca/fc/collection"], "names": ["Pierres D'Ailleurs"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux pierres minéraux Québec créateur boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
2783 2878 {"domain": "pigne1.simplesite.com", "urls": ["http://pigne1.simplesite.com/444843233"], "names": ["Capteur Chevreuil - Acheter québécois", "Sculpture sur bois Haut-relief, noyer cendré - Acheter québécois", "Trappeurs indien - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/capteur-chevreuil/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/sculpture-sur-bois-haut-relief-noyer-cendre/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/trappeurs-indien/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
2784 2879 {"domain": "pikkado.com", "urls": ["https://www.pikkado.com/home/fr"], "names": ["Alcyon", "Allo Simonne", "À Marée Basse", "Apéro à zéro", "Aquaovo", "ARICO", "Avanaa Chocolat", "BÄUM", "Béké bobo", "BKIND", "BOA Bijoux", "La boîte à vins", "Bonnetier", "Boutique art Inca", "Boutique Citrouille", "Brodé Serré", "Éditions Broquet", "Bubulle et Jujube", "Cactus En Ligne", "La Grande Gourmandise", "Camellia Sinensis", "Canard Goulu", "Carnet d'autre part", "Chandelles Funky", "Choco Chocolat", "Cocooning Love", "Coffrets Prestige", "Concrete Memory", "Costume de bain", "Coussin etc.", "Créations Odie", "Custombuzz", "Dans le sac", "Délices du Lac-Saint-Jean", "Des enfantillages", "Harrington pétillants botaniques", "Doupando", "Évasion Plani Terre", "Ébénisterie Steve Genesse", "Ecolocado", "Les Éditions Cardinal", "Éditions de Mortagne", "L'érablière du Village", "Fab’", "Feu&co", "Flambette", "Floèm", "Fondussimo", "Ginius", "Café du Triangle d'Or", "GOWOOD", "Guides de voyage Ulysse", "Les couteaux Hazaki", "Hugo Didier", "Ikigai Box", "Jouer c'est grandir", "K5 Clothing", "Kanel", "KaseMe", "Kawelä", "Kim & Joe", "Kimo Savon Artisanal", "KO Éditions", "La boîte à bonbons", "La Lichée", "La Pimenterie", "La pincée", "LaPizzaShop", "L'Assembleuse", "LE NID Atelier", "Le Point Visible", "Les As du Fumoir", "Les Créations Fol-Artists", "Les Dériveuses", "Les Filles Fattoush", "Les Industries Groom", "Les Mains d'ici", "Les Mauvaises HERBES", "Les Tatoués", "Liliblanc", "Lili Graffiti", "LilloJEUX", "L'Instant Box", "Ma bulle de lecture", "Madame Germaine", "Maddle", "Main and Local", "Meyeur", "Piko Peppers", "LIAISON", "Milie Bijoux", "Moi d'abord", "Moka Toutou Musical", "MTL Balance Board", "Mushup", "Naturehike", "Neka", "Next Chance", "Nos Cabanes", "Nüspace", "OLA Bamboo", "Olives et Gourmandises", "Onquata", "O! PANIER", "Oui Manon", "Owly Packs", "Paella Marisol", "Paperole", "Pero", "Plantopi", "Plumme", "Poches & Fils", "Poseidn", "Quatre T", "QUB Livre", "Québec Amérique", "Racines boréales", "blanc par rouGe", "SaberX", "Saponaria", "Sardines Studio", "Senseaura", "Shop moi ça", "Soif de Voyages", "Solios", "Sounds Good", "Studio Raton", "Tamelo Boutique", "Ta peau, Ton fruit", "Baltic Club", "Ticoti Baby", "Toque & Tablier", "Tranche de bois", "Trucs d'enfants", "T surprise", "Tuta & Coco", "U Main", "Vox & Oz"], "sources": ["ideecadeauquebec"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/alcyonsel/", "https://www.ideecadeauquebec.com/boutique/allosimonne/", "https://www.ideecadeauquebec.com/boutique/amareebasse/", "https://www.ideecadeauquebec.com/boutique/aperoazero/", "https://www.ideecadeauquebec.com/boutique/aquaovo/", "https://www.ideecadeauquebec.com/boutique/arico/", "https://www.ideecadeauquebec.com/boutique/avanaa/", "https://www.ideecadeauquebec.com/boutique/baumproduitsnaturels/", "https://www.ideecadeauquebec.com/boutique/bekebobo/", "https://www.ideecadeauquebec.com/boutique/bkind/", "https://www.ideecadeauquebec.com/boutique/boabijoux/", "https://www.ideecadeauquebec.com/boutique/boiteavins/", "https://www.ideecadeauquebec.com/boutique/bonnetier/", "https://www.ideecadeauquebec.com/boutique/boutiqueartinca/", "https://www.ideecadeauquebec.com/boutique/boutiquecitrouille/", "https://www.ideecadeauquebec.com/boutique/brodeserre/", "https://www.ideecadeauquebec.com/boutique/broquet/", "https://www.ideecadeauquebec.com/boutique/bubulleetjujube/", "https://www.ideecadeauquebec.com/boutique/cactusenligne/", "https://www.ideecadeauquebec.com/boutique/cadeaugourmand/", "https://www.ideecadeauquebec.com/boutique/camellia-sinensis/", "https://www.ideecadeauquebec.com/boutique/canardgoulu/", "https://www.ideecadeauquebec.com/boutique/carnetdautrepart/", "https://www.ideecadeauquebec.com/boutique/chandellesfunky/", "https://www.ideecadeauquebec.com/boutique/chocochocolat/", "https://www.ideecadeauquebec.com/boutique/cocooninglove/", "https://www.ideecadeauquebec.com/boutique/coffretsprestige/", "https://www.ideecadeauquebec.com/boutique/concretememory/", "https://www.ideecadeauquebec.com/boutique/costumedebain/", "https://www.ideecadeauquebec.com/boutique/coussinsetc/", "https://www.ideecadeauquebec.com/boutique/creationsodie/", "https://www.ideecadeauquebec.com/boutique/custombuzz/", "https://www.ideecadeauquebec.com/boutique/danslesac/", "https://www.ideecadeauquebec.com/boutique/delicesdulac/", "https://www.ideecadeauquebec.com/boutique/desenfantillages/", "https://www.ideecadeauquebec.com/boutique/domaineharrington/", "https://www.ideecadeauquebec.com/boutique/doupando/", "https://www.ideecadeauquebec.com/boutique/easyplanettravel/", "https://www.ideecadeauquebec.com/boutique/ebenisteriestevegenesse/", "https://www.ideecadeauquebec.com/boutique/ecolocado/", "https://www.ideecadeauquebec.com/boutique/editions-cardinal/", "https://www.ideecadeauquebec.com/boutique/editionsdemortagne/", "https://www.ideecadeauquebec.com/boutique/erabliereduvillage/", "https://www.ideecadeauquebec.com/boutique/fabhandcrafted/", "https://www.ideecadeauquebec.com/boutique/feuetco/", "https://www.ideecadeauquebec.com/boutique/flambette/", "https://www.ideecadeauquebec.com/boutique/floem/", "https://www.ideecadeauquebec.com/boutique/fondussimo/", "https://www.ideecadeauquebec.com/boutique/ginius/", "https://www.ideecadeauquebec.com/boutique/goldentrianglecoffee/", "https://www.ideecadeauquebec.com/boutique/gowood/", "https://www.ideecadeauquebec.com/boutique/guidesulysse/", "https://www.ideecadeauquebec.com/boutique/hazakiknives/", "https://www.ideecadeauquebec.com/boutique/hugodidier/", "https://www.ideecadeauquebec.com/boutique/ikigai-box/", "https://www.ideecadeauquebec.com/boutique/jouercestgrandir/", "https://www.ideecadeauquebec.com/boutique/k5clothing/", "https://www.ideecadeauquebec.com/boutique/kanel/", "https://www.ideecadeauquebec.com/boutique/kasemedesign/", "https://www.ideecadeauquebec.com/boutique/kawela/", "https://www.ideecadeauquebec.com/boutique/kimetjoe/", "https://www.ideecadeauquebec.com/boutique/kimosoap/", "https://www.ideecadeauquebec.com/boutique/ko-media/", "https://www.ideecadeauquebec.com/boutique/laboiteabonbons/", "https://www.ideecadeauquebec.com/boutique/lalichee/", "https://www.ideecadeauquebec.com/boutique/lapimenterie/", "https://www.ideecadeauquebec.com/boutique/lapincee/", "https://www.ideecadeauquebec.com/boutique/lapizzashop/", "https://www.ideecadeauquebec.com/boutique/lassembleuse/", "https://www.ideecadeauquebec.com/boutique/lenidatelier/", "https://www.ideecadeauquebec.com/boutique/lepointvisible/", "https://www.ideecadeauquebec.com/boutique/lesasdufumoir/", "https://www.ideecadeauquebec.com/boutique/lescreationsfol-artists/", "https://www.ideecadeauquebec.com/boutique/lesderiveuses/", "https://www.ideecadeauquebec.com/boutique/lesfillesfattoush/", "https://www.ideecadeauquebec.com/boutique/lesindustriesgroom/", "https://www.ideecadeauquebec.com/boutique/lesmainsdici/", "https://www.ideecadeauquebec.com/boutique/lesmauvaisesherbes/", "https://www.ideecadeauquebec.com/boutique/lestatoues/", "https://www.ideecadeauquebec.com/boutique/liliblanc/", "https://www.ideecadeauquebec.com/boutique/liligraffiti/", "https://www.ideecadeauquebec.com/boutique/lillojeux/", "https://www.ideecadeauquebec.com/boutique/linstantbox/", "https://www.ideecadeauquebec.com/boutique/mabulledelecture/", "https://www.ideecadeauquebec.com/boutique/madamegermaine/", "https://www.ideecadeauquebec.com/boutique/maddleboards/", "https://www.ideecadeauquebec.com/boutique/mainandlocal/", "https://www.ideecadeauquebec.com/boutique/meyeur/", "https://www.ideecadeauquebec.com/boutique/microsauceriepikopeppers/", "https://www.ideecadeauquebec.com/boutique/miels-liaison/", "https://www.ideecadeauquebec.com/boutique/miliebijoux/", "https://www.ideecadeauquebec.com/boutique/moidabord/", "https://www.ideecadeauquebec.com/boutique/mokatoutoumusical/", "https://www.ideecadeauquebec.com/boutique/mtlbboard/", "https://www.ideecadeauquebec.com/boutique/mushup/", "https://www.ideecadeauquebec.com/boutique/naturehike/", "https://www.ideecadeauquebec.com/boutique/neka/", "https://www.ideecadeauquebec.com/boutique/nextchance/", "https://www.ideecadeauquebec.com/boutique/noscabanes/", "https://www.ideecadeauquebec.com/boutique/nuspace/", "https://www.ideecadeauquebec.com/boutique/olabamboo/", "https://www.ideecadeauquebec.com/boutique/olivesetgourmandises/", "https://www.ideecadeauquebec.com/boutique/onquata/", "https://www.ideecadeauquebec.com/boutique/opanier/", "https://www.ideecadeauquebec.com/boutique/ouimanon/", "https://www.ideecadeauquebec.com/boutique/owlypacks/", "https://www.ideecadeauquebec.com/boutique/paellamarisol/", "https://www.ideecadeauquebec.com/boutique/paperole/", "https://www.ideecadeauquebec.com/boutique/pero-qc/", "https://www.ideecadeauquebec.com/boutique/plantopi/", "https://www.ideecadeauquebec.com/boutique/plummebox/", "https://www.ideecadeauquebec.com/boutique/pochesetfils/", "https://www.ideecadeauquebec.com/boutique/poseidn/", "https://www.ideecadeauquebec.com/boutique/quatret/", "https://www.ideecadeauquebec.com/boutique/qublivre/", "https://www.ideecadeauquebec.com/boutique/quebec-amerique/", "https://www.ideecadeauquebec.com/boutique/racinesboreales/", "https://www.ideecadeauquebec.com/boutique/rougemaple/", "https://www.ideecadeauquebec.com/boutique/saberx/", "https://www.ideecadeauquebec.com/boutique/saponaria/", "https://www.ideecadeauquebec.com/boutique/sardinesstudio/", "https://www.ideecadeauquebec.com/boutique/senseaura/", "https://www.ideecadeauquebec.com/boutique/shopmoica/", "https://www.ideecadeauquebec.com/boutique/soifdevoyages/", "https://www.ideecadeauquebec.com/boutique/solioswatches/", "https://www.ideecadeauquebec.com/boutique/soundsgood/", "https://www.ideecadeauquebec.com/boutique/studioraton/", "https://www.ideecadeauquebec.com/boutique/tameloboutique/", "https://www.ideecadeauquebec.com/boutique/tapeautonfruit/", "https://www.ideecadeauquebec.com/boutique/thebalticclub/", "https://www.ideecadeauquebec.com/boutique/ticotibaby/", "https://www.ideecadeauquebec.com/boutique/toqueettablier/", "https://www.ideecadeauquebec.com/boutique/tranchedebois/", "https://www.ideecadeauquebec.com/boutique/trucsdenfants/", "https://www.ideecadeauquebec.com/boutique/tsurprise/", "https://www.ideecadeauquebec.com/boutique/tutacoco/", "https://www.ideecadeauquebec.com/boutique/u-main/", "https://www.ideecadeauquebec.com/boutique/voxandoz/"], "socials": ["https://www.instagram.com/ideecadeauquebec/", "https://www.facebook.com/IdeeCadeauQuebec/", "https://pinterest.com/IdeeCadeauQC", "https://twitter.com/IdeeCadeauQC", "https://www.youtube.com/c/Id%C3%A9eCadeauQu%C3%A9bec"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Bas-Saint-Laurent", "Capitale-Nationale", "Centre-du-Québec", "Chaudière-Appalaches", "Côte-Nord", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Nord-du-Québec", "Outaouais", "Saguenay", "Îles-de-la-Madeleine"]}
2785 2880 {"domain": "pimenterlavie.com", "urls": ["http://www.pimenterlavie.com"], "names": ["Pimenter La Vie"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/pimenter-la-vie"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J5K", "phone": null, "regions_mentioned": ["Laurentides"]}
@@ -2911,6 +3006,7 @@
2911 3006 {"domain": "raymeraquaculture.ca", "urls": ["http://www.raymeraquaculture.ca"], "names": ["PRODUCTEURS/TRANSFORMATEURS"], "sources": ["gaspesiegourmande"], "source_pages": ["https://gaspesiegourmande.com/producteurs-transformateurs?id=564&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=564&amp;Filtre=9&amp;FiltreSec=4"], "socials": ["https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": "G0C", "phone": "418 392-5310", "regions_mentioned": ["Gaspésie"]}
2912 3007 {"domain": "rebelkarma.ca", "urls": ["https://www.rebelkarma.ca/", "https://www.rebelkarma.ca/shop/"], "names": ["Rebel Karma Café"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/rebel-karma-cafe/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/rebelkarma"], "postal_prefix": "G7H", "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
2913 3008 {"domain": "rebelle.club", "urls": ["https://www.rebelle.club"], "names": ["Crème glacée Rebelle"], "sources": ["croquezoutaouais"], "source_pages": ["https://www.croquezoutaouais.com/entreprises/creme-glacee-rebelle/"], "socials": ["https://www.facebook.com/croquezloutaouais/", "https://www.instagram.com/croquezoutaouais", "https://web.facebook.com/croquezloutaouais/?_rdc=1&_rdr", "https://www.instagram.com/croquezoutaouais/"], "postal_prefix": "J8R", "phone": "819-663-7665", "regions_mentioned": ["Outaouais"]}
3009 +{"domain": "rebellesdesbois.com", "urls": ["https://rebellesdesbois.com"], "names": ["Rebelles des Bois"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Saguenay Chicoutimi boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Saguenay"]}
2914 3010 {"domain": "rebon-quebec.com", "urls": ["https://rebon-quebec.com/"], "names": ["ALICE&AMBRE INC. (ReBon)"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/alice-ambre-inc-rebon"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0K", "phone": null, "regions_mentioned": ["Lanaudière"]}
2915 3011 {"domain": "recettesdici.com", "urls": ["https://www.recettesdici.com/"], "names": ["Fous du fromage", "Laiterie Charlevoix", "Famille Migneron de Charlevoix", "Fromagerie Laiterie des Coteaux", "Fromagerie P'tit Plaisir", "Trappe à Fromage de l'Outaouais", "Microlaiterie Riverin du Lac", "Maison Riviera", "Les Fromagiers de la Table Ronde", "Les Fromages Latino", "Les Dépendances", "Le Fromage au Village", "Laiterie Laroche", "Laiterie de Coaticook", "Lait Charbonneau", "Lactalis Canada - Victoriaville", "La Moutonnière inc.", "Kingsey", "Fromages Saputo – Montréal", "Fromages Saputo – Mont-Laurier", "Fromages de l'isle d'Orléans", "Fromages biobio (affineur)", "Fromagerie Victoria", "Fromagerie St-Laurent", "Fromagerie St-Guillaume", "Fromagerie St-Fidèle", "Fromagerie Saint-Benoît-du-Lac", "Fromagerie Roy", "Fromagerie Rang 9", "Fromagerie Qualité Summum", "Fromagerie Pépite d'or", "Fromagerie Proulx", "Fromagerie Port-Joli", "Fromagerie Polyethnique inc.", "Fromagerie Perron", "Fromagerie Nouvelle France", "Fromagerie Médard", "Fromagerie Montebello", "Fromagerie Missiska", "Fromagerie Marie Kadé", "Fromagerie Les Rivières", "Fromagerie les Broussailles", "Fromagerie Lemaire", "Fromagerie Lehmann", "Fromagerie Le P'tit Train du Nord", "Fromagerie Le Métayer", "Fromagerie Le Mouton Blanc", "Fromagerie Le Détour", "Fromagerie Le Chant des Fromages", "Fromagerie Le Campagnard", "Fromagerie La Vache à Maillotte", "Fromagerie La Suisse Normande", "Fromagerie La Station", "Fromagerie La Normandinoise", "Fromagerie La Chaudière", "Fromagerie La Cabriole", "Fromagerie La Bourgade", "Fromagerie l'Autre Versant", "Fromagerie L'Ancêtre", "Fromagerie Hamel", "Fromagerie Gilbert", "Fromagerie Fromabitibi", "Fromagerie Fritz Kaiser", "Fromagerie Etchemin", "Fromagerie d’Oka - Agropur", "Fromagerie du Terroir de Bellechasse", "Fromagerie du Presbytère", "Fromagerie du Pied-De-Vent", "Fromagerie du Littoral", "Fromagerie du Champ à la Meule", "Fromagerie Deschaillons", "Fromagerie des Grondines", "Fromagerie des Cantons", "Fromagerie des Basques", "Fromagerie de St-Hyacinthe - Agropur", "Fromagerie de Notre-Dame-du-Bon-Conseil - Agropur", "Fromagerie de l'Isle", "Fromagerie de Granby – Agropur", "Fromagerie de Beauceville – Agropur", "Fromagerie Champêtre", "Fromagerie Boréalait", "Fromagerie Boivin", "Fromagerie Blackburn", "Fromagerie Bergeron", "Fromagerie Bel Canada", "Fromagerie au Pays des Bleuets", "Fromagerie Amafaçon", "Fromagerie Allen", "Fromagerie Alexis de Portneuf – Saint-Raymond", "Fromagerie Alexis de Portneuf – Mont-Laurier", "Fromagerie 1860 DuVillage", "Fromage Warwick", "Ferme Vallée Verte 1912", "Ferme Phylum", "Bouchard Artisan Bio", "1001 Fondues", "Gasper"], "sources": ["fromagesdici"], "source_pages": ["https://www.fromagesdici.com/fr/fromageries/fous-du-fromage", "https://www.fromagesdici.com/fr/fromageries/laiterie-charlevoix", "https://www.fromagesdici.com/fr/fromageries/maison-daffinage-maurice-dufour-inc", "https://www.fromagesdici.com/fr/fromageries/fromagerie-laiterie-des-coteaux", "https://www.fromagesdici.com/fr/fromageries/fromagerie-ptit-plaisir", "https://www.fromagesdici.com/fr/fromageries/trappe-a-fromage-de-l-outaouais", "https://www.fromagesdici.com/fr/fromageries/microlaiterie-riverin-du-lac", "https://www.fromagesdici.com/fr/fromageries/maison-riviera", "https://www.fromagesdici.com/fr/fromageries/fromagiers-de-la-table-ronde", "https://www.fromagesdici.com/fr/fromageries/les-fromages-latino", "https://www.fromagesdici.com/fr/fromageries/les-dependances", "https://www.fromagesdici.com/fr/fromageries/fromage-au-village", "https://www.fromagesdici.com/fr/fromageries/laiterie-laroche", "https://www.fromagesdici.com/fr/fromageries/laiterie-de-coaticook", "https://www.fromagesdici.com/fr/fromageries/lait-charbonneau", "https://www.fromagesdici.com/fr/fromageries/lactalis-canada-victoriaville", "https://www.fromagesdici.com/fr/fromageries/la-moutonniere-inc", "https://www.fromagesdici.com/fr/fromageries/kingsey", "https://www.fromagesdici.com/fr/fromageries/fromages-saputo-montreal", "https://www.fromagesdici.com/fr/fromageries/fromages-saputo-mont-laurier", "https://www.fromagesdici.com/fr/fromageries/fromages-de-lisle-dorleans", "https://www.fromagesdici.com/fr/fromageries/fromages-biobio-affineur", "https://www.fromagesdici.com/fr/fromageries/la-fromagerie-victoria", "https://www.fromagesdici.com/fr/fromageries/fromagerie-st-laurent", "https://www.fromagesdici.com/fr/fromageries/fromagerie-st-guillaume", "https://www.fromagesdici.com/fr/fromageries/fromagerie-st-fidele", "https://www.fromagesdici.com/fr/fromageries/abbaye-de-saint-benoit-du-lac", "https://www.fromagesdici.com/fr/fromageries/fromagerie-roy", "https://www.fromagesdici.com/fr/fromageries/fromagerie-eco-delices", "https://www.fromagesdici.com/fr/fromageries/fromagerie-qualite-summum", "https://www.fromagesdici.com/fr/fromageries/fromagerie-pepite-dor", "https://www.fromagesdici.com/fr/fromageries/fromagerie-proulx", "https://www.fromagesdici.com/fr/fromageries/fromagerie-port-joli", "https://www.fromagesdici.com/fr/fromageries/bedouin", "https://www.fromagesdici.com/fr/fromageries/fromagerie-perron", "https://www.fromagesdici.com/fr/fromageries/fromagerie-nouvelle-france", "https://www.fromagesdici.com/fr/fromageries/fromagerie-medard", "https://www.fromagesdici.com/fr/fromageries/fromagerie-montebello", "https://www.fromagesdici.com/fr/fromageries/fromagerie-missiska", "https://www.fromagesdici.com/fr/fromageries/fromagerie-marie-kade", "https://www.fromagesdici.com/fr/fromageries/fromagerie-les-rivieres", "https://www.fromagesdici.com/fr/fromageries/fromagerie-les-broussailles", "https://www.fromagesdici.com/fr/fromageries/fromagerie-lemaire", "https://www.fromagesdici.com/fr/fromageries/fromagerie-lehmann", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-p-tit-train-du-nord", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-metayer", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-mouton-blanc", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-detour", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-chant-des-fromages", "https://www.fromagesdici.com/fr/fromageries/fromagerie-le-campagnard", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-vache-a-maillotte", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-suisse-normande", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-station", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-normandinoise", "https://www.fromagesdici.com/fr/fromageries/fromages-la-chaudiere", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-cabriole", "https://www.fromagesdici.com/fr/fromageries/fromagerie-la-bourgade", "https://www.fromagesdici.com/fr/fromageries/fromagerie-l-autre-versant", "https://www.fromagesdici.com/fr/fromageries/fromagerie-lancetre", "https://www.fromagesdici.com/fr/fromageries/fromagerie-hamel", "https://www.fromagesdici.com/fr/fromageries/fromagerie-gilbert", "https://www.fromagesdici.com/fr/fromageries/fromagerie-fromabitibi", "https://www.fromagesdici.com/fr/fromageries/fritz-kaiser", "https://www.fromagesdici.com/fr/fromageries/fromagerie-etchemin", "https://www.fromagesdici.com/fr/fromageries/fromagerie-oka", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-terroir-de-bellechasse", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-presbytere", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-pied-de-vent", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-littoral", "https://www.fromagesdici.com/fr/fromageries/fromagerie-du-champ-a-la-meule", "https://www.fromagesdici.com/fr/fromageries/fromagerie-deschaillons", "https://www.fromagesdici.com/fr/fromageries/fromagerie-des-grondines", "https://www.fromagesdici.com/fr/fromageries/fromagerie-des-cantons", "https://www.fromagesdici.com/fr/fromageries/fromagerie-des-basques", "https://www.fromagesdici.com/fr/fromageries/agropur", "https://www.fromagesdici.com/fr/fromageries/agropur-notre-dame-du-bon-conseil", "https://www.fromagesdici.com/fr/fromageries/fromagerie-de-l-isle", "https://www.fromagesdici.com/fr/fromageries/fromagerie-de-granby-agropur", "https://www.fromagesdici.com/fr/fromageries/fromagerie-de-beauceville-agropur", "https://www.fromagesdici.com/fr/fromageries/fromagerie-champetre", "https://www.fromagesdici.com/fr/fromageries/fromagerie-borealait", "https://www.fromagesdici.com/fr/fromageries/fromagerie-boivin", "https://www.fromagesdici.com/fr/fromageries/fromagerie-blackburn", "https://www.fromagesdici.com/fr/fromageries/fromagerie-bergeron", "https://www.fromagesdici.com/fr/fromageries/fromagerie-bel-canada", "https://www.fromagesdici.com/fr/fromageries/fromagerie-au-pays-des-bleuets", "https://www.fromagesdici.com/fr/fromageries/fromagerie-amafacon", "https://www.fromagesdici.com/fr/fromageries/fromagerie-allen", "https://www.fromagesdici.com/fr/fromageries/fromagerie-alexis-de-portneuf-saint-raymond", "https://www.fromagesdici.com/fr/fromageries/fromagerie-alexis-de-portneuf-mont-laurier", "https://www.fromagesdici.com/fr/fromageries/la-fromagerie-1860-duvillage-inc", "https://www.fromagesdici.com/fr/fromageries/fromage-warwick", "https://www.fromagesdici.com/fr/fromageries/ferme-vallee-verte-1912", "https://www.fromagesdici.com/fr/fromageries/ferme-phylum", "https://www.fromagesdici.com/fr/fromageries/bouchard-artisan-bio", "https://www.fromagesdici.com/fr/fromageries/1001-fondues", "https://www.fromagesdici.com/fr/fromageries/gasper"], "socials": ["https://www.facebook.com/fromagesdici", "https://www.youtube.com/channel/UCxSGDuWDPFOvNy7xP_LylcA", "https://www.instagram.com/fromages.dici/", "https://www.pinterest.ca/fromagesdici/", "https://www.laiteriecharlevoix.com/fr", "http://www.laiteriechalifoux.com", "https://fromagerieproulx.com/", "https://www.facebook.com/fromagerielesrivieres/", "https://www.facebook.com/Fromagerie-le-campagnard-608663716006909/", "https://www.facebook.com/people/Fromagerie-LAutre-Versant/100064447851405/", "https://fr-ca.facebook.com/Champalameule/", "https://www.facebook.com/FromagerieDeschaillons/", "https://www.facebook.com/borealait/", "https://www.facebook.com/pages/category/Cheese-Shop/Ferme-Phylum-2274864726112534/", "https://www.facebook.com/Gasper-217682308665189/"], "postal_prefix": "G0A", "phone": "418 829-0177", "regions_mentioned": ["Abitibi", "Bas-Saint-Laurent", "Centre-du-Québec", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue", "Îles-de-la-Madeleine", "Laval"]}
2916 3012 {"domain": "recoltesdesamhain.com", "urls": ["https://recoltesdesamhain.com/"], "names": ["Les récoltes de Samhain"], "sources": ["alimentsduquebec_ent", "croquezoutaouais"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-recoltes-de-samhain", "https://www.croquezoutaouais.com/entreprises/les-recoltes-de-samhain/"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/croquezloutaouais/", "https://www.instagram.com/croquezoutaouais", "https://web.facebook.com/croquezloutaouais/?_rdc=1&_rdr", "https://www.instagram.com/croquezoutaouais/"], "postal_prefix": "J9E", "phone": "819-441-3581", "regions_mentioned": ["Outaouais"]}
@@ -2990,9 +3086,10 @@
2990 3086 {"domain": "rucherboltonnois.net", "urls": ["https://www.rucherboltonnois.net/Marche?fbclid=IwZXh0bgNhZW0CMTAAAR2PawM0yzY1NRuiiYbQC4lRgFHnb0ID12KuK4p-IWHdFQILINKa9Kj8I-w_aem_FacezBqMvHLGVvznlqtu0g", "https://rucherboltonnois.net/Accueil.aspx"], "names": ["Créateurs", "Marché des Fêtes de Bolton-Est"], "sources": ["createursdesaveurs", "marchespublics"], "source_pages": ["https://createursdesaveurs.com/createurs/marche-public-bolton-est/", "https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-bolton-est-le-rucher-boltonnois/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/MarchePublicBoltonEst", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-public-bolton-est%2F&t=March%C3%A9%20public%20Bolton-Est", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-public-bolton-est%2F&text=March%C3%A9%20public%20Bolton-Est", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-public-bolton-est%2F&title=March%C3%A9%20public%20Bolton-Est&summary=", "https://www.facebook.com/marchespublicsqc", "https://www.linkedin.com/company/marches-publics-du-quebec/", "https://www.instagram.com/marchespublicsqc/", "https://www.youtube.com/channel/UCtwIcRX4_9l0XsOT7MgjFQQ"], "postal_prefix": "J0E", "phone": "(438) 837-0560", "regions_mentioned": ["Cantons-de-l'Est"]}
2991 3087 {"domain": "rucherdesframboisiers.ca", "urls": ["http://rucherdesframboisiers.ca"], "names": ["PRODUCTEURS/TRANSFORMATEURS"], "sources": ["gaspesiegourmande"], "source_pages": ["https://gaspesiegourmande.com/producteurs-transformateurs?id=480&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=480&amp;Filtre=1&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=480&amp;Filtre=6&amp;FiltreSec=4"], "socials": ["https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": "G0C", "phone": "418 759-3027", "regions_mentioned": ["Gaspésie"]}
2992 3088 {"domain": "ruchersdesaulnaies.ca", "urls": ["http://www.ruchersdesaulnaies.ca"], "names": ["Les ruchers des aulnaies inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-ruchers-des-aulnaies-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G0R", "phone": null, "regions_mentioned": ["Chaudière-Appalaches"]}
3089 +{"domain": "rudimenterre.com", "urls": ["https://rudimenterre.com/pages/projet/le-projet"], "names": ["RUDIMENTERRE"], "sources": ["search_sweep_cmaq"], "source_pages": ["RUDIMENTERRE Carole Briet céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
2993 3090 {"domain": "ruisseau.ca", "urls": ["https://ruisseau.ca/"], "names": ["Chalet du Ruisseau"], "sources": ["laurentidesjenmange"], "source_pages": ["https://laurentidesjenmange.ca/membre/chalet-du-ruisseau"], "socials": ["https://www.facebook.com/laurentidesjm/", "https://www.instagram.com/laurentidesjenmange/", "https://www.facebook.com/chaletduruisseau0"], "postal_prefix": "J7N", "phone": "(450) 258-3176", "regions_mentioned": ["Laurentides"]}
2994 3091 {"domain": "rusticafoods.com", "urls": ["http://www.rusticafoods.com"], "names": ["Les Aliments Rustica Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-aliments-rustica-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H1J", "phone": null, "regions_mentioned": ["Montréal"]}
2995 −{"domain": "rustictac.ca", "urls": ["https://rustictac.ca/"], "names": ["Rustic-Tac"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/rustic-tac"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J8B", "phone": "514 847-9799", "regions_mentioned": []}
3092 +{"domain": "rustictac.ca", "urls": ["https://rustictac.ca/", "https://rustictac.ca/collections/montres-pour-homme"], "names": ["Rustic-Tac"], "sources": ["lesproduitsduquebec_ent", "search_sweep_bijoux"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/rustic-tac", "montres québécoises marque boutique en ligne"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J8B", "phone": "514 847-9799", "regions_mentioned": ["Québec"]}
2996 3093 {"domain": "rustikbison.ca", "urls": ["https://www.rustikbison.ca/", "https://www.rustikbison.ca/collections/tous-les-produits", "https://www.rustikbison.ca/pages/points-de-vente"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/rustik-bison/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/profile.php?id=100091826342668", "https://www.instagram.com/rustik.bison/?hl=fr", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Frustik-bison%2F&t=Rustik%20Bison", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Frustik-bison%2F&text=Rustik%20Bison", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Frustik-bison%2F&title=Rustik%20Bison&summary="], "postal_prefix": "J0B", "phone": "(819) 349-7023", "regions_mentioned": ["Cantons-de-l'Est"]}
2997 3094 {"domain": "s210atelierderoues.com", "urls": ["https://s210atelierderoues.com/", "https://s210atelierderoues.com"], "names": ["Station 210 - Atelier de roues"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/station-210-atelier-de-roues"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J0V", "phone": "514 847-9799", "regions_mentioned": ["Laurentides"]}
2998 3095 {"domain": "s7d9.scene7.com", "urls": ["https://s7d9.scene7.com/is/content/SAQ/rapport-annuel-2015-16-fr"], "names": ["lire en ligne"], "sources": ["wikipedia_lists"], "source_pages": ["https://fr.wikipedia.org/wiki/Distilleries_au_Qu%C3%A9bec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
@@ -3121,13 +3218,13 @@
3121 3218 {"domain": "simplementlebeaumarche.com", "urls": ["https://www.simplementlebeaumarche.com/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/le-beau-marche/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/LeBeauMarche.Estd2022", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fle-beau-marche%2F&t=Le%20Beau%20March%C3%A9", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fle-beau-marche%2F&text=Le%20Beau%20March%C3%A9", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fle-beau-marche%2F&title=Le%20Beau%20March%C3%A9&summary="], "postal_prefix": "J0E", "phone": "(819) 345-4974", "regions_mentioned": ["Cantons-de-l'Est"]}
3122 3219 {"domain": "sinaigourmet.com", "urls": ["https://sinaigourmet.com/about-us"], "names": ["Sinai Gourmet"], "sources": ["search_sweep_urban"], "source_pages": ["Sinai Gourmet sauce piquante Montréal site officiel boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
3123 3220 {"domain": "siprocaf.com", "urls": ["http://www.siprocaf.com"], "names": ["Siprocaf - Antica Cafeteria"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/siprocaf-antica-cafeteria"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J6X", "phone": null, "regions_mentioned": ["Lanaudière"]}
3124 −{"domain": "skylarpress.com", "urls": ["https://www.skylarpress.com/"], "names": ["Skylar Press - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/skylar-press-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2R", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
3221 +{"domain": "skylarpress.com", "urls": ["https://www.skylarpress.com/", "https://www.skylarpress.com/en"], "names": ["Skylar Press - CMAQ", "Skylar Press"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/skylar-press-cmaq", "Skylar Press Elena Radeva estampier papetier québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2R", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Montréal / Knowlton, QC"]}
3125 3222 {"domain": "sloedesign.ca", "urls": ["https://sloedesign.ca/"], "names": ["SLOE Design Studio - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/sloe-design-studio-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2Y", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
3126 3223 {"domain": "smartcatdesign.net", "urls": ["https://smartcatdesign.net/"], "names": ["Catégorie : Produits québécois à vendre", "Catégorie : Accessoires auto/camion", "Catégorie : Accessoires de cuisine", "Catégorie : Accessoires mode", "Catégorie : Agroalimentaire", "Catégorie : Alimentation", "Catégorie : Ameublement", "Catégorie : Articles pour animaux", "Catégorie : Artisanat", "Catégorie : Artistes peintre", "Catégorie : Arts et culture Québécois", "Catégorie : Bagages et sacs à mains", "Catégorie : Beauté", "Catégorie : Bijoux", "Catégorie : Chaussures", "Catégorie : Cosmétique", "Catégorie : Décoration et maison", "Catégorie : Hébergement touristique", "Catégorie : Jeux et divertissement", "Catégorie : Jouets pour enfants", "Catégorie : Livres auteur/auteure Québécois", "Catégorie : Mobilier de bureau", "Catégorie : Mode féminine", "Catégorie : Mode masculine", "Catégorie : Mode", "Catégorie : Pour entreprise", "Catégorie : Santé", "Catégorie : Services aux entreprises", "Catégorie : Services aux particuliers", "Catégorie : Vêtements pour enfants", "Produits québécois - Acheter québécois", "Housse de siège pour camion - Acheter québécois", "Housses de siège pour camionnette - Acheter québécois", "Rampe de pickup ou traileur 6pied et demi - Acheter québécois", "Accessoires auto et camion - Acheter québécois", "Bol à pain en bois - Acheter québécois", "Couteau à pain frêne - Acheter québécois", "Couteau à pain merisier - Acheter québécois", "Emballages à base de cire d'abeille : Kit de trois - Acheter québécois", "Emballages alimentaires à base de cire d'abeille - Acheter québécois", "Fresco-Sac de conservation de légume - Acheter québécois", "Mini cuillère en bois - Acheter québécois", "Spatule en bois - Acheter québécois", "Casquette brodée - Acheter québécois", "COL Châle fait a la main au québec - Acheter québécois", "Ici & Là - T-shirts et Souvenirs des régions - Acheter québécois", "Masques de protection - Acheter québécois", "Noeud papillon en bois - Acheter québécois", "Sac à main fait à partir d’une seule fermeture éclair - Acheter québécois", "Accessoires pour bébé - Acheter québécois", "agneau - Acheter québécois", "Beurre d'arachides Nature Nux Cremeux - Acheter québécois", "Beurre d'arachides Nature Nux Croquant - Acheter québécois", "Chaga aromatisé - Acheter québécois", "Gélules de chaga - Acheter québécois", "Ketchup Épicé - Acheter québécois", "L'Aventureux - Panier Cadeau - Acheter québécois", "Le Curieux - Panier cadeau - Acheter québécois", "L'Intrépide - Panier Cadeau - Acheter québécois", "Plants potagers, fines herbes et fleurs certifiés biologiques - Acheter québécois", "Produit d'agneau - Acheter québécois", "Tisane Digestion Divine - Acheter québécois", "Tisane Sommeil de Fées - Acheter québécois", "L'authentique potager - Acheter québécois", "Le Distingué 1 an - Acheter québécois", "Le petit carrefour déjeuner dîner - Acheter québécois", "Ma Boîte Rouge - Acheter québécois", "Plein l'Assiette - Acheter québécois", "Scone - Acheter québécois", "Tablette 24 pouces - Acheter québécois", "La Boutique Döggo pour les amoureux des animaux - Acheter québécois", "Manteau pour chien avec bottes intégrées - Acheter québécois", "Veterinov repense le bien-être animal - Acheter québécois", "Boule de Noël personnalisée - Acheter québécois", "Enfants Sauvages : L’excellence du design floral local au Québec - Acheter québécois", "Sculpture sur bois - Acheter québécois", "ABSTRAITE 36 X 18 PO - Acheter québécois", "Airs bucoliques - Acheter québécois", "Azur - Acheter québécois", "BIENVENUE DANS MON MONDE - Acheter québécois", "CEUX QUI PASSENT ET CEUX QUI RESTENT - Acheter québécois", "Chief Dan Georges - Acheter québécois", "Dans le sous-bois - Acheter québécois", "DANS MA BULLE - Acheter québécois", "Eaux Sôleil couchant - Acheter québécois", "ÊTRE AUX PETITS OISEAUX - Acheter québécois", "Flores rojas - Acheter québécois", "IL ÉTAIT UNE FOIS - Acheter québécois", "INTERACTONS POSITIVES - Acheter québécois", "LA CONJUGAISON - Acheter québécois", "LA GÉNÉREUSE - Acheter québécois", "LA ON EST AILLEURS - Acheter québécois", "LA SYNTAXE - Acheter québécois", "l'Art pour tous - Acheter québécois", "LE FUTUR SIMPLE - Acheter québécois", "LE JOUR DE LA TERRE - Acheter québécois", "Le participe 24 x 24 po - Acheter québécois", "LE PRÉSENT - Acheter québécois", "LE SOMMEIL PARADOXAL - Acheter québécois", "LE SUBJONCTIF - Acheter québécois", "L'ÉCLAT DE L'OMBRE - Acheter québécois", "L'envolée du soir - Acheter québécois", "LES VASES COMMUNICANTS - Acheter québécois", "L'IMPÉRATIF - Acheter québécois", "L'INFINITIF - Acheter québécois", "NE PAS S'ENFARGER DANS LES FLEURS DU TAPIS - Acheter québécois", "OUVRIR UNE PORTE - Acheter québécois", "Passiflora - Acheter québécois", "REGARDER PLUS HAUT, VOIR PLUS LOIN - Acheter québécois", "Songe d'été - Acheter québécois", "TOILE EN ACRYLIQUE -Le Party - Acheter québécois", "TOUT VIENT À POINT À QUI SAIT ATTENDRE - Acheter québécois", "UN VENT DE BONNE VOLONTÉ - Acheter québécois", "VOIR SOUS DES ANGLES DIFFÉRENTS - Acheter québécois", "With all my love - Acheter québécois", "Artsphotourbaine - Acheter québécois", "Capteur Chevreuil - Acheter québécois", "cartes de souhaits photographiques sans texte - Acheter québécois", "Flèche ours - Acheter québécois", "Itinérant - Acheter québécois", "LE VERBE - Acheter québécois", "Licorne Tirelire - Acheter québécois", "Sculpture sur bois Haut-relief, noyer cendré - Acheter québécois", "Scupture bas-relief - Acheter québécois", "Tableau personnalisé : Faites faire votre propriété - Acheter québécois", "Temps des sucres - Acheter québécois", "Trappeurs indien - Acheter québécois", "Valentins - Acheter québécois", "Arts et culture - Acheter québécois", "Bandeau femme - Acheter québécois", "Accessoires de produits de rasage pour hommes - Acheter québécois", "Crème contour des yeux \"L'éveil\" - Acheter québécois", "Crème de jour Collagène + - Acheter québécois", "Des soins pour votre peau aussi authentiques que le Québec", "Ensemble duo – Savon naturel exfoliant à l’argile - Acheter québécois", "Masques personnalisés - Acheter québécois", "Métamorphose, le kit minceur de la sorcière - Acheter québécois", "Primer \"camera ready\" - Acheter québécois", "Produit Clayton Shagal - Acheter québécois", "Savon ALOÈS et karité - Acheter québécois", "Savon Briques - Acheter québécois", "Shampooing solide - Acheter québécois", "Tisane Minceur-Bonheur - Acheter québécois", "Anse Lazio - Acheter québécois", "Boucles d'oreilles à gogo en argent 925 - Acheter québécois", "Bracelet double noir - Acheter québécois", "La Beauté - Acheter québécois", "L'Adorable - Acheter québécois", "Reynisfjara Beach - Acheter québécois", "Chaussure Gen3 standard - Acheter québécois", "Col gris femme ou homme - Acheter québécois", "Conception de site web sur mesure - Acheter québécois", "Bain de Lune - Acheter québécois", "Bain moussant Splash melon - Acheter québécois", "Boite de bonheur - Acheter québécois", "Brumes de Fées - Acheter québécois", "Déodorant naturel & sa pochette de recharge - Acheter québécois", "graisse d'ours et produits dérivés - Acheter québécois", "Poudre effervescente moussante - Acheter québécois", "Poudre moussante et effervescente - Acheter québécois", "Produits Naturels - Acheter québécois", "Savon Grande Douceur - Acheter québécois", "Savon naturel (60 sortes ) - Acheter québécois", "SAVONS NATURELS ET VEGAN POUR HOMMES - Acheter québécois", "Coussin de bureau ergonomique - Acheter québécois", "Coussin de dossier antibactérien - Acheter québécois", "Boutique en ligne pour Artisan - Acheter québécois", "Art en bois flotté - Acheter québécois", "Balayeuse centrale résidentielle - Acheter québécois", "Bougie 200g - Acheter québécois", "Bougie de soya avec mèche en bois qui crépite. Canneberge vanille et pêche 240g. Pot décoratif en étain or.  35$", "bougie de soya 6oz - Acheter québécois", "Cadeau - Acheter québécois", "Chandelier en bois flotté - Acheter québécois", "chandelles collection DE LUXE - Acheter québécois", "Aménager sa cour arrière : par où commencer ?", "enseigne - Acheter québécois", "Lessive à la cendre de bois franc - Acheter québécois", "Produits Naturels , Chandelles parfumées - Acheter québécois", "Rénovation résidentielle : quand l’organisation fait toute la différence", "Store magnétique PAOMA - Acheter québécois", "Toile solaire tendue aimantée PAOMA - Acheter québécois", "Écharpe - Acheter québécois", "Fragrance - Acheter québécois", "Km-42 - Location de chalets à Val-David - Acheter québécois", "HOUSSE DE SIÈGE POUR AUTOBUS - Acheter québécois", "Immunocal Derma - Acheter québécois", "Immunocal - Acheter québécois", "Impression murale, autocollant, affiche et lettrage - Acheter québécois", "Livre à colorier de Noel - Acheter québécois", "Abécédaire aimanté en bois '' les animaux moins connus'' - Acheter québécois", "La Simplicité - Acheter québécois", "L'Inspirante - Acheter québécois", "Box littéraire Le vent en parle encore - Acheter québécois", "Box littéraire Leslie & Coco - Acheter québécois", "Cooler Garçon d'horreur - Acheter québécois", "Livre Les derniers Patriotes", "Livre et cartes Les Celkies - Acheter québécois", "LIVRE - Acheter québécois", "Owhara - Acheter québécois", "Lueur Essence 'Yell - Acheter québécois", "Solution VALET - Acheter québécois", "Extension de maternité Kokoala - Acheter québécois", "T-shirt Mamanifique - Acheter québécois", "Tuques et pompons - Acheter québécois", "Bas d’alpaga Thermal – Fait au Québec - Acheter québécois", "Urantia Reference - Acheter québécois", "Produits et services aux entreprises - Acheter québécois", "Santé - Acheter québécois", "À propos de Immunocal - Acheter québécois", "Bourse de l'estime de soi - Acheter québécois", "Bourse de magie-thérapie de fortification - Acheter québécois", "Bourse de magie-thérapie de régénération - Acheter québécois", "La ceinture universelle Ceinturine se porte sous les vêtements", "Mal de dos et de cou en télétravail : impacts réels et rôle de la chiropratique", "Contralenta pour les articulations - Acheter québécois", "Démarrer son entreprise à domicile - Acheter québécois", "Immunocal énergie - Acheter québécois", "Immunocal Platinum - Acheter québécois", "Informez votre clientèle a propos de Immunocal - Acheter québécois", "K-21 suppléments minéraux - Acheter québécois", "Masque de protection antiprojection - Acheter québécois", "Masque facial de protection - Acheter québécois", "Masque - Acheter québécois", "Novarnica - Acheter québécois", "Omega gen V - Acheter québécois", "Sani-K - Gel désinfectant pour les mains 4 litres Antibactérien - Acheter québécois", "Seren-T 200 - Acheter québécois", "Vap-O-Sol, décongestionnant aux huiles essentielles - Acheter québécois", "Vaporisateur antibactérien aux odeurs du Québec - Acheter québécois", "Vinaigre des 4 voleurs - Acheter québécois", "Yoga prénatal : se préparer à accoucher avec plus de confiance", "Adjointe Virtuelle - Acheter québécois", "Comment améliorer la performance opérationnelle d’une PME québécoise : cinq leviers structurants", "Conception web sur la Côte-Nord : Améliorez la visibilité de votre entreprise locale - Acheter québécois", "Création de site internet - Acheter québécois", "Votre boutique en ligne - Acheter québécois", "Dépannage WordPress - Acheter québécois", "Entretien ménager - Acheter québécois", "Expert en référencement - Acheter québécois", "Formation WordPress - Acheter québécois", "Gestion en marketing numérique - Acheter québécois", "Hébergement site web - Acheter québécois", "Mon-hypotheque.ca est a vendre - Acheter québécois", "Optimiser votre présence en ligne : stratégies essentielles pour le succès numérique - Acheter québécois", "Party de Bureau - Soirée d'entreprise - Acheter québécois", "Pieces de remorques et accessoires - Acheter québécois", "Polyurethanes et Époxys haute performance - Acheter québécois", "Programme de Subventions de Marketing Local - Acheter québécois", "Qui choisir pour la création d'un site web à Québec? - Acheter québécois", "Référencement naturel en promotion - Acheter québécois", "Référencement naturel - Acheter québécois", "Remorque Fermée ou Utilitaire - Acheter québécois", "Réseautage québécois - Acheter québécois", "Site web en promotion - Acheter québécois", "Site web professionnel - Acheter québécois", "Stickers personnalisés - Acheter québécois", "Tenue de livres - Acheter québécois", "Urantia Reference change de nom… et devient REFERIS, la nouvelle façon d’attirer des clients sans dépenser en pub. - Acheter québécois", "Votre site web est-il efficace? - Acheter québécois", "Cuisiner pour ses voisins : comment les plateformes de repas maison transforment l’alimentation locale", "Comment choisir son courtier immobilier - Acheter québécois", "Les meilleurs installateurs de thermopompes dans Lanaudière en 2026", "Les meilleurs évaluateurs de véhicules antiques au Québec en 2026", "Soumissions pour déménagement - Acheter québécois", "Tableaux artistes peintre québécois - Acheter québécois", "tablette pour volant auto camion et camion lourd - Acheter québécois", "Duo tablier et 2 poignees", "Tourisme au Québec - Acheter québécois", "Trousse santé duo pour client - Acheter québécois", "Tuque 100% Alpaga avec pompon - Acheter québécois", "Pantalon évolutif 12m-3t halloween - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/category/produits-quebecois-a-vendre/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/accessoires-auto-camion/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/accessoires-de-cuisine/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/accessoires-mode/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/agroalimentaire/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/alimentation/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/ameublement/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/articles-pour-animaux/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/artisanat/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/artistes-peintre/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/arts-et-culture-quebecois/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/bagages-et-sacs-a-mains/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/beaute/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/bijoux/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/chaussures/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/cosmetique/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/decoration-et-maison/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/hebergement-touristique/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/jeux-et-divertissement/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/jouets-pour-enfants/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/mobilier-de-bureau/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/mode-feminine/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/mode-masculine/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/mode/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/pour-entreprise/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/sante/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/services-aux-entreprises/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/services-aux-particuliers/", "https://acheterquebecois.ca/category/produits-quebecois-a-vendre/vetements-pour-enfants/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-auto-camion/housse-de-siege-pour-camion/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-auto-camion/housses-de-siege-pour-camionnette/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-auto-camion/rampe-de-pickup-ou-traileur-6pied-et-demi/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-auto-et-camion/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/bol-a-pain-en-bois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/couteau-a-pain-frene/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/couteau-a-pain-merisier/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/emballages-a-base-de-cire-dabeille-kit-de-trois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/emballages-alimentaires-a-base-de-cire-dabeille/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/fresco-sac-de-conservation-de-legume/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/mini-cuillere-en-bois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-de-cuisine/spatule-en-bois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-mode/casquette-brodee/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-mode/col-chale-fait-a-la-main-au-quebec/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-mode/ici-la-t-shirts-et-souvenirs-des-regions/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-mode/masques-de-protection/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-mode/noeud-papillon-en-bois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-mode/sac-a-main-fait-a-partir-dune-seule-fermeture-eclair/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/accessoires-pour-bebe-quebecois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/agneau/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/beurre-darachides-nature-nux-cremeux-2/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/beurre-darachides-nature-nux-cremeux/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/beurre-darachides-nature-nux-croquant/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/chaga-aromatise/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/gelules-de-chaga/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/ketchup-epice/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/laventureux-panier-cadeau/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/le-curieux-panier-cadeau/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/lintrepide/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/plants-potagers-fines-herbes-et-fleurs-certifies-biologiques/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/produit-dagneau/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/tisane-digestion-divine/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/tisane-sommeil-de-fees/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/alimentation/lauthentique-potager/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/alimentation/le-distingue-1-an/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/alimentation/le-petit-carrefour-dejeuner-diner-2/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/alimentation/ma-boite-rouge/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/alimentation/plein-lassiette/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/alimentation/scone/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/ameublement/tablette-24-pouces/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/articles-pour-animaux/la-boutique-doggo-pour-les-amoureux-des-animaux/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/articles-pour-animaux/manteau-pour-chien-avec-bottes-integrees/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/articles-pour-animaux/veterinov-repense-le-bien-etre-animal/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artisanat/boule-de-noel-personnalisee/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artisanat/enfants-sauvages-lexcellence-du-design-floral-local-au-quebec/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artisanat/sculpture-sur-bois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/abstraite-36-x-18-po/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/airs-bucoliques/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/azur/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/bienvenue-dans-mon-monde/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/ceux-qui-passent-et-ceux-qui-restent/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/chief-dan-georges/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/dans-le-sous-bois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/dans-ma-bulle/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/eaux-soleil-couchant/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/etre-aux-petits-oiseaux/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/flores-rojas/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/il-etait-une-fois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/interactons-positives/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/la-conjugaison/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/la-genereuse/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/la-on-est-ailleurs/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/la-syntaxe/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/lart-pour-tous/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/le-futur-simple/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/le-jour-de-la-terre/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/le-participe-24-x-24-po/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/le-present/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/le-sommeil-paradoxal/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/le-subjonctif/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/leclat-de-lombre/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/lenvolee-du-soir/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/les-vases-communicants/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/limperatif/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/linfinitif-2/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/linfinitif/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/ne-pas-senfarger-dans-les-fleurs-du-tapis/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/ouvrir-une-porte/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/passiflora/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/regarder-plus-haut-voir-plus-loin/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/songe-dete/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/toile-en-acrylique-le-party/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/tout-vient-a-point-a-qui-sait-attendre/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/un-vent-de-bonne-volonte/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/voir-sous-des-angles-differents/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/artistes-peintre/with-all-my-love/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/artsphotourbaine/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/capteur-chevreuil/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/cartes-de-souhaits-photographiques-sans-texte/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/fleche-ours/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/itinerant/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/le-verbe/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/licorne-tirelire/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/sculpture-sur-bois-haut-relief-noyer-cendre/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/scupture-bas-relief/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/tableau-personnalise-faites-faire-votre-propriete/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/temps-des-sucres/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/trappeurs-indien/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/valentins/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bandeau-femme/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/accessoires-de-produits-de-rasage-pour-hommes/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/creme-contour-des-yeux-leveil/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/creme-de-jour-collagene/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/des-soins-pour-votre-peau-aussi-authentiques-que-le-quebec/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/ensemble-duo-savon-feutre-avec-de-la-fibre-dalpaga-savon-naturel-exfoliant-a-largile/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/masques-personnalises/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/metamorphose-le-kit-minceur-de-la-sorciere/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/primer-camera-ready/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/produit-clayton-shagal/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/savon-aloes-et-karite/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/savon-briques/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/shampooing-solide/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/tisane-minceur-bonheur/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/anse-lazio/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/boucles-doreilles-a-gogo-en-argent-925/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/bracelet-double-noir/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/la-beaute/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/lucky-bay/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/bijoux/reynisfjara-beach/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/chaussures/chaussure-gen3-standard/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/col-gris-femme-ou-homme/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/conception-de-site-web-sur-mesure/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/bain-de-lune/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/bain-moussant-splash-melon/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/boite-de-bonheur/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/brumes-de-fees/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/deodorant-naturel-sa-pochette-de-recharge/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/graisse-dours-et-produit-deriver/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/poudre-effervescente-moussante/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/poudre-moussante-et-effervescente/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/produits-naturels/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/savon-grande-douceur/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/savon-naturel-60-sortes/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/savons-naturels-et-vegan-pour-hommes/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/coussin-de-bureau-ergonomique/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/coussin-de-dossier-antibacterien/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/creation-boutique-pour-artisan/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/art-en-bois-flotte/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/balayeuse-centrale-residentielle/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/bougie-200g/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/bougie-canneberge-vanille-et-peche/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/bougie-de-soya-6oz/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/cadeau/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/chandelier-en-bois-flotte/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/chandelles-collection-de-luxe/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/comment-reussir-lamenagement-paysager-de-sa-cour-arriere/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/enseigne/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/lessive-a-la-cendre-de-bois-franc/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/produits-naturels-chandelles-parfumees/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/renovation-residentielle/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/store-magnetique-paoma/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/decoration-et-maison/toile-solaire-tendue-aimantee-paoma/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/echarpe/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/fragrance/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/hebergement-touristique/km-42-location-de-chalets-a-val-david/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/housse-de-siege-pour-autobus/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/immunocal-derma/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/immunocal/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/impression-murale-autocollant-affiche-et-lettrage/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/jeux-et-divertissement/livre-a-colorier-de-noel/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/jouets-pour-enfants/abecedaire-aimante-en-bois-les-animaux-moins-connus/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/la-simplicite/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/linspirante/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/box-litteraire-le-vent-en-parle-encore-2/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/box-litteraire-leslie-coco/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/cooler-garcon-dhorreur/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/les-derniers-patriotes/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/livre-et-cartes-les-celkies/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/livre/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/owhara/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/lueur-essence-yell/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/mobilier-de-bureau/solution-valet/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/mode-feminine/extension-de-maternite-kokoala/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/mode-feminine/t-shirt-mamanifique/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/mode-feminine/tuques-et-pompons/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/mode-masculine/bas-dalpaga-thermal-fait-au-quebec/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/pour-entreprise/urantia-reference/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/produits-et-services-aux-entreprises/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/a-propos-de-immunocal/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/bourse-de-lestime-de-soi/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/bourse-de-magie-therapie-de-fortification/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/bourse-de-magie-therapie-pour-regeneration/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/ceinture-universelle-pour-sac-urinaire/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/chiropratique-et-teletravail/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/contralenta-pour-les-articulations/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/demarrer-son-entreprise-a-domicile/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/immunocal-3/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/immunocal-booster-energie/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/immunocal-platinum/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/immunocal-un-complement-a-offrir-pour-votre-clientele/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/k-21-supplements/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/masque-de-protection-antiprojection/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/masque-facial-de-protection/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/masque/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/novarnica/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/omega-gen-v-2/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/sani-k-gel-desinfectant-pour-les-mains-4-litres-antibacterien/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/seren-t-200/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/vap-o-sol-decongestionnant-aux-huiles-essentielles/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/vaporisateur-antibacterien-aux-odeurs-du-quebec/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/vinaigre-des-4-voleurs/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/yoga-prenatal-pour-se-preparer-a-laccouchement/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/adjointe-virtuelle/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/ameliorer-la-performance-operationnelle-dune-pme/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/conception-web-sur-la-cote-nord-ameliorez-la-visibilite-de-votre-entreprise-locale/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/creation-de-site-internet/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/creation-dune-boutique-en-ligne/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/depannage-wordpress/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/entretien-menager/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/expert-en-referencement/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/formation-wordpress/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/gestion-en-marketing-numerique/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/hebergement-site-web/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/mon-hypotheque-ca-est-a-vendre/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/optimiser-votre-presence-en-ligne-strategies-essentielles-pour-le-succes-numerique/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/party-de-bureau-soiree-dentreprise/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/pieces-de-remorques-et-accessoires/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/polyurethanes-et-epoxys-haute-performance/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/programme-de-subventions-de-marketing-local/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/qui-choisir-pour-la-creation-dun-site-web-a-quebec/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/referencement-naturel-en-promotion/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/referencement-naturel/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/remorque-fermee-ou-utilitaire/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/reseautage-quebecois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/site-web-en-promotion/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/site-web-professionnel/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/stickers-personnalises/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/tenue-de-livres/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/urantia-reference-change-de-nom-et-devient-referis-la-nouvelle-facon-dattirer-des-clients-sans-depenser-en-pub/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-entreprises/votre-site-web-est-il-efficace/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-particuliers/commander-des-repas-faits-maison-pres-de-chez-moi/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-particuliers/comment-choisir-son-courtier-immobilier/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-particuliers/installation-de-thermopompes-dans-lanaudiere/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-particuliers/meilleurs-evaluateurs-de-vehicules-antiques-quebec/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/services-aux-particuliers/soumissions-pour-demenagement/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/tableaux-artistes-peintre-quebecois/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/tablette-pour-volant-auto-camion-et-camion-lourd/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/tablier-et-poignees/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/tourisme-au-quebec/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/trousse-sante-duo-pour-client/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/tuque-100-alpaga-avec-pompon/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/vetements-pour-enfants/pantalon-evolutif-12m-3t-halloween/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/", "https://www.facebook.com/Artsphotourbaine", "https://www.facebook.com/malimelo.co", "https://l.facebook.com/l.php?u=http%3A%2F%2Fwww.lueuressenceyell.com%2F%3Ffbclid%3DIwAR2ztf_dD43IYcc7xKtBmkPNt5sCpj_seSpEFhj0tgHEwPJmmM68zLfToC4&h=AT0UMCGNCIUkPKSF-nOxzqhsI381XGKNhKgpeZJvQ3IibHj2FOxR8UburB7DBTTm86F0mG3a4pMS2Nxybuvvh5kGmy4pWerdo_FK92kbvFAx24WxWRXaZsJdEmDqZ1H0380CnrtWTRE", "http://www.facebook.com/VotrePeauLeMeriteBien", "https://www.facebook.com/profile.php?id=100080176819100", "https://www.facebook.com/confection.dipe/?view_public_for=103257464819837", "https://www.facebook.com/groups/reseautagequebecois", "https://www.facebook.com/CScomptaservicesplus/"], "postal_prefix": "H1K", "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue", "Montreal", "Nord-du-Québec", "Côte-Nord"]}
3127 3224 {"domain": "smavinir.is", "urls": ["http://www.smavinir.is/"], "names": ["ÉCONOMUSÉE® de la sculpture sur bois"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-la-sculpture-sur-bois-4/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/Smavinir/?__xts__=68.ARC..."], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
3128 3225 {"domain": "smokehouse.ie", "urls": ["https://www.smokehouse.ie/", "https://www.smokehouse.ie/shop/"], "names": ["ÉCONOMUSÉE® du fumage de poisson"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-du-fumage-de-poisson/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/ConnemaraSmokehouse/", "https://www.instagram.com/connemarasmokehouse/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
3129 3226 {"domain": "snobinard.com", "urls": ["https://www.snobinard.com"], "names": ["Cabane du Snobinard"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/cabane-du-snobinard/"], "socials": ["https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/cabane-du-snobinard/", "https://twitter.com/intent/tweet?text=Cabane+du+Snobinard https://www.erabledici.ca/fr/erabliere/cabane-du-snobinard/"], "postal_prefix": "J0K", "phone": "450 839-6210", "regions_mentioned": ["Lanaudière"]}
3130 −{"domain": "snoland.com", "urls": ["https://www.snoland.com/fr"], "names": ["Sacs en Cuir Snoland - CMAQ", "SNOLAND"], "sources": ["lesproduitsduquebec_ent", "search_sweep_nonfood"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/sacs-en-cuir-snoland-cmaq", "cuir artisanal Québec boutique en ligne sacs"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
3227 +{"domain": "snoland.com", "urls": ["https://www.snoland.com/fr", "https://www.snoland.com/en/page/about-us"], "names": ["Sacs en Cuir Snoland - CMAQ", "Snoland", "SNOLAND"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq", "search_sweep_nonfood"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/sacs-en-cuir-snoland-cmaq", "Snoland Diana Serrano maroquinier québec", "cuir artisanal Québec boutique en ligne sacs"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Montréal, QC"]}
3131 3228 {"domain": "societelaurentide.ca", "urls": ["https://societelaurentide.ca/re-sources/", "https://societelaurentide.ca/peinture-laurentide/peintures-architecturales/"], "names": ["Peinture Laurentide"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/peinture-laurentide"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G9N", "phone": "514 847-9799", "regions_mentioned": []}
3132 3229 {"domain": "societesecrete.ca", "urls": ["http://www.societesecrete.ca"], "names": ["La Société secrète - Distillerie artisanale", "PRODUCTEURS/TRANSFORMATEURS"], "sources": ["distilleriesduquebec", "gaspesiegourmande"], "source_pages": ["https://distilleriesduquebec.com/fr/le-repertoire-des-distilleries/la-societe-secrete", "https://gaspesiegourmande.com/producteurs-transformateurs?id=500&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=500&amp;Filtre=1&amp;FiltreSec=3"], "socials": ["https://www.facebook.com/distillerielasocietesecrete", "https://www.instagram.com/distillerie_lasocietesecrete/?hl=fr", "https://www.facebook.com/distilleriedequebec/", "https://www.instagram.com/distilleriedequebec/", "https://www.linkedin.com/company/union-québécoise-des-microdistilleries/?originalSubdomain=ca", "https://www.youtube.com/@distilleriesqc", "https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": "G0C", "phone": null, "regions_mentioned": ["Gaspésie", "Îles-de-la-Madeleine"]}
3133 3230 {"domain": "soiecosmetiques.com", "urls": ["https://soiecosmetiques.com/product/leveil/", "https://soiecosmetiques.com/product/collagene/"], "names": ["Crème contour des yeux \"L'éveil\" - Acheter québécois", "Crème de jour Collagène + - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/creme-contour-des-yeux-leveil/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/creme-de-jour-collagene/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": "J8T", "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
@@ -3138,10 +3235,12 @@
3138 3235 {"domain": "sokette.ca", "urls": ["https://sokette.ca/"], "names": ["Sokette"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/sokette"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J7Z", "phone": "514 847-9799", "regions_mentioned": []}
3139 3236 {"domain": "solariumoptimum.com", "urls": ["https://solariumoptimum.com/qc/", "https://solariumoptimum.com"], "names": ["Solarium Optimum"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/solarium-optimum"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H7P", "phone": "514 847-9799", "regions_mentioned": ["Laval"]}
3140 3237 {"domain": "solem.ca", "urls": ["https://solem.ca"], "names": ["Solem"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/solem"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G8N", "phone": "514 847-9799", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
3141 −{"domain": "solioswatches.com", "urls": ["https://www.solioswatches.com/fr/?aftag=5b01ad0a11e33f2460721ab2c7feb60d&utm_medium=afocus", "https://www.solioswatches.com/fr"], "names": ["Solios", "Solios Watches"], "sources": ["icq_resolved", "search_sweep_urban"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/solioswatches/", "montres québécoises marque montréalaise boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
3238 +{"domain": "solioswatches.com", "urls": ["https://www.solioswatches.com/fr/?aftag=5b01ad0a11e33f2460721ab2c7feb60d&utm_medium=afocus", "https://www.solioswatches.com/fr"], "names": ["Solios", "Solios Watches"], "sources": ["icq_resolved", "search_sweep_bijoux", "search_sweep_urban"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/solioswatches/", "montres québécoises marque boutique en ligne", "montres québécoises marque montréalaise boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
3239 +{"domain": "solliart.com", "urls": ["https://solliart.com"], "names": ["L'Atelier Joaillerie Solli"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Lanaudière Laurentides boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Châteauguay, Montérégie"]}
3142 3240 {"domain": "solutioninfomedia.com", "urls": ["https://www.solutioninfomedia.com/"], "names": ["PRODUCTEURS/TRANSFORMATEURS", "COMPLICES"], "sources": ["gaspesiegourmande"], "source_pages": ["https://gaspesiegourmande.com/producteurs-transformateurs?id=406&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=407&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=408&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=414&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=415&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=518&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=420&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=421&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=422&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=424&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=435&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=436&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=442&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=443&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=444&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=445&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=446&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=448&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=449&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=455&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=456&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=457&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=458&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=460&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=461&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=463&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=614&amp;FiltreSec=5", "https://gaspesiegourmande.com/producteurs-transformateurs?id=464&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=465&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=466&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=467&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=615&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=616&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=470&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=471&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=472&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=473&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=475&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=480&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=547&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=612&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=491&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=613&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=492&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=493&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=495&amp;FiltreSec=5", "https://gaspesiegourmande.com/producteurs-transformateurs?id=498&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=500&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=485&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=486&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=504&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=611&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=508&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=509&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=513&amp;FiltreSec=6", "https://gaspesiegourmande.com/producteurs-transformateurs?id=514&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=516&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=517&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=520&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=521&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=522&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=523&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=524&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=525&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=529&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=542&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=543&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=544&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=545&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=546&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=548&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=551&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=552&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=553&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=618&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=554&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=558&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=560&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=617&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=619&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=564&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=597&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=598&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=603&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=404&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=405&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=411&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=607&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=412&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=413&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=416&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=417&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=418&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=409&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=423&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=426&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=427&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=428&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=429&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=430&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=431&amp;FiltreSec=1", "https://gaspesiegourmande.com/complices?id=432&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=608&amp;FiltreSec=5", "https://gaspesiegourmande.com/complices?id=438&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=440&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=441&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=447&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=450&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=451&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=453&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=454&amp;FiltreSec=6", "https://gaspesiegourmande.com/complices?id=468&amp;FiltreSec=1", "https://gaspesiegourmande.com/complices?id=494&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=501&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=503&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=505&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=506&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=609&amp;FiltreSec=5", "https://gaspesiegourmande.com/complices?id=510&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=511&amp;FiltreSec=6", "https://gaspesiegourmande.com/complices?id=512&amp;FiltreSec=6", "https://gaspesiegourmande.com/complices?id=534&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=536&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=537&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=538&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=539&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=540&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=610&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=561&amp;FiltreSec=6", "https://gaspesiegourmande.com/complices?id=563&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=606&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=565&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=566&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=568&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=569&amp;FiltreSec=5", "https://gaspesiegourmande.com/complices?id=571&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=573&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=479&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=575&amp;FiltreSec=1", "https://gaspesiegourmande.com/complices?id=576&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=581&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=582&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=567&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=590&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=591&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=478&amp;FiltreSec=2", "https://gaspesiegourmande.com/complices?id=584&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=585&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=574&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=586&amp;FiltreSec=1", "https://gaspesiegourmande.com/complices?id=588&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=550&amp;FiltreSec=3", "https://gaspesiegourmande.com/complices?id=592&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=593&amp;FiltreSec=1", "https://gaspesiegourmande.com/complices?id=595&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=600&amp;FiltreSec=4", "https://gaspesiegourmande.com/complices?id=602&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=424&amp;Filtre=1&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=448&amp;Filtre=1&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=461&amp;Filtre=1&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=480&amp;Filtre=1&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=500&amp;Filtre=1&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=542&amp;Filtre=1&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=543&amp;Filtre=1&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=544&amp;Filtre=1&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=545&amp;Filtre=1&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=518&amp;Filtre=2&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=443&amp;Filtre=2&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=463&amp;Filtre=2&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=464&amp;Filtre=2&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=473&amp;Filtre=2&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=547&amp;Filtre=2&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=486&amp;Filtre=2&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=525&amp;Filtre=2&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=529&amp;Filtre=2&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=546&amp;Filtre=2&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=548&amp;Filtre=2&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=435&amp;Filtre=3&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=442&amp;Filtre=3&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=443&amp;Filtre=3&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=461&amp;Filtre=3&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=464&amp;Filtre=3&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=475&amp;Filtre=3&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=613&amp;Filtre=3&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=498&amp;Filtre=3&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=521&amp;Filtre=3&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=524&amp;Filtre=3&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=597&amp;Filtre=3&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=598&amp;Filtre=3&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=603&amp;Filtre=3&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=404&amp;Filtre=3&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=443&amp;Filtre=5&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=463&amp;Filtre=5&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=498&amp;Filtre=5&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=407&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=414&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=415&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=518&amp;Filtre=6&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=422&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=435&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=436&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=442&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=443&amp;Filtre=6&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=445&amp;Filtre=6&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=455&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=456&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=457&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=458&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=461&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=466&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=467&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=475&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=480&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=493&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=509&amp;Filtre=6&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=514&amp;Filtre=6&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=516&amp;Filtre=6&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=553&amp;Filtre=6&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=407&amp;Filtre=7&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=421&amp;Filtre=7&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=422&amp;Filtre=7&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=461&amp;Filtre=7&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=467&amp;Filtre=7&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=495&amp;Filtre=7&amp;FiltreSec=5", "https://gaspesiegourmande.com/producteurs-transformateurs?id=552&amp;Filtre=7&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=553&amp;Filtre=7&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=406&amp;Filtre=8&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=518&amp;Filtre=8&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=443&amp;Filtre=8&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=461&amp;Filtre=8&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=614&amp;Filtre=8&amp;FiltreSec=5", "https://gaspesiegourmande.com/producteurs-transformateurs?id=467&amp;Filtre=8&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=475&amp;Filtre=8&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=613&amp;Filtre=8&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=495&amp;Filtre=8&amp;FiltreSec=5", "https://gaspesiegourmande.com/producteurs-transformateurs?id=504&amp;Filtre=8&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=517&amp;Filtre=8&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=520&amp;Filtre=8&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=551&amp;Filtre=8&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=408&amp;Filtre=9&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=446&amp;Filtre=9&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=449&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=465&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=616&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=470&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=471&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=472&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=475&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=612&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=491&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=492&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=522&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=523&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=618&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=554&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=558&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=560&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=617&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=619&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=564&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=597&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=598&amp;Filtre=9&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=603&amp;Filtre=9&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=404&amp;Filtre=9&amp;FiltreSec=2", "https://gaspesiegourmande.com/producteurs-transformateurs?id=420&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=444&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=460&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=464&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=466&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=467&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=615&amp;Filtre=10&amp;FiltreSec=3", "https://gaspesiegourmande.com/producteurs-transformateurs?id=613&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=485&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=611&amp;Filtre=10&amp;FiltreSec=4", "https://gaspesiegourmande.com/producteurs-transformateurs?id=508&amp;Filtre=10&amp;FiltreSec=3"], "socials": ["https://www.facebook.com/gaspesiegourmande/", "https://www.instagram.com/gaspesiegourmande/"], "postal_prefix": "G0E", "phone": "418 797-5059", "regions_mentioned": ["Gaspésie", "Montréal", "Bas-Saint-Laurent", "Côte-Nord"]}
3143 3241 {"domain": "solutionvalet.com", "urls": ["https://solutionvalet.com"], "names": ["Solution VALET - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/mobilier-de-bureau/solution-valet/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
3144 3242 {"domain": "soniaimbeault.ca", "urls": ["https://soniaimbeault.ca/en/pages/points-de-vente"], "names": ["Sonia Imbeault"], "sources": ["search_sweep_nonfood"], "source_pages": ["bijouterie créateur Bas-Saint-Laurent boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Bas-Saint-Laurent (Rimouski)"]}
3243 +{"domain": "sophiemanessiez.com", "urls": ["https://sophiemanessiez.com/accueil"], "names": ["Apidom Inc"], "sources": ["search_sweep_cmaq"], "source_pages": ["Apidom Sophie Manessiez céramiste québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
3145 3244 {"domain": "sorcieredepouvoir.com", "urls": ["https://www.sorcieredepouvoir.com/product/chaga-aromatis-/3?cp=true&sa=false&sbp=false&q=false&category_id=3", "https://www.sorcieredepouvoir.com/", "https://www.sorcieredepouvoir.com/product/g-lules-de-chaga/94?cp=true&sa=false&sbp=false&q=false&category_id=4", "https://www.sorcieredepouvoir.com/product/tisane-digestion-divine/19?cp=true&sa=false&sbp=false&q=false&category_id=3", "https://www.sorcieredepouvoir.com/product/tisane-sommeil-de-f-es/15?cp=true&sa=false&sbp=false&q=false&category_id=3", "https://www.sorcieredepouvoir.com/product/m-tamorphose-le-kit-minceur-de-la-sorci-re/10?cp=true&sa=false&sbp=false&q=false&category_id=4", "https://www.sorcieredepouvoir.com/product/tisane-minceur-bonheur/14?cp=true&sa=false&sbp=false&q=false&category_id=3", "https://www.sorcieredepouvoir.com/shop/bains-magiques/19", "https://www.sorcieredepouvoir.com/product/brume-de-fees/138?cp=true&sa=false&sbp=false&q=false&category_id=4", "https://www.sorcieredepouvoir.com/shop/l-oracle-des-celkies/12", "https://www.sorcieredepouvoir.com/product/bourse-d-estime-de-soi/24?cp=true&sa=false&sbp=false&q=false&category_id=6", "https://www.sorcieredepouvoir.com/product/bourse-de-fortification-et-d-nergie-vitale/30?cp=true&sa=false&sbp=false&q=false&category_id=6", "https://www.sorcieredepouvoir.com/product/bourse-pour-la-r-g-n-ration/31?cp=true&sa=false&sbp=false&q=false&category_id=6", "https://www.sorcieredepouvoir.com/product/vap-0-sol-d-congestionnant-aux-huiles-essentielles/38?cp=true&sa=false&sbp=false&q=false&category_id=4"], "names": ["Chaga aromatisé - Acheter québécois", "Gélules de chaga - Acheter québécois", "Tisane Digestion Divine - Acheter québécois", "Tisane Sommeil de Fées - Acheter québécois", "Métamorphose, le kit minceur de la sorcière - Acheter québécois", "Tisane Minceur-Bonheur - Acheter québécois", "Bain de Lune - Acheter québécois", "Brumes de Fées - Acheter québécois", "Livre et cartes Les Celkies - Acheter québécois", "Bourse de l'estime de soi - Acheter québécois", "Bourse de magie-thérapie de fortification - Acheter québécois", "Bourse de magie-thérapie de régénération - Acheter québécois", "Vap-O-Sol, décongestionnant aux huiles essentielles - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/chaga-aromatise/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/gelules-de-chaga/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/tisane-digestion-divine/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/agroalimentaire/tisane-sommeil-de-fees/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/metamorphose-le-kit-minceur-de-la-sorciere/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/beaute/tisane-minceur-bonheur/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/bain-de-lune/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/cosmetique/brumes-de-fees/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/livres-auteur-auteure-quebecois/livre-et-cartes-les-celkies/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/bourse-de-lestime-de-soi/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/bourse-de-magie-therapie-de-fortification/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/bourse-de-magie-therapie-pour-regeneration/", "https://acheterquebecois.ca/produits-quebecois-a-vendre/sante/vap-o-sol-decongestionnant-aux-huiles-essentielles/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": null, "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
3146 3245 {"domain": "sorrentopizzeria.ca", "urls": ["https://sorrentopizzeria.ca"], "names": ["Sorrento Pizzeria"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/sorrento-pizzeria/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/restaurantsorrento.ca?locale=fr_CA"], "postal_prefix": null, "phone": "418 543-3198", "regions_mentioned": ["Côte-Nord", "Lac-Saint-Jean", "Saguenay"]}
3147 3246 {"domain": "sosfondue.ca", "urls": ["http://www.sosfondue.ca", "https://sosfondue.ca/boutique/"], "names": ["S.O.S. Fondue Inc.", "S.O.S Fondue inc."], "sources": ["alimentsduquebec_ent", "laurentidesjenmange"], "source_pages": ["https://alimentsduquebec.com/entreprises/s-o-s-fondue-inc", "https://laurentidesjenmange.ca/membre/sos-fondue-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.facebook.com/laurentidesjm/", "https://www.instagram.com/laurentidesjenmange/", "https://www.facebook.com/sosfondue", "https://www.instagram.com/sosfondue/", "https://www.youtube.com/channel/UCzEZIpYm6ND0_BX59CbnEbg"], "postal_prefix": "J0T", "phone": "819 216-7000", "regions_mentioned": ["Laurentides"]}
@@ -3197,6 +3296,7 @@
3197 3296 {"domain": "surtonmur.com", "urls": ["https://surtonmur.com/en"], "names": ["Sur ton mur"], "sources": ["search_sweep_nonfood"], "source_pages": ["papeterie illustration québécoise boutique en ligne artiste"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
3198 3297 {"domain": "sushialamaison.com", "urls": ["https://www.sushialamaison.com/"], "names": ["Sushi à la maison"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/sushi-a-la-maison"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": null, "phone": null, "regions_mentioned": []}
3199 3298 {"domain": "sway.office.com", "urls": ["https://sway.office.com/EdxGRWKGrflvqz9G/"], "names": ["Tableau personnalisé : Faites faire votre propriété - Acheter québécois"], "sources": ["acheterquebecois"], "source_pages": ["https://acheterquebecois.ca/produits-quebecois-a-vendre/arts-et-culture-quebecois/tableau-personnalise-faites-faire-votre-propriete/"], "socials": ["https://www.pinterest.ca/acheterquebecois/", "https://www.youtube.com/channel/UCQb7eCmrM_8Lpw8tZ5ZHRSA", "https://www.linkedin.com/company/acheterquebecois/", "https://www.facebook.com/acheterquebecois/"], "postal_prefix": "G6W", "phone": "(450) 403-0603", "regions_mentioned": ["Abitibi", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Laval", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue"]}
3299 +{"domain": "sweetmamagrass.ca", "urls": ["https://www.sweetmamagrass.ca"], "names": ["Sweet Mama Grass"], "sources": ["search_sweep_cmaq"], "source_pages": ["Sweet Mama Grass Laurence Thiffault vannier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Sutton, QC"]}
3200 3300 {"domain": "sylvestreparfums.com", "urls": ["https://www.sylvestreparfums.com/"], "names": ["Sylvestre Parfums"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/sylvestre-parfums"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G8Y", "phone": "514 847-9799", "regions_mentioned": []}
3201 3301 {"domain": "symbiosealt.com", "urls": ["https://symbiosealt.com/"], "names": ["SymbiOse AlimenTerre"], "sources": ["laurentidesjenmange"], "source_pages": ["https://laurentidesjenmange.ca/membre/symbiose-alimenterre"], "socials": ["https://www.facebook.com/laurentidesjm/", "https://www.instagram.com/laurentidesjenmange/", "https://www.facebook.com/435484880356547", "https://www.instagram.com/symbiosealt"], "postal_prefix": "J0T", "phone": "438 220-4348", "regions_mentioned": ["Laurentides"]}
3202 3302 {"domain": "symposiumbsp.com", "urls": ["https://symposiumbsp.com/fr"], "names": ["Symposium international d'art contemporain de Baie-Saint-Paul"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/symposium-international-dart-contemporain-de-baie-saint-paul"], "socials": ["https://www.instagram.com/symposiumbsp/", "https://www.facebook.com/symposiumbsp/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G3Z", "phone": "418 435-3681", "regions_mentioned": ["Saguenay"]}
@@ -3298,18 +3398,21 @@
3298 3398 {"domain": "trucsdenfants.com", "urls": ["https://trucsdenfants.com/?aftag=ad3ad2cc418440b07add1b1d2edad27f&utm_medium=afocus"], "names": ["Trucs d'enfants"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/trucsdenfants/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
3299 3399 {"domain": "tsurprise.com", "urls": ["https://tsurprise.com/policies/shipping-policy?aftag=d9b39aab38224445c6b4eb611b16518b&utm_medium=afocus"], "names": ["T surprise"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/tsurprise/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
3300 3400 {"domain": "tuckhingfoods.com", "urls": ["http://www.tuckhingfoods.com"], "names": ["Les aliments Tuck Hing"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-aliments-tuck-hing"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J5B", "phone": null, "regions_mentioned": ["Montérégie"]}
3401 +{"domain": "tuknut.com", "urls": ["https://tuknut.com"], "names": ["Tuknut"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux autochtones perlage Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
3301 3402 {"domain": "tulipjuvenile.com", "urls": ["https://tulipjuvenile.com/fr/a-propos-de-nous"], "names": ["Tulip Juvenile"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois meubles pour bébé boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
3302 3403 {"domain": "tungstene.ca", "urls": ["https://tungstene.ca"], "names": ["Tungstene"], "sources": ["search_sweep_urban"], "source_pages": ["luminaires design fabriqués Montréal studio boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
3303 3404 {"domain": "turlo.ca", "urls": ["https://www.Turlo.ca"], "names": ["Boucherie Turlo"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/boucherie-turlo"], "socials": ["https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 916-3144", "regions_mentioned": []}
3304 3405 {"domain": "tutacoco.com", "urls": ["https://www.tutacoco.com/?aftag=c0cc64e3e5fb30e729f1c5a7aede1873&utm_medium=afocus"], "names": ["Tuta & Coco"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/tutacoco/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
3305 3406 {"domain": "tutleconomusee.com", "urls": ["http://tutleconomusee.com/"], "names": ["ÉCONOMUSÉE® de la musique traditionnelle"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-la-musique-traditionnelle/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/tutlrecords"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
3306 3407 {"domain": "tvcotv.com", "urls": ["http://tvcotv.com", "http://tvcotv.com/"], "names": ["TVCO"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/tvco"], "socials": ["https://www.youtube.com/@tvcocharlevoix3288", "https://www.facebook.com/tvcotv/", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G3Z", "phone": "418 435-5134", "regions_mentioned": ["Saguenay"]}
3408 +{"domain": "twistcreations.ca", "urls": ["https://twistcreations.ca"], "names": ["Twist Créations"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Saguenay Chicoutimi boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Chicoutimi, Saguenay"]}
3307 3409 {"domain": "twistedforksp.com", "urls": ["https://twistedforksp.com/", "https://twistedforksp.com/cart"], "names": ["ÉCONOMUSÉE® de la conserverie"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-la-conserverie/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/twistedforksp", "https://www.instagram.com/twistedforksp/?fbclid=IwAR2Wj_Hoteuhfj9PSEVQu-o70PuPHcz1hhP_Yz8EoCVAH08dvr7iZ9zSoK0"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
3308 3410 {"domain": "u-main.ca", "urls": ["https://www.u-main.ca/?aftag=e012a3bfa0d7fd35dc64610cd89e3984&utm_medium=afocus"], "names": ["U Main"], "sources": ["icq_resolved"], "source_pages": ["https://www.ideecadeauquebec.com/boutique/u-main/"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": []}
3309 3411 {"domain": "ubald.ca", "urls": ["http://ubald.ca/", "http://www.ubald.ca"], "names": ["Ubald Distillerie"], "sources": ["alimentsduquebec_ent", "distilleriesduquebec"], "source_pages": ["https://alimentsduquebec.com/entreprises/ubald-distillerie", "https://distilleriesduquebec.com/fr/le-repertoire-des-distilleries/ubald-distillerie"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "http://www.facebook.com/ubalddistillerie", "http://www.instagram.com/ubald_distillerie/", "http://www.youtube.com/channel/UCA4PsHrlKwpf31eNRzjaNxA", "http://www.linkedin.com/company/ubald-distillerie/", "https://www.facebook.com/distilleriedequebec/", "https://www.instagram.com/distilleriedequebec/", "https://www.linkedin.com/company/union-québécoise-des-microdistilleries/?originalSubdomain=ca", "https://www.youtube.com/@distilleriesqc"], "postal_prefix": "G0A", "phone": "418 277-2294", "regions_mentioned": ["Capitale-Nationale"]}
3310 3412 {"domain": "ull.no", "urls": ["https://ull.no/om/"], "names": ["ÉCONOMUSÉE® de la lainerie"], "sources": ["artisansaloeuvre"], "source_pages": ["https://artisansaloeuvre.com/artisans/economusee-de-la-lainerie-2/"], "socials": ["https://www.facebook.com/Artisansaloeuvre", "https://www.instagram.com/artisansaloeuvreqc/", "https://www.youtube.com/@artisansaloeuvre", "https://www.linkedin.com/company/societe-du-reseau-economusee/", "https://www.facebook.com/ullvarefabrikk", "https://www.instagram.com/hillesvagullvarefabrikk/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Lac-Saint-Jean"]}
3311 3413 {"domain": "ultratrailcanada.com", "urls": ["https://ultratrailcanada.com/"], "names": ["Québec Mega Trail"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/quebec-mega-trail"], "socials": ["https://www.instagram.com/qcmegatrail/", "https://www.facebook.com/QuebecMegaTrail", "https://www.youtube.com/channel/UCiS9QtcP-yI0KQvjvPnV5lQ", "https://www.tiktok.com/@qcmegatrail", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix"], "postal_prefix": "G0A", "phone": null, "regions_mentioned": ["Saguenay"]}
3312 3414 {"domain": "ultratrailharricana.com", "urls": ["https://ultratrailharricana.com/"], "names": ["Ultra-Trail Harricana du Canada (UTHC)"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/ultra-trail-harricana-du-canada-uthc"], "socials": ["https://www.youtube.com/channel/UCPLMUVkKBWjCbmirlf8gPUQ", "https://www.facebook.com/evharricana/", "https://www.instagram.com/uthc/", "https://x.com/evharricana", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix"], "postal_prefix": "G5A", "phone": "418 806-9855", "regions_mentioned": ["Saguenay"]}
3415 +{"domain": "umain.co", "urls": ["https://umain.co/"], "names": ["UMAIN Joaillerie"], "sources": ["search_sweep_cmaq"], "source_pages": ["UMAIN Joaillerie Stéphanie Pepin québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
3313 3416 {"domain": "umam.ca", "urls": ["https://www.umam.ca"], "names": ["UMAM (klkt inc.)"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/umam-klkt-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J4N", "phone": null, "regions_mentioned": ["Montérégie"]}
3314 3417 {"domain": "umamichampignon.com", "urls": ["https://www.umamichampignon.com"], "names": ["Umami champignon - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/umami-champignon/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/umami.champignon", "https://www.instagram.com/umami.champignon/", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/umami-champignon/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=Umami champignon&url=https://goutezy.com/entreprise/umami-champignon/"], "postal_prefix": "G0Z", "phone": "(819) 806-6677", "regions_mentioned": ["Centre-du-Québec"]}
3315 3418 {"domain": "umamiepicerie.com", "urls": ["https://umamiepicerie.com/"], "names": ["Umami Épicerie"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/umami-epicerie"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H2H", "phone": null, "regions_mentioned": ["Montréal"]}
@@ -3331,6 +3434,7 @@
3331 3434 {"domain": "v25inc.com", "urls": ["https://v25inc.com/"], "names": ["V25 inc - Goûtez-y!"], "sources": ["goutezy"], "source_pages": ["https://goutezy.com/entreprise/v25-inc/"], "socials": ["https://www.facebook.com/NotreCentreDuQuebecGoutezY", "https://www.instagram.com/goutez_y/", "https://www.youtube.com/@goutezy/", "https://www.facebook.com/V25inc", "https://www.facebook.com/sharer/sharer.php?u=https://goutezy.com/entreprise/v25-inc/&src=sdkpreparse", "https://twitter.com/intent/tweet?text=V25 inc&url=https://goutezy.com/entreprise/v25-inc/"], "postal_prefix": "J0C", "phone": "(819) 818-0561", "regions_mentioned": ["Centre-du-Québec"]}
3332 3435 {"domain": "vacheamaillotte.com", "urls": ["http://www.vacheamaillotte.com/fr/index.cfm", "http://vacheamaillotte.com"], "names": ["Fromagerie La Vache à Maillotte", "Boutique"], "sources": ["fromagesdici", "goutezat"], "source_pages": ["https://www.fromagesdici.com/fr/fromageries/fromagerie-la-vache-a-maillotte", "https://goutezat.com/produit/du-charme-affine-a-la-biere/"], "socials": ["https://www.facebook.com/fromagesdici", "https://www.youtube.com/channel/UCxSGDuWDPFOvNy7xP_LylcA", "https://www.instagram.com/fromages.dici/", "https://www.pinterest.ca/fromagesdici/", "https://www.facebook.com/GoutezAT/", "https://www.instagram.com/goutezat/"], "postal_prefix": "J9Z", "phone": "819 333-1121", "regions_mentioned": ["Abitibi", "Bas-Saint-Laurent", "Centre-du-Québec", "Chaudière-Appalaches", "Estrie", "Gaspésie", "Lac-Saint-Jean", "Lanaudière", "Laurentides", "Mauricie", "Montréal", "Montérégie", "Outaouais", "Saguenay", "Témiscamingue", "Îles-de-la-Madeleine"]}
3333 3436 {"domain": "vachon.com", "urls": ["http://www.vachon.com"], "names": ["Boulangerie Vachon inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/boulangerie-vachon-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Chaudière-Appalaches"]}
3437 +{"domain": "vachonknives.com", "urls": ["https://www.vachonknives.com"], "names": ["Vachon Knives"], "sources": ["search_sweep_cmaq"], "source_pages": ["Vachon Knives Noah Vachon coutelier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
3334 3438 {"domain": "vaillancourt.ca", "urls": ["https://www.vaillancourt.ca/", "https://vaillancourt.ca"], "names": ["Vaillancourt Portes et Fenêtres"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/vaillancourt-portes-et-fenetres"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J0C", "phone": "514 847-9799", "regions_mentioned": []}
3335 3439 {"domain": "val-saint-francois.qc.ca", "urls": ["https://val-saint-francois.qc.ca/"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/fromagerie-le-campagnard/", "https://createursdesaveurs.com/createurs/les-produits-alimentaires-food-la-bouffe/", "https://createursdesaveurs.com/createurs/iga-marche-ouimette-fille-et-fils/", "https://createursdesaveurs.com/createurs/soja-dici-inc/", "https://createursdesaveurs.com/createurs/marche-locavore-de-racine/", "https://createursdesaveurs.com/createurs/au-blanc-marronnier-jure-sucre/", "https://createursdesaveurs.com/createurs/intermarche-st-denis/", "https://createursdesaveurs.com/createurs/marche-champetre-de-melbourne/", "https://createursdesaveurs.com/createurs/la-vallee-du-moulin/", "https://createursdesaveurs.com/createurs/jardins-zone-orange/", "https://createursdesaveurs.com/createurs/les-gars-de-saucisse/", "https://createursdesaveurs.com/createurs/les-champs-vermeils/", "https://createursdesaveurs.com/createurs/les-jardins-merridor/", "https://createursdesaveurs.com/createurs/plantations-stephan-perreault/", "https://createursdesaveurs.com/createurs/la-confrerie-artisans-brasseurs/", "https://createursdesaveurs.com/createurs/cafe-fabule/", "https://createursdesaveurs.com/createurs/ferme-sevigny/", "https://createursdesaveurs.com/createurs/les-cochons-tout-ronds/", "https://createursdesaveurs.com/createurs/miellerie-lune-de-miel-2/", "https://createursdesaveurs.com/createurs/fromagerie-nouvelle-france/", "https://createursdesaveurs.com/createurs/le-beau-marche/", "https://createursdesaveurs.com/createurs/cafe-du-couvent-coop/", "https://createursdesaveurs.com/createurs/secheurs-cueilleurs-ferme-florale-et-medicinale/", "https://createursdesaveurs.com/createurs/domaine-oak-hill/", "https://createursdesaveurs.com/createurs/cooperative-de-solidarite-des-stokois-et-stokoises/", "https://createursdesaveurs.com/createurs/ferme-peches-moutons/", "https://createursdesaveurs.com/createurs/les-douceurs-de-lerable-brien/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/p/Fromagerie-le-campagnard-100063488475037/?locale=fr_CA", "https://www.instagram.com/fromagerie_le_campagnard/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-le-campagnard%2F&t=Fromagerie%20le%20Campagnard", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-le-campagnard%2F&text=Fromagerie%20le%20Campagnard", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-le-campagnard%2F&title=Fromagerie%20le%20Campagnard&summary=", "https://www.facebook.com/FoodLaBouffe/", "https://www.instagram.com/foodlabouffe", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-produits-alimentaires-food-la-bouffe%2F&t=Les%20Produits%20Alimentaires%20FOOD%20la%20Bouffe", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-produits-alimentaires-food-la-bouffe%2F&text=Les%20Produits%20Alimentaires%20FOOD%20la%20Bouffe", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-produits-alimentaires-food-la-bouffe%2F&title=Les%20Produits%20Alimentaires%20FOOD%20la%20Bouffe&summary=", "https://www.facebook.com/IGAOuimette/?locale=fr_CA", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Figa-marche-ouimette-fille-et-fils%2F&t=IGA%20March%C3%A9%20Ouimette%20Fille%20et%20Fils", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Figa-marche-ouimette-fille-et-fils%2F&text=IGA%20March%C3%A9%20Ouimette%20Fille%20et%20Fils", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Figa-marche-ouimette-fille-et-fils%2F&title=IGA%20March%C3%A9%20Ouimette%20Fille%20et%20Fils&summary=", "https://www.facebook.com/sojadici", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsoja-dici-inc%2F&t=Soj%C3%A0%20d%E2%80%99ici%20inc.", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsoja-dici-inc%2F&text=Soj%C3%A0%20d%E2%80%99ici%20inc.", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsoja-dici-inc%2F&title=Soj%C3%A0%20d%E2%80%99ici%20inc.&summary=", "https://www.facebook.com/marchelocavore", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-locavore-de-racine%2F&t=March%C3%A9%20Locavore%20de%20Racine", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-locavore-de-racine%2F&text=March%C3%A9%20Locavore%20de%20Racine", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-locavore-de-racine%2F&title=March%C3%A9%20Locavore%20de%20Racine&summary=", "https://www.facebook.com/people/Jur%C3%A9-Sucr%C3%A9/100083247101261/", "https://www.instagram.com/camerisejuresucre/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fau-blanc-marronnier-jure-sucre%2F&t=Au%20blanc%20Marronnier%20%2F%20Jur%C3%A9%20Sucr%C3%A9", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fau-blanc-marronnier-jure-sucre%2F&text=Au%20blanc%20Marronnier%20%2F%20Jur%C3%A9%20Sucr%C3%A9", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fau-blanc-marronnier-jure-sucre%2F&title=Au%20blanc%20Marronnier%20%2F%20Jur%C3%A9%20Sucr%C3%A9&summary=", "https://www.facebook.com/intermarchestdenis/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fintermarche-st-denis%2F&t=Intermarch%C3%A9%20St-Denis", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fintermarche-st-denis%2F&text=Intermarch%C3%A9%20St-Denis", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fintermarche-st-denis%2F&title=Intermarch%C3%A9%20St-Denis&summary=", "https://www.facebook.com/MarcheChampetredeMelbourne", "https://instagram.com/marchechampetredemelbourne?igshid=ZDdkNTZiNTM=", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-champetre-de-melbourne%2F&t=March%C3%A9%20champ%C3%AAtre%20de%20Melbourne", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-champetre-de-melbourne%2F&text=March%C3%A9%20champ%C3%AAtre%20de%20Melbourne", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmarche-champetre-de-melbourne%2F&title=March%C3%A9%20champ%C3%AAtre%20de%20Melbourne&summary=", "https://www.facebook.com/lavalleedumoulin/", "https://www.instagram.com/lavalleedumoulin", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-vallee-du-moulin%2F&t=La%20Vall%C3%A9e%20du%20Moulin", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-vallee-du-moulin%2F&text=La%20Vall%C3%A9e%20du%20Moulin", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-vallee-du-moulin%2F&title=La%20Vall%C3%A9e%20du%20Moulin&summary=", "https://www.facebook.com/profile.php?id=100064629071913", "https://www.instagram.com/jardinszoneorange/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fjardins-zone-orange%2F&t=Jardins%20Zone%20Orange", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fjardins-zone-orange%2F&text=Jardins%20Zone%20Orange", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fjardins-zone-orange%2F&title=Jardins%20Zone%20Orange&summary=", "https://www.facebook.com/LesGarsDeSaucisse", "https://www.instagram.com/lesgarsdesaucisse/", "https://www.tiktok.com/@lesgarsdesaucisse", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-gars-de-saucisse%2F&t=Les%20Gars%20de%20saucisse", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-gars-de-saucisse%2F&text=Les%20Gars%20de%20saucisse", "https://www.facebook.com/p/Les-Champs-Vermeils-100064139465781/?_rdr", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-champs-vermeils%2F&t=Les%20Champs%20Vermeils", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-champs-vermeils%2F&text=Les%20Champs%20Vermeils", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-champs-vermeils%2F&title=Les%20Champs%20Vermeils&summary=", "https://www.facebook.com/profile.php?id=100076014887469", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-jardins-merridor%2F&t=Les%20Jardins%20Merridor", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-jardins-merridor%2F&text=Les%20Jardins%20Merridor", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-jardins-merridor%2F&title=Les%20Jardins%20Merridor&summary=", "https://www.facebook.com/plantationsperreault/", "https://www.instagram.com/plantationsstephanperreault/?hl=fr", "https://www.tiktok.com/@plantationsperreault", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fplantations-stephan-perreault%2F&t=Plantations%20St%C3%A9phan%20Perreault", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fplantations-stephan-perreault%2F&text=Plantations%20St%C3%A9phan%20Perreault", "https://www.facebook.com/laconfrerie.artisansbrasseurs", "https://www.instagram.com/confreriebrasseurs/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-confrerie-artisans-brasseurs%2F&t=La%20Confr%C3%A9rie%20Artisans%20Brasseurs", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-confrerie-artisans-brasseurs%2F&text=La%20Confr%C3%A9rie%20Artisans%20Brasseurs", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fla-confrerie-artisans-brasseurs%2F&title=La%20Confr%C3%A9rie%20Artisans%20Brasseurs&summary=", "https://www.facebook.com/cafe.fabule", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-fabule%2F&t=Caf%C3%A9%20Fabul%C3%A9", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-fabule%2F&text=Caf%C3%A9%20Fabul%C3%A9", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-fabule%2F&title=Caf%C3%A9%20Fabul%C3%A9&summary=", "https://www.facebook.com/profile.php?id=61562081829025", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-sevigny%2F&t=Ferme%20S%C3%A9vigny", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-sevigny%2F&text=Ferme%20S%C3%A9vigny", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-sevigny%2F&title=Ferme%20S%C3%A9vigny&summary=", "https://www.facebook.com/cochonstoutronds", "https://www.instagram.com/cochonstoutronds/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-cochons-tout-ronds%2F&t=Les%20Cochons%20tout%20Ronds", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-cochons-tout-ronds%2F&text=Les%20Cochons%20tout%20Ronds", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-cochons-tout-ronds%2F&title=Les%20Cochons%20tout%20Ronds&summary=", "https://www.facebook.com/profile.php?id=100057584284380&fref=ts", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmiellerie-lune-de-miel-2%2F&t=Miellerie%20Lune%20de%20Miel", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmiellerie-lune-de-miel-2%2F&text=Miellerie%20Lune%20de%20Miel", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fmiellerie-lune-de-miel-2%2F&title=Miellerie%20Lune%20de%20Miel&summary=", "https://www.facebook.com/fromagerienouvellefrance/?ref=embed_page", "https://www.instagram.com/fromagerienouvellefrance/?img_index=1", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-nouvelle-france%2F&t=Fromagerie%20Nouvelle%20France", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-nouvelle-france%2F&text=Fromagerie%20Nouvelle%20France", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Ffromagerie-nouvelle-france%2F&title=Fromagerie%20Nouvelle%20France&summary=", "https://www.facebook.com/LeBeauMarche.Estd2022", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fle-beau-marche%2F&t=Le%20Beau%20March%C3%A9", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fle-beau-marche%2F&text=Le%20Beau%20March%C3%A9", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fle-beau-marche%2F&title=Le%20Beau%20March%C3%A9&summary=", "https://www.facebook.com/cafeducouvent", "https://www.instagram.com/cafe_du_couvent", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-du-couvent-coop%2F&t=Caf%C3%A9%20du%20couvent%20Coop", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-du-couvent-coop%2F&text=Caf%C3%A9%20du%20couvent%20Coop", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcafe-du-couvent-coop%2F&title=Caf%C3%A9%20du%20couvent%20Coop&summary=", "https://www.facebook.com/secheurscueilleurs", "https://www.instagram.com/secheurscueilleurs/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsecheurs-cueilleurs-ferme-florale-et-medicinale%2F&t=S%C3%A9cheurs%20Cueilleurs%2C%20ferme%20florale%20et%20m%C3%A9dicinale", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsecheurs-cueilleurs-ferme-florale-et-medicinale%2F&text=S%C3%A9cheurs%20Cueilleurs%2C%20ferme%20florale%20et%20m%C3%A9dicinale", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fsecheurs-cueilleurs-ferme-florale-et-medicinale%2F&title=S%C3%A9cheurs%20Cueilleurs%2C%20ferme%20florale%20et%20m%C3%A9dicinale&summary=", "https://www.facebook.com/profile.php?id=100064933952484", "https://www.instagram.com/domaine_oak_hill/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fdomaine-oak-hill%2F&t=Domaine%20Oak%20Hill", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fdomaine-oak-hill%2F&text=Domaine%20Oak%20Hill", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fdomaine-oak-hill%2F&title=Domaine%20Oak%20Hill&summary=", "https://www.facebook.com/coopstoke/", "https://www.instagram.com/coopdestoke/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcooperative-de-solidarite-des-stokois-et-stokoises%2F&t=Coop%C3%A9rative%20de%20solidarit%C3%A9%20des%20Stokois%20et%20Stokoises", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcooperative-de-solidarite-des-stokois-et-stokoises%2F&text=Coop%C3%A9rative%20de%20solidarit%C3%A9%20des%20Stokois%20et%20Stokoises", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fcooperative-de-solidarite-des-stokois-et-stokoises%2F&title=Coop%C3%A9rative%20de%20solidarit%C3%A9%20des%20Stokois%20et%20Stokoises&summary=", "https://www.facebook.com/pechesmoutons/?locale=fr_CA", "https://www.instagram.com/fermepechesmoutons/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-peches-moutons%2F&t=Ferme%20P%C3%A9ch%C3%A9s%20Moutons", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-peches-moutons%2F&text=Ferme%20P%C3%A9ch%C3%A9s%20Moutons", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fferme-peches-moutons%2F&title=Ferme%20P%C3%A9ch%C3%A9s%20Moutons&summary=", "https://www.facebook.com/LesDouceursdelErableBrien", "https://www.instagram.com/douceurserablebrien/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-douceurs-de-lerable-brien%2F&t=Les%20Douceurs%20de%20l%E2%80%99%C3%A9rable%20Brien", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-douceurs-de-lerable-brien%2F&text=Les%20Douceurs%20de%20l%E2%80%99%C3%A9rable%20Brien", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fles-douceurs-de-lerable-brien%2F&title=Les%20Douceurs%20de%20l%E2%80%99%C3%A9rable%20Brien&summary="], "postal_prefix": "J0B", "phone": "(819) 644-0447", "regions_mentioned": ["Cantons-de-l'Est", "Laval", "Estrie"]}
3336 3440 {"domain": "valcaudalies.com", "urls": ["http://www.valcaudalies.com", "https://valcaudalies.com/"], "names": ["Val Caudalies – Vignoble et cidrerie – Les producteurs de cidre du Québec", "Créateurs"], "sources": ["cidreduquebec", "createursdesaveurs"], "source_pages": ["https://cidreduquebec.com/cidreries/val-caudalies-vignoble-et-cidrerie/", "https://createursdesaveurs.com/createurs/val-caudalies-vignoble-et-cidrerie/"], "socials": ["https://www.facebook.com/cidreduquebec", "https://www.instagram.com/cidreduquebec", "https://www.facebook.com/ValCaudalies", "https://www.facebook.com/groups/jaimelecidreduquebec", "https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/ValCaudalies/", "https://www.instagram.com/valcaudalies/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fval-caudalies-vignoble-et-cidrerie%2F&t=Val%20Caudalies%2C%20vignoble%20et%20cidrerie", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fval-caudalies-vignoble-et-cidrerie%2F&text=Val%20Caudalies%2C%20vignoble%20et%20cidrerie", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fval-caudalies-vignoble-et-cidrerie%2F&title=Val%20Caudalies%2C%20vignoble%20et%20cidrerie&summary="], "postal_prefix": "J0E", "phone": "450-295-2333", "regions_mentioned": ["Estrie", "Montréal", "Cantons-de-l'Est"]}
@@ -3345,6 +3449,7 @@
3345 3449 {"domain": "varia-condiments.com", "urls": ["http://www.varia-condiments.com/"], "names": ["condiments Varia Inc. (Les)"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/condiments-varia-inc-les"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "H4T", "phone": null, "regions_mentioned": ["Montréal"]}
3346 3450 {"domain": "varin.ca", "urls": ["https://varin.ca/boutique/fr", "https://varin.ca/boutique/fr/sous-produits-d-erable/barbe-du-sucrier-p81c75/", "https://varin.ca/boutique/fr/sous-produits-d-erable/gelee-a-l-erable-p74c75/", "https://varin.ca/boutique/fr/sous-produits-d-erable/bonbons-clair-a-l-erable-p71c75/", "https://varin.ca/boutique/fr/sirop-d-erable-biologique/bouteilles-de-fantaisie-c74c77/"], "names": ["Érablière Varin"], "sources": ["erabledici"], "source_pages": ["https://www.erabledici.ca/fr/erabliere/erabliere-varin/"], "socials": ["https://www.facebook.com/varin.ca/?epa=SEARCH_BOX", "https://www.facebook.com/Producteurs-et-productrices-ac%C3%A9ricoles-du-Qu%C3%A9bec-168610803187571/", "https://x.com/AcericoleQc", "https://www.youtube.com/channel/UCq8BHBMeMudLzspOaF9QMOg", "https://facebook.com/sharer/sharer.php?u=https://www.erabledici.ca/fr/erabliere/erabliere-varin/", "https://twitter.com/intent/tweet?text=%C3%89rabli%C3%A8re+Varin https://www.erabledici.ca/fr/erabliere/erabliere-varin/"], "postal_prefix": "J0N", "phone": "450 479-6232", "regions_mentioned": ["Laurentides"]}
3347 3451 {"domain": "vaudryvilleneuve.ca", "urls": ["https://vaudryvilleneuve.ca"], "names": ["Vaudry Villeneuve"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois escaliers rampes aluminium boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Terrebonne, QC"]}
3452 +{"domain": "vcreation.shop", "urls": ["https://vcreation.shop"], "names": ["V Création"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Sherbrooke boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
3348 3453 {"domain": "vegetolab.com", "urls": ["http://vegetolab.com", "https://vegetolab.com/ventes-en-ligne-darbustes-fruitiers/"], "names": ["Végétolab"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/vegetolab/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/vegetolab"], "postal_prefix": "G8E", "phone": "418 347-1737", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
3349 3454 {"domain": "vegpro.com", "urls": ["http://www.vegpro.com"], "names": ["Vegpro International Inc."], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/vegpro-international-inc"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0L", "phone": null, "regions_mentioned": ["Montérégie"]}
3350 3455 {"domain": "veillesurtoi.com", "urls": ["https://veillesurtoi.com/", "https://veillesurtoi.com"], "names": ["Veille sur toi Inc. - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/veille-sur-toi-inc-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H7S", "phone": "514 847-9799", "regions_mentioned": ["Laval", "Montréal"]}
@@ -3384,7 +3489,10 @@
3384 3489 {"domain": "verifruit.com", "urls": ["https://verifruit.com"], "names": ["VERIFRUIT"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/verifruit/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/verifruit.ca", "https://www.instagram.com/verifruit/"], "postal_prefix": null, "phone": "418 668-9988", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
3385 3490 {"domain": "veritable.ca", "urls": ["http://veritable.ca"], "names": ["VériTable - Solution Gourmande"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/veritable-solution-gourmande"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "G1L", "phone": null, "regions_mentioned": ["Capitale-Nationale"]}
3386 3491 {"domain": "veroniquedaragon.com", "urls": ["https://veroniquedaragon.com/"], "names": ["Véronique D'Aragon - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/veronique-d-aragon-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2W", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
3492 +{"domain": "veroniqueroyjwls.com", "urls": ["https://veroniqueroyjwls.com/fr/pages/about-veronique-roy-jwls"], "names": ["Véronique Roy JWLS"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux minimalistes Montréal créateur boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal"]}
3493 +{"domain": "verredonge.com", "urls": ["https://www.verredonge.com"], "names": ["Verre d'Onge"], "sources": ["search_sweep_cmaq"], "source_pages": ["Verre d'Onge Jérémie St-Onge artiste verrier québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC"]}
3387 3494 {"domain": "verrelime.ca", "urls": ["https://www.verrelime.ca"], "names": ["Verre lime"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/verre-lime/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/VerreLime", "https://www.instagram.com/verrelime/"], "postal_prefix": "G7H", "phone": null, "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
3495 +{"domain": "verretigo.ca", "urls": ["https://verretigo.ca"], "names": ["Verretigo"], "sources": ["search_sweep_bijoux"], "source_pages": ["créateur bijoux Gatineau boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Gatineau"]}
3388 3496 {"domain": "versantfruitier.com", "urls": ["https://www.versantfruitier.com"], "names": ["Ferme le Versant Fruitier"], "sources": ["arretsgourmands"], "source_pages": ["https://arretsgourmands.ca/arrets-gourmands/ferme-le-versant-fruitier"], "socials": ["https://www.facebook.com/profile.php?id=61551289824849&locale=fr_CA", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "(418) 883-3150", "regions_mentioned": []}
3389 3497 {"domain": "versforet.com", "urls": ["https://versforet.com/products/faux-miel-de-pissenlit-vegan"], "names": ["Boutique"], "sources": ["goutezat"], "source_pages": ["https://goutezat.com/produit/douceur-des-cycles/"], "socials": ["https://www.facebook.com/GoutezAT/", "https://www.instagram.com/goutezat/"], "postal_prefix": null, "phone": null, "regions_mentioned": ["Abitibi", "Témiscamingue"]}
3390 3498 {"domain": "versomicrobrasserie.com", "urls": ["https://versomicrobrasserie.com/", "https://www.versomicrobrasserie.com"], "names": ["Verso Microbrasserie"], "sources": ["ambq_profils", "arretsgourmands"], "source_pages": ["https://ambq.ca/fr/microbrasserie/verso-microbrasserie", "https://arretsgourmands.ca/arrets-gourmands/verso-microbrasserie"], "socials": ["https://www.facebook.com/bieresdemicroqc", "https://www.instagram.com/bieresdemicroqc/", "https://www.youtube.com/channel/UCJuiS8h8Ing9rQHrdyKDJsQ", "https://www.facebook.com/versomicro/", "https://www.instagram.com/versomicro/", "https://www.facebook.com/versomicro", "https://www.facebook.com/arretsgourmands/", "https://www.instagram.com/arretsgourmandsca/", "https://www.youtube.com/@arretsgourmandsca"], "postal_prefix": "G0R", "phone": "418 625-2101", "regions_mentioned": []}
@@ -3435,7 +3543,7 @@
3435 3543 {"domain": "vivremcs.com", "urls": ["https://vivremcs.com/fr-ca"], "names": ["MCS"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/mcs"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H4H", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
3436 3544 {"domain": "vladaventure.com", "urls": ["http://www.vladaventure.com", "http://www.vladaventure.com/"], "names": ["VLAD"], "sources": ["charlevoix"], "source_pages": ["https://www.tourisme-charlevoix.com/fr/entreprises/vlad"], "socials": ["https://www.instagram.com/vladaventure/", "https://www.facebook.com/profile.php?id=61577135513169", "https://www.facebook.com/tourismecharlevoix/?locale=fr_CA", "https://www.linkedin.com/company/tourisme-charlevoix/", "https://www.instagram.com/tourismecharlevoix/", "https://www.youtube.com/user/TourismeCharlevoix", "https://atrcharlevoix.com/", "https://atrcharlevoix.com/affaires"], "postal_prefix": "G5A", "phone": "581 993-0155", "regions_mentioned": ["Saguenay"]}
3437 3545 {"domain": "volaillesdangele.com", "urls": ["http://www.volaillesdangele.com"], "names": ["Les Volailles d'Angèle"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/les-volailles-dangele"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J0K", "phone": null, "regions_mentioned": ["Lanaudière"]}
3438 −{"domain": "volprive.ca", "urls": ["https://volprive.ca/en/products/aventure"], "names": ["Vol Privé"], "sources": ["search_sweep_nonfood"], "source_pages": ["couvertures jetées textile laine fabriqué au Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec (province-wide)"]}
3546 +{"domain": "volprive.ca", "urls": ["https://volprive.ca/pages/origine", "https://volprive.ca/en/products/aventure"], "names": ["Volprivé inc.", "Vol Privé"], "sources": ["search_sweep_cmaq", "search_sweep_nonfood"], "source_pages": ["Volprivé Marie-Claude Roulier couturier québec", "couvertures jetées textile laine fabriqué au Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Montréal, QC", "Québec (province-wide)"]}
3439 3547 {"domain": "volton.com", "urls": ["http://www.volton.com/"], "names": ["Les manufacturiers Volton Ltée"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/les-manufacturiers-volton-ltee"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H1H", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
3440 3548 {"domain": "vortex-intl.com", "urls": ["https://www.vortex-intl.com/fr/"], "names": ["VORTEX STRUCTURES AQUATIQUES"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/vortex-structures-aquatiques"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H9R", "phone": "514 847-9799", "regions_mentioned": ["Montréal"]}
3441 3549 {"domain": "votregreenbeaver.com", "urls": ["https://votregreenbeaver.com/"], "names": ["Green Beaver"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/green-beaver"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": null, "phone": "514 847-9799", "regions_mentioned": []}
@@ -3445,7 +3553,7 @@
3445 3553 {"domain": "vrdc.ca", "urls": ["https://www.vrdc.ca"], "names": ["Vignoble Rivière du Chêne"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/vignoble-riviere-du-chene"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/"], "postal_prefix": "J7R", "phone": null, "regions_mentioned": ["Laurentides"]}
3446 3554 {"domain": "vsj.ca", "urls": ["https://www.vsj.ca/marche-public/"], "names": ["Marcher Noël à Saint-Jérôme"], "sources": ["marchespublics"], "source_pages": ["https://www.marchespublicsduquebec.ca/marches-publics/marche-public-de-saint-jerome/"], "socials": ["https://www.facebook.com/marchespublicsqc", "https://www.linkedin.com/company/marches-publics-du-quebec/", "https://www.instagram.com/marchespublicsqc/", "https://www.youtube.com/channel/UCtwIcRX4_9l0XsOT7MgjFQQ"], "postal_prefix": "J7Z", "phone": null, "regions_mentioned": ["Laurentides"]}
3447 3555 {"domain": "wachiya.com", "urls": ["https://wachiya.com"], "names": ["Wachiya (Cree Native Arts and Crafts Association)"], "sources": ["search_sweep_regions"], "source_pages": ["boutique en ligne artisanat cri Eeyou Istchee"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Nord-du-Québec"]}
3448 −{"domain": "wallabyboomerangs.com", "urls": ["https://wallabyboomerangs.com/"], "names": ["Wallaby Boomerangs - CMAQ"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/wallaby-boomerangs-cmaq"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G6B", "phone": "514 847-9799", "regions_mentioned": []}
3556 +{"domain": "wallabyboomerangs.com", "urls": ["https://wallabyboomerangs.com/", "https://wallabyboomerangs.com"], "names": ["Wallaby Boomerangs - CMAQ", "Wallaby boomerangs"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/wallaby-boomerangs-cmaq", "Wallaby boomerangs Stéphane Marguerite québec"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "G6B", "phone": "514 847-9799", "regions_mentioned": ["Montréal, QC"]}
3449 3557 {"domain": "waltercafe.com", "urls": ["https://www.waltercafe.com/"], "names": ["Walter Café"], "sources": ["zoneboreale"], "source_pages": ["https://zoneboreale.com/entreprises/lerudit-cafe/"], "socials": ["https://www.facebook.com/zoneboreale", "https://www.instagram.com/zone_boreale/", "https://www.youtube.com/channel/UCcc5klSXSkqU3lkiE5nizeA", "https://www.linkedin.com/company/table-agroalimentaire-du-saguenay-lac-saint-jean/", "https://ca.pinterest.com/ZoneBoreale/", "https://www.tiktok.com/@zone_boreale/", "https://www.facebook.com/waltercafetorrefaction", "https://www.instagram.com/walter.cafe/"], "postal_prefix": null, "phone": "418 695-2233", "regions_mentioned": ["Lac-Saint-Jean", "Saguenay"]}
3450 3558 {"domain": "wambraceramics.com", "urls": ["https://www.wambraceramics.com", "https://wambraceramics.com", "https://wambraceramics.com/"], "names": ["WAMBRA CERAMICS - CMAQ", "WAMBRA CERAMICS", "Wambra Ceramics"], "sources": ["lesproduitsduquebec_ent", "search_sweep_cmaq", "search_sweep_vendors"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/wambra-ceramics-cmaq", "WAMBRA CERAMICS québec céramiste", "direct domain guess wambraceramics.com, verified via WebFetch"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H3E", "phone": "514 847-9799", "regions_mentioned": ["Montréal", "Montréal, QC"]}
3451 3559 {"domain": "wampole.ca", "urls": ["https://www.wampole.ca/fr/", "https://www.wampole.ca/"], "names": ["Wampole, division de Corporation JAMP Pharma"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/wampole-division-de-corporation-jamp-pharma"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J4B", "phone": "514 847-9799", "regions_mentioned": []}
@@ -3463,6 +3571,8 @@
3463 3571 {"domain": "ww.nomadvan.ca", "urls": ["https://ww.nomadvan.ca"], "names": ["Nomad Van"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/nomad-van"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J3G", "phone": "514 847-9799", "regions_mentioned": []}
3464 3572 {"domain": "wwww.chopchopboards.com", "urls": ["https://wwww.chopchopboards.com"], "names": ["Chop Chop"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/chop-chop"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "J4B", "phone": "514 847-9799", "regions_mentioned": []}
3465 3573 {"domain": "xplorremorques.ca", "urls": ["https://xplorremorques.ca"], "names": ["Xplor Remorques"], "sources": ["search_sweep_manuf"], "source_pages": ["fabricant québécois remorques utilitaires légères boutique en ligne aluminium"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Québec"]}
3574 +{"domain": "yataceramiques.com", "urls": ["https://yataceramiques.com/about"], "names": ["Ya'ta' céramiques"], "sources": ["search_sweep_cmaq"], "source_pages": ["Ya'ta' céramiques Julie-Anne Sioui Bellefleur québec"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Potton, Cantons-de-l'Est, QC"]}
3575 +{"domain": "yawinonh.com", "urls": ["https://yawinonh.com/collections/bijoux"], "names": ["Yawinonh"], "sources": ["search_sweep_bijoux"], "source_pages": ["bijoux autochtones perlage Québec boutique en ligne"], "socials": [], "postal_prefix": null, "phone": null, "regions_mentioned": ["Wendake"]}
3466 3576 {"domain": "yellowshoes.com", "urls": ["https://www.yellowshoes.com"], "names": ["Chaussures Yellow"], "sources": ["lesproduitsduquebec_ent"], "source_pages": ["https://lesproduitsduquebec.com/entreprises-adherentes/chaussures-yellow"], "socials": ["https://www.facebook.com/lesproduitsduqc", "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/", "https://www.youtube.com/@lesproduitsduquebec", "https://www.instagram.com/lesproduitsduqc/"], "postal_prefix": "H2T", "phone": "514 847-9799", "regions_mentioned": ["Montreal"]}
3467 3577 {"domain": "yesjerky.ca", "urls": ["https://yesjerky.ca/"], "names": ["Ye's Jerky"], "sources": ["alimentsduquebec_ent"], "source_pages": ["https://alimentsduquebec.com/entreprises/yes-jerky"], "socials": ["https://www.facebook.com/alimentsduquebec", "https://www.instagram.com/alimentsqc/?hl=fr", "https://www.youtube.com/@alimentsduquebec918", "https://www.tiktok.com/@alimentsqc", "https://www.linkedin.com/company/aliments-du-qu%C3%A9bec/", "https://www.instagram.com/yes.jerky/"], "postal_prefix": "H7J", "phone": null, "regions_mentioned": ["Laval", "Montréal"]}
3468 3578 {"domain": "yolonuts.com", "urls": ["https://www.yolonuts.com/", "https://www.yolonuts.com/collections/all"], "names": ["Créateurs"], "sources": ["createursdesaveurs"], "source_pages": ["https://createursdesaveurs.com/createurs/yolo-nuts/"], "socials": ["https://www.facebook.com/createursdesaveurscde/", "https://www.instagram.com/createursdesaveurscde/", "https://www.tiktok.com/@createursdesaveurs", "https://www.facebook.com/profile.php?id=100064760691650", "https://www.instagram.com/yolo__nuts/", "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fyolo-nuts%2F&t=Yolo%20nuts", "https://x.com/intent/post?url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fyolo-nuts%2F&text=Yolo%20nuts", "https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fcreateursdesaveurs.com%2Fcreateurs%2Fyolo-nuts%2F&title=Yolo%20nuts&summary="], "postal_prefix": "J1N", "phone": "(438) 763-0880", "regions_mentioned": ["Cantons-de-l'Est"]}
modified data/enriched/verified.jsonl +110 −0
@@ -100,6 +100,7 @@
100 100 {"domain": "amospewter.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://amospewter.com/", "active": true, "final_domain": "amospewter.com", "title": "Shop for Handcrafted Pewter Jewelry, Home Decor, Tableware &amp; Ornam", "platform": "magento", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
101 101 {"domain": "amourliquide.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://amourliquide.com/fr/", "active": true, "final_domain": "amourliquide.com", "title": "Amour Liquide &ndash; Cocktails De Poche", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
102 102 {"domain": "amuletteboutique.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.amuletteboutique.com/", "active": true, "final_domain": "amuletteboutique.com", "title": "Bijoux en argent - Bénédite Séguin - Boutique Amulette", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 124, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
103 +{"domain": "aniello-atelier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.aniello-atelier.com/", "active": true, "final_domain": "aniello-atelier.com", "title": "Aniello Atelier", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
103 104 {"domain": "annaart7.jimdo.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='annaart7.jimdo.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(", "HTTPSConnectionPool(host='www.annaart7.jimdo.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLEr", "HTTPSConnectionPool(host='annaart7.jimdo.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError("], "status": null, "final_url": "", "active": false}
104 105 {"domain": "annemariechagnon.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://annemariechagnon.com/", "active": true, "final_domain": "annemariechagnon.com", "title": "Anne-Marie Chagnon | Bijoux artisanaux faits au Québec depuis 1995", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "H2T 1X3", "qc_phone": "514 844-0499", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
105 106 {"domain": "annerenedecotret.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.annerenedecotret.com/", "active": true, "final_domain": "annerenedecotret.com", "title": "Accueil | Atelier-Galerie &quot;Anne René de Cotret&quot;", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J3T 1B7", "qc_phone": "819262-3223", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -126,6 +127,7 @@
126 127 {"domain": "arico.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://arico.ca/", "active": true, "final_domain": "arico.ca", "title": "Bean Bag | ARICO &ndash; Arico.ca", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
127 128 {"domain": "arida.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://arida.ca/", "active": true, "final_domain": "arida.ca", "title": "Fruits déshydratés &ndash; Les aliments Arida", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
128 129 {"domain": "aristocuisine.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://aristocuisine.com/fr/accueil/", "active": true, "final_domain": "aristocuisine.com", "title": "Aristo Cuisine", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "H4N 2G3", "qc_phone": "514-739-7328", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
130 +{"domain": "arquebuserie.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://arquebuserie.ca/", "active": true, "final_domain": "arquebuserie.ca", "title": "ACCUEIL", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
129 131 {"domain": "arsenaldistillerie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://arsenaldistillerie.com/", "active": true, "final_domain": "arsenaldistillerie.com", "title": "Distillerie Arsenal &amp; Co.", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "G1N 3V2", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
130 132 {"domain": "arsenalweb.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://polkarsenal.com/", "active": true, "final_domain": "polkarsenal.com", "title": "Accueil - Polka/Arsenal", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G7J 1G1", "qc_phone": "4185450005", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
131 133 {"domain": "artbeton.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://artbeton.ca/", "active": true, "final_domain": "artbeton.ca", "title": "ART BÉTON : le meilleur béton décoratif pour votre maison !", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 50, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0A 2R0", "qc_phone": "581.681.2051", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -142,6 +144,7 @@
142 144 {"domain": "artisansduvitrail.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://artisansduvitrail.com/", "active": true, "final_domain": "artisansduvitrail.com", "title": "Canadian Stained Glass Warehouse", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 2107, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1L 2X3", "qc_phone": "4186480969", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
143 145 {"domain": "artisanssucriers.wixsite.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='www.artisanssucriers.wixsite.com', port=443): Max retries exceeded with url: / (Caused by SSLE"], "status": 404, "final_url": "https://artisanssucriers.wixsite.com/", "active": false}
144 146 {"domain": "artistblacksmithschool.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.artistblacksmithschool.com/", "active": true, "final_domain": "artistblacksmithschool.com", "title": "Hot Milk Forge | Blacksmith Bladesmith Courses Class Ireland | Northern Ireland", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
147 +{"domain": "artpublic.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://artpublic.ca/", "active": true, "final_domain": "artpublic.ca", "title": "accueil - ArtPublic.ca", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
145 148 {"domain": "artsvitrail.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.artsvitrail.com/", "active": true, "final_domain": "artsvitrail.com", "title": "Jocelyne Grondin Arts &amp; Vitrail | Artiste du verre | Chemin Lac Opémiska, Chapais, QC, Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0W 1H0", "qc_phone": "418-748-5319", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
146 149 {"domain": "arvidaroasting.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.arvidaroasting.com/", "active": true, "final_domain": "arvidaroasting.com", "title": "Micro-torréfacteur à Saguenay &ndash; Arvida Roasting Co - Torréfacteurs", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
147 150 {"domain": "asdusmokedmeat.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.asdusmokedmeat.com/", "active": true, "final_domain": "asdusmokedmeat.com", "title": "Restaurant As Du Smoked Meat à l'Assomption", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J5W 1R3", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
@@ -150,6 +153,9 @@
150 153 {"domain": "astroblemecharlevoix.org", "checked_at": "2026-08-12", "status": 200, "final_url": "https://astroblemecharlevoix.org/", "active": true, "final_domain": "astroblemecharlevoix.org", "title": "Astrobl&egrave;me de Charlevoix &#8211; Les activit&eacute;s pr&eacute;f&eacute;r&eacute;es des curieux de nature!", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G5A 3B2", "qc_phone": "418-665-7645", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
151 154 {"domain": "asymmetricbydesign.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://asymmetricbydesign.com/", "active": true, "final_domain": "asymmetricbydesign.com", "title": "Asymmetric by Design &#8211; One of a kind jewelery celebrating empowerment &amp; sustainability", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 254, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
152 155 {"domain": "atelier-b.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://atelier-b.ca/", "active": true, "final_domain": "atelier-b.ca", "title": "atelier b | Fait au Canada | Fibres naturelles | Conception circulaire", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
156 +{"domain": "atelier-du-patrimoine.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='atelier-du-patrimoine.ca', port=443): Max retries exceeded with url: / (Caused by NewConnectio"], "status": 200, "final_url": "https://www.atelier-du-patrimoine.ca/", "active": true, "final_domain": "atelier-du-patrimoine.ca", "title": "L&#39;Atelier du Patrimoine", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "8199999928", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
157 +{"domain": "atelier-letabli.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://atelier-letabli.ca/", "active": true, "final_domain": "atelier-letabli.ca", "title": "ACCUEIL - Atelier L&#039;Établi", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "H2G 1Y9", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
158 +{"domain": "atelier-martin-gauthier.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='atelier-martin-gauthier.com', port=443): Max retries exceeded with url: / (Caused by NameResol", "HTTPSConnectionPool(host='www.atelier-martin-gauthier.com', port=443): Max retries exceeded with url: / (Caused by NameR", "HTTPConnectionPool(host='atelier-martin-gauthier.com', port=80): Max retries exceeded with url: / (Caused by NameResolut"], "status": null, "final_url": "", "active": false}
153 159 {"domain": "atelier140.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://atelier140.ca/", "active": true, "final_domain": "atelier140.ca", "title": "Ébénisterie Centre-du-Québec | Meubles sur mesure | Bois | Atelier 140", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "G6T0N6", "qc_phone": "819 552-2011", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
154 160 {"domain": "atelier1ermai.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelier1ermai.com/", "active": true, "final_domain": "atelier1ermai.com", "title": "1ER MAI | Slow Fashion Clothing Made in Montreal", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
155 161 {"domain": "atelierbalsam.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://atelierbalsam.com/", "active": true, "final_domain": "atelierbalsam.com", "title": "Atelier Balsam: Fleuriste d&#39;Exception à Gatineau", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J8X 2K3", "qc_phone": "819-777-7133", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
@@ -157,6 +163,7 @@
157 163 {"domain": "atelierboisetcie.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://atelierboisetcie.ca/", "active": true, "final_domain": "atelierboisetcie.ca", "title": "Atelier Bois &amp; Cie | Meubles en bois sur mesure au Québec", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 20, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J1Z 1K7", "qc_phone": "8198161546", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
158 164 {"domain": "ateliercanopee.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ateliercanopee.ca/", "active": true, "final_domain": "ateliercanopee.ca", "title": "Atelier Canop&eacute;e &#8211; Le bois est notre passion", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
159 165 {"domain": "ateliercharlotte.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ateliercharlotte.com/", "active": true, "final_domain": "ateliercharlotte.com", "title": "Boutique en ligne artisans quebecois | Charlotte atelier boutique canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0A 3J0", "qc_phone": "4184382321", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
166 +{"domain": "ateliercub.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='ateliercub.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerifi"], "status": 200, "final_url": "https://www.ateliercub.com/", "active": true, "final_domain": "ateliercub.com", "title": "Accueil -", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
160 167 {"domain": "atelierdalfred.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierdalfred.com/", "active": true, "final_domain": "atelierdalfred.com", "title": "Alfred Salon de Barbier Montréal | Montreal Barbershop", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2X 2V4", "qc_phone": "438-797-2472", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
161 168 {"domain": "atelierdco.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://merdeka62tas.com/", "active": true, "final_domain": "merdeka62tas.com", "title": "Rasakan Arti Merdeka Lewat Setiap Kemenangan - MERDEKA62", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
162 169 {"domain": "atelierdelouis.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierdelouis.ca/", "active": true, "final_domain": "atelierdelouis.ca", "title": "Atelier de Louis - Tourneur de la région des laurentides , Québec", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J5K2P2", "qc_phone": "5142938496", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -164,8 +171,11 @@
164 171 {"domain": "atelierdubijou.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierdubijou.ca/", "active": true, "final_domain": "atelierdubijou.ca", "title": "", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 6, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": "581 722-0690", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
165 172 {"domain": "atelierdumoucheur.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierdumoucheur.com/", "active": true, "final_domain": "atelierdumoucheur.com", "title": "L&#039;Atelier du Moucheur - Magasin de pêche", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G5L 1M8", "qc_phone": "4187226993", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
166 173 {"domain": "atelierdunordet.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierdunordet.ca/", "active": true, "final_domain": "atelierdunordet.ca", "title": "Accueil &mdash; Atelier du Nordet - Objets en bois décoratifs et fonctionnels fabriqués à la main au Québec", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0S 2C0", "qc_phone": "418-554-4898", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
174 +{"domain": "atelieremige.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://atelieremige.com/", "active": true, "final_domain": "atelieremige.com", "title": "Atelier émigé | Bijoux Fins Or 18K &amp; Argent 925 Québec", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
167 175 {"domain": "atelierformecreation.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierformecreation.com/", "active": true, "final_domain": "atelierformecreation.com", "title": "Atelier de poterie à Lachute | Cours, peinture céramique et boutique", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J8H 1Y5", "qc_phone": "450-566-1696", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
168 176 {"domain": "ateliergaston.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ateliergaston.ca/", "active": true, "final_domain": "ateliergaston.ca", "title": "Atelier GASTON", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
177 +{"domain": "atelierhotelmotel.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierhotelmotel.com/", "active": true, "final_domain": "atelierhotelmotel.com", "title": "ATELIER HOTEL MOTEL // SNEAKERS AND ACCESSORIES", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2N 2A9", "qc_phone": "5146807488", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
178 +{"domain": "atelierlaf.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierlaf.com/", "active": true, "final_domain": "atelierlaf.com", "title": "Atelier LAF | Handcrafted Fine Jewelry | Made in Montreal &ndash; Atelier LAF Montreal", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
169 179 {"domain": "atelierluclaramee.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.atelierluclaramee.com/", "active": true, "final_domain": "atelierluclaramee.com", "title": "Atelier Luc Laramée | Ébénistre | 10 Rue St Gérard, Saint-Stanislas-de-Champlain, QC G0X 3E0, Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0X 3E0", "qc_phone": "(514) 972-5122", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
170 180 {"domain": "ateliermajuli.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ateliermajuli.com/fr", "active": true, "final_domain": "ateliermajuli.com", "title": "Atelier Majuli", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
171 181 {"domain": "ateliermake.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://ateliermake.com/", "active": false}
@@ -176,6 +186,7 @@
176 186 {"domain": "atelierpare.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://atelierpare.com/", "active": true, "final_domain": "atelierpare.com", "title": "Atelier Par&eacute; - &eacute;conomus&eacute;e de la sculpture sur bois et des l&eacute;gendes - Accueil", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
177 187 {"domain": "atelierrmr.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://atelierrmr.com/", "active": false}
178 188 {"domain": "ateliersaintcerf.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ateliersaintcerf.com/", "active": true, "final_domain": "ateliersaintcerf.com", "title": "Jouets en bois recyclé | Atelier Saint-Cerf | Québec", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G6B 2J1", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
189 +{"domain": "ateliersderegis.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ateliersderegis.com/", "active": true, "final_domain": "ateliersderegis.com", "title": "Home", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
179 190 {"domain": "ateliertrilobe.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ateliertrilobe.com/", "active": true, "final_domain": "ateliertrilobe.com", "title": "Atelier Trilobe | sculpteur | 4619 Chemin Royal, Saint-Jean-de-l'Île-d'Orléans, QC, Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0A 3W0", "qc_phone": "418-609-2617", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
180 191 {"domain": "ateliervcuir.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ateliervcuir.com/", "active": true, "final_domain": "ateliervcuir.com", "title": "Atelier V Cuir | Sacs, Accessoires &amp; Articles Déco en cuir", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G0L 2H0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
181 192 {"domain": "atelierverred.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://atelierverred.com/", "active": true, "final_domain": "atelierverred.com", "title": "Atelier Verred - #ArtVisuel #Artisanat #CréationArtistique #ArtContemporain #ArtTraditionnel #ArtDuVerre #ArtEtDesign #ArtEnExposition #ArtLocal #ArtMontréal #ArtQuébécois #ArtEtPatrimoine #ArtÉmergen", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -283,6 +294,7 @@
283 294 {"domain": "balsai.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.balsai.ca/", "active": true, "final_domain": "balsai.ca", "title": "Ail Noir Quebec - BALSAÏ BIO", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 8, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
284 295 {"domain": "balsamumm.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.balsamumm.com/", "active": true, "final_domain": "balsamumm.com", "title": "Les produits Balsamumm | Réduction de vinaigre balsamique québécoise", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J3E 0C6", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
285 296 {"domain": "baralunettes.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://baralunettes.com/", "active": false}
297 +{"domain": "baraqueapots.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.baraqueapots.com/", "active": true, "final_domain": "baraqueapots.com", "title": "Baraque à Pots | Atelier de Poterie", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "H7L 2N5", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
286 298 {"domain": "barbenoire.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://barbenoire.com/", "active": true, "final_domain": "barbenoire.com", "title": "Accueil | Barbe noire &ndash; Barbe Noire", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0W 2L0", "qc_phone": "4184875000", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
287 299 {"domain": "barbonchocolate.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://barbonchocolate.com/", "active": true, "final_domain": "barbonchocolate.com", "title": "Barbon Chocolate: Montreal premium award-winning bean-to-bar", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 6, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
288 300 {"domain": "barbuck.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://barbuck.com/", "active": true, "final_domain": "barbuck.com", "title": "Call Tracking Software: Measure Hidden Sales Opportunities", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -305,6 +317,7 @@
305 317 {"domain": "behance.net", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.behance.net/", "active": true, "final_domain": "behance.net", "title": "Search Projects :: Photos, videos, logos, illustrations and branding :: Behance", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
306 318 {"domain": "bekebobo.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bekebobo.com/", "active": true, "final_domain": "bekebobo.com", "title": "Béké-bobo | L&#39;Ourson thérapeutique pour les petits &ndash; Béké-Bobo", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
307 319 {"domain": "bel-gaufre.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bel-gaufre.com/", "active": true, "final_domain": "bel-gaufre.com", "title": "Accueil - Bel-Gaufre", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 2, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
320 +{"domain": "belacaro.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://belacaro.com/", "active": true, "final_domain": "belacaro.com", "title": "BELACARO", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com"], "language": "en"}
308 321 {"domain": "bellechasse.chaudiereappalaches.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='bellechasse.chaudiereappalaches.com', port=443): Max retries exceeded with url: / (Caused by N", "HTTPSConnectionPool(host='www.bellechasse.chaudiereappalaches.com', port=443): Max retries exceeded with url: / (Caused "], "status": 502, "final_url": "http://bellechasse.chaudiereappalaches.com/", "active": false}
309 322 {"domain": "belpom.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.belpom.com/", "active": true, "final_domain": "belpom.com", "title": "VERGER BELPOM - ACCUEIL", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G9H 3K1", "qc_phone": "8193844224", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
310 323 {"domain": "belvache.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://belvache.ca/", "active": true, "final_domain": "belvache.ca", "title": "Les Fermes Belvache", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0N 1H0", "qc_phone": "450 478 2561", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
@@ -322,8 +335,32 @@
322 335 {"domain": "bieresdescantons.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://microbrasseriedescantons.com/", "active": true, "final_domain": "microbrasseriedescantons.com", "title": "Des Cantons Microbrasserie", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
323 336 {"domain": "bieresetplaisirs.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://plaisirsmedia.com/bieresetplaisirs/", "active": true, "final_domain": "plaisirsmedia.com", "title": "INDEX - Bières et Plaisirs - La référence Bière au Québec", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
324 337 {"domain": "bieresilo.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bieresilo.com/", "active": true, "final_domain": "bieresilo.com", "title": "Silo", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
338 +{"domain": "bijouterie-fournier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouterie-fournier.com/", "active": true, "final_domain": "bijouterie-fournier.com", "title": "Bijouterie joaillerie Fournier à Vienne", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
339 +{"domain": "bijouteriealarie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouteriealarie.com/", "active": true, "final_domain": "bijouteriealarie.com", "title": "Bijoutier à Trois-Rivières | Accueil | Bijouterie Alarie", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G9A 2B1", "qc_phone": "819-691-3117", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
340 +{"domain": "bijouteriebrenda.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouteriebrenda.ca/", "active": true, "final_domain": "bijouteriebrenda.ca", "title": "Bijouterie à Drummondville | Bijouterie Brenda", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J2B 1B4", "qc_phone": "819-477-3738", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
341 +{"domain": "bijouteriebrouillette.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouteriebrouillette.ca/", "active": true, "final_domain": "bijouteriebrouillette.ca", "title": "Bijouterie Brouillette : Bijoux de qualité à Granby", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "4503727242", "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
342 +{"domain": "bijouterieconcept.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouterieconcept.com/", "active": true, "final_domain": "bijouterieconcept.com", "title": "Bijouterie en ligne &bull; Bijouterie Concept - Sherbrooke", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J1N 1E8", "qc_phone": "(819) 791-9900", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
343 +{"domain": "bijouteriedeziel.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouteriedeziel.com/reconstruction.html", "active": true, "final_domain": "bijouteriedeziel.com", "title": "Bijouterie Déziel Joailliers | Site en reconstruction", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J2G 2Z4", "qc_phone": "4503751555", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
344 +{"domain": "bijouteriediplomate.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouteriediplomate.com/", "active": true, "final_domain": "bijouteriediplomate.com", "title": "Bijouterie Diplomate | Joaillier à Montréal depuis 1965 &ndash; BijouterieDiplomate", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
345 +{"domain": "bijouterieferland.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouterieferland.com/", "active": true, "final_domain": "bijouterieferland.com", "title": "Bijouterie Ferland", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
346 +{"domain": "bijouteriegiffard.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouteriegiffard.ca/", "active": true, "final_domain": "bijouteriegiffard.ca", "title": "Bijouterie Giffard", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
347 +{"domain": "bijouterieguerin.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouterieguerin.com/", "active": true, "final_domain": "bijouterieguerin.com", "title": "Bijouterie Guérin- Des bijoux uniques et raffinés pour chaque occasion", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G7H 1S8", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
348 +{"domain": "bijouteriejadore.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouteriejadore.com/", "active": true, "final_domain": "bijouteriejadore.com", "title": "Bijouterie Terrebonne - Bijouterie J&#039;Adore (450) 492-5315", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J6X 4H2", "qc_phone": "(450) 492-5315", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
349 +{"domain": "bijouteriejodoin.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouteriejodoin.com/", "active": true, "final_domain": "bijouteriejodoin.com", "title": "Bijouterie Jodoin", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J2G2V5", "qc_phone": "4503725131", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
350 +{"domain": "bijouterielampron.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouterielampron.com/", "active": true, "final_domain": "bijouterielampron.com", "title": "Bijouterie Lampron | Créations sur mesure, Bijoux &#038; Réparation à Drummondville &#8211; Bijouterie Lampron", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "819 472-5222", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
351 +{"domain": "bijouterielanglois.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouterielanglois.com/", "active": true, "final_domain": "bijouterielanglois.com", "title": "Bijouterie Langlois - Bijoutier en ligne, bijoux haut de gamme", "platform": "magento", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1M 3R8", "qc_phone": "(418) 683-3145", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
352 +{"domain": "bijouterielsm.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouterielsm.com/", "active": true, "final_domain": "bijouterielsm.com", "title": "Bijouterie à Montréal et en ligne &ndash; Bijouterie LSM", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
353 +{"domain": "bijouteriepenelope.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouteriepenelope.com/", "active": true, "final_domain": "bijouteriepenelope.com", "title": "Bijouterie Pénélope - Penelope", "platform": "lightspeed", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1V2L1", "qc_phone": "418-653-0945", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
354 +{"domain": "bijouterierussell.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouterierussell.ca/", "active": true, "final_domain": "bijouterierussell.ca", "title": "Bijouterie à Laval, Bijoux en or et argent | Bijouterie Russell", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H7G 2E9", "qc_phone": "514 388-1751", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
355 +{"domain": "bijouteriesergegagnon.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouteriesergegagnon.com/", "active": true, "final_domain": "bijouteriesergegagnon.com", "title": "Bijouterie Serge Gagnon - Hologer bijoutier à Québec", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 970, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1K 1K2", "qc_phone": "418 523 9637", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
356 +{"domain": "bijouteriesimard.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouteriesimard.ca/", "active": true, "final_domain": "bijouteriesimard.ca", "title": "Boutique Bijouterie Simard", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "418-548-4092", "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
357 +{"domain": "bijouteriestjean.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouteriestjean.com/", "active": true, "final_domain": "bijouteriestjean.com", "title": "Joaillerie St-Jean", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2X 3Y2", "qc_phone": "514-288-6561", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
358 +{"domain": "bijouterieveronneau.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouterieveronneau.com/", "active": true, "final_domain": "bijouterieveronneau.com", "title": "Bijouterie Véronneau | Bijoutier-joaillier à Longueuil depuis 1950", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J4H 2X7", "qc_phone": "450-670-6760", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
325 359 {"domain": "bijouxgli.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouxgli.com/", "active": true, "final_domain": "bijouxgli.com", "title": "Artisane Joaillière québécoise dans les Laurentides | Créations GLi", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
360 +{"domain": "bijouxmedusa.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouxmedusa.com/", "active": true, "final_domain": "bijouxmedusa.com", "title": "Bijoux Medusa | Bijouterie En Ligne No.1 Canada | Or, Diamant, Rolex", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G2K 2J6", "qc_phone": "418-437-2345", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
361 +{"domain": "bijouxmousseline.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouxmousseline.com/", "active": true, "final_domain": "bijouxmousseline.com", "title": "Mousseline-Bijoux Botaniques Québécois-Handmade Botanical Jewelry made in Quebec, Canada.", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J0B 1M0", "qc_phone": "8192389450", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
326 362 {"domain": "bijouxosmose.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bijouxosmose.ca/", "active": true, "final_domain": "bijouxosmose.ca", "title": "Bijoux Osmose | Bijoux en Étain | Fabriqué au Québec", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
363 +{"domain": "bijouxpepine.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='www.bijouxpepine.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLErro", "HTTPSConnectionPool(host='www.bijouxpepine.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLErro"], "status": 200, "final_url": "https://linktr.ee/bijouxpepine", "active": true, "final_domain": "linktr.ee", "title": "bijouxpepine Official: Instagram, Facebook | Linktree", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
327 364 {"domain": "bijouxzoeflare.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bijouxzoeflare.com/", "active": true, "final_domain": "bijouxzoeflare.com", "title": "Bijoux québécois pour femmes | Bijoux Zoëflare &ndash; Bijoux ZoëFlare", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
328 365 {"domain": "bio-actif.quebec", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bio-actif.quebec/", "active": true, "final_domain": "bio-actif.quebec", "title": "Produits naturels Bio-Actif pour la peau et la santé", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": true, "socials": ["instagram.com", "facebook.com"], "language": "en"}
329 366 {"domain": "bio-vert.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bio-vert.com/", "active": true, "final_domain": "bio-vert.com", "title": "Accueil - BIOVERT® | Biodegradable Cleaning Products", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 15, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -352,6 +389,7 @@
352 389 {"domain": "bleu-nature.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bleu-nature.com/", "active": true, "final_domain": "bleu-nature.com", "title": "Bleu-Nature | Accueil", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "418 276-9549", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
353 390 {"domain": "bleu.eco", "checked_at": "2026-08-12", "status": 429, "final_url": "https://bleu.eco/", "active": false}
354 391 {"domain": "bleucitron.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bleucitron.ca/", "active": true, "final_domain": "bleucitron.ca", "title": "Bleu Citron // Resto Bistro", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 1, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0R 2T0", "qc_phone": "(418) 887-1222", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
392 +{"domain": "bleucommeleciel.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bleucommeleciel.com/", "active": true, "final_domain": "bleucommeleciel.com", "title": "Bijouterie de fantaisie &ndash; Bleu Comme Le Ciel", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H3A 1N4", "qc_phone": "514-847-1128", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
355 393 {"domain": "bleuetbon.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bleuetbon.com/", "active": true, "final_domain": "bleuetbon.com", "title": "Bleu &amp; Bon", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 0, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0T 1T0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
356 394 {"domain": "bleuetiere-saguenoise.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bleuetiere-saguenoise.ca/", "active": true, "final_domain": "bleuetiere-saguenoise.ca", "title": "Accueil - Bleuetière Saguenoise", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0V 1N0", "qc_phone": "(418) 540-5212", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
357 395 {"domain": "bleuetierebenoit.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.bleuetierebenoit.com/", "active": true, "final_domain": "bleuetierebenoit.com", "title": "Bleuetière Benoit | bleuets | 2676 Chemin Vail, Dunham, QC, Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0E 1M0", "qc_phone": "4502952326", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
@@ -371,6 +409,7 @@
371 409 {"domain": "bodhigourmet.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://bodhigourmet.com/", "active": true, "final_domain": "bodhigourmet.com", "title": "Bodhi Gourmet &#8211; Bodhi Gourmet &#8211; Vegan Asian Sauces &#8211; Sauces v&eacute;g&eacute;tales asiatiques", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "(514) 961-5840", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
372 410 {"domain": "boemevegan.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boemevegan.com/", "active": true, "final_domain": "boemevegan.com", "title": "Home", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "(450) 569-9863", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
373 411 {"domain": "boeufalfred.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='boeufalfred.ca', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerifi", "HTTPSConnectionPool(host='www.boeufalfred.ca', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVe"], "status": 200, "final_url": "http://boeufalfred.ca/cgi-sys/suspendedpage.cgi", "active": true, "final_domain": "boeufalfred.ca", "title": "Account Suspended", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
412 +{"domain": "boisbelleau.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boisbelleau.ca/", "active": true, "final_domain": "boisbelleau.ca", "title": "BoisBelleau &#8211; Ébéniste", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": null}
374 413 {"domain": "boisdestcyr.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.boisdestcyr.com/", "active": true, "final_domain": "boisdestcyr.com", "title": "Bois de St-Cyr | Artisan Liquoriste", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
375 414 {"domain": "boisechoquette.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.boisechoquette.com/", "active": true, "final_domain": "boisechoquette.com", "title": "Accueil- Saveurs du boisé Choquette", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0A 1A0", "qc_phone": "819-574-4401", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
376 415 {"domain": "boissonchouchou.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boissonchouchou.ca/", "active": true, "final_domain": "boissonchouchou.ca", "title": "Ta nouvelle boisson chouchou ! &ndash; Boisson chouchou", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
@@ -442,6 +481,7 @@
442 481 {"domain": "boutique.legoutdelacotenord.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boutique.legoutdelacotenord.ca/", "active": true, "final_domain": "boutique.legoutdelacotenord.ca", "title": "Des saveurs qui vous transportent | le Goût de la Côte-Nord &ndash; Le goût de la Côte-Nord", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
443 482 {"domain": "boutique.lesmauvaisesherbes.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boutique.lesmauvaisesherbes.com/", "active": true, "final_domain": "boutique.lesmauvaisesherbes.com", "title": "Les Mauvaises Herbes | Faire soi-même", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "H2S 2M2", "qc_phone": "(514) 386-2433", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
444 483 {"domain": "boutique.maisonducafelarmorique.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boutique.maisonducafelarmorique.com/", "active": true, "final_domain": "boutique.maisonducafelarmorique.com", "title": "Torréfaction de café artisanal, choix de cafés en grain et autres &ndash; Maison du café l&#39;Armorique", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": "(819) 825-4300", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
484 +{"domain": "boutique.marie-evebordeleau.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boutique.marie-evebordeleau.com/", "active": true, "final_domain": "boutique.marie-evebordeleau.com", "title": "Bijoux argent sterling faits à la main au Québec, Marie-Eve Bordeleau &ndash; Marie-Eve Bordeleau, Sculptures prêtes à porter", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": "(819) 690-6218", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
445 485 {"domain": "boutique.microdulac.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boutique.microdulac.com/", "active": true, "final_domain": "boutique.microdulac.com", "title": "Microbrasserie du Lac Saint-Jean", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
446 486 {"domain": "boutique.mielabitemis.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boutique.mielabitemis.com/", "active": true, "final_domain": "boutique.mielabitemis.com", "title": "Miel Abitémis - Nos produits", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": null, "via": "direct"}
447 487 {"domain": "boutique.mielestrie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://boutique.mielestrie.com/", "active": true, "final_domain": "boutique.mielestrie.com", "title": "Miellerie de l'Estrie | Beecore", "platform": "lightspeed", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J1N0B5", "qc_phone": "8198221103", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -616,11 +656,13 @@
616 656 {"domain": "capricesdantan.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='capricesdantan.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVe", "HTTPSConnectionPool(host='www.capricesdantan.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCe"], "status": 200, "final_url": "https://lescapricesdantan.qc.ca/fr/home/", "active": true, "final_domain": "lescapricesdantan.qc.ca", "title": "Les caprices d&#039;antan", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 58, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "418-877-8614", "mentions_quebec": true, "tld_quebec": true, "socials": ["facebook.com"], "language": "fr"}
617 657 {"domain": "caprijol.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='caprijol.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerifica", "HTTPSConnectionPool(host='www.caprijol.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVeri"], "status": 200, "final_url": "http://caprijol.com/", "active": true, "final_domain": "caprijol.com", "title": "Redirecting...", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
618 658 {"domain": "capriravioli.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://capriravioli.com/", "active": true, "final_domain": "capriravioli.com", "title": "Capri Ravioli &#8211; Tasty . Delicious . Savoury", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H1E 4B6", "qc_phone": "514.648.5262", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com"], "language": "en"}
659 +{"domain": "captiveatelier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://captiveatelier.com/", "active": true, "final_domain": "captiveatelier.com", "title": "Home | Captive Atelier", "platform": "snipcart", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "H1V 1Y1", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
619 660 {"domain": "caramelsfaa.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://caramelsfaa.com/", "active": true, "final_domain": "caramelsfaa.com", "title": "Caramels FAA - Meilleur Caramel au Québec - Produits 100% Québécois &ndash; Caramels FAA - Le véritable caramel du Québec", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
620 661 {"domain": "cargill.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://cargill.com", "active": true, "final_domain": "cargill.com", "title": "Creating a more food secure world | Cargill", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
621 662 {"domain": "carigingembre.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://carigingembre.com/", "active": true, "final_domain": "carigingembre.com", "title": "Cari &amp; Gingembre | Plaisirs à emporter", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
622 663 {"domain": "carismo-creations.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://carismo-creations.com/", "active": true, "final_domain": "carismo-creations.com", "title": "Donner et rayonner avec la boîte cadeau lumineuse carismo", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
623 664 {"domain": "carnetdautrepart.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://carnetdautrepart.com/", "active": true, "final_domain": "carnetdautrepart.com", "title": "Choisissez votre roman. Plongez-vous dedans à 200%. &ndash; Carnet d&#39;autre part", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
665 +{"domain": "carolineneron.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://carolineneron.com/", "active": true, "final_domain": "carolineneron.com", "title": "Caroline Néron - Bijouterie en Ligne &ndash; Bijoux Caroline Neron", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
624 666 {"domain": "carolinesavoiejoaillerie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://carolinesavoiejoaillerie.com/", "active": true, "final_domain": "carolinesavoiejoaillerie.com", "title": "Joaillier Québécois - Bijouterie Montréal - Caroline Savoie Joaillerie", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 241, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2J2M1", "qc_phone": "514-502-3001", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
625 667 {"domain": "carrecourbe.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://carrecourbe.com/", "active": true, "final_domain": "carrecourbe.com", "title": "carré courbe &#8211; Marielle Saucier, artiste de la fibre et artisane textile", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
626 668 {"domain": "carrefoursolidaire.org", "checked_at": "2026-08-12", "status": 200, "final_url": "https://carrefoursolidaire.org/", "active": true, "final_domain": "carrefoursolidaire.org", "title": "Carrefour solidaire centre communautaire d’alimentation", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "H2K 2J5", "qc_phone": "514 525 6611", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
@@ -716,6 +758,7 @@
716 758 {"domain": "chicoutai.com", "checked_at": "2026-08-12", "errors": ["('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))", "('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))"], "status": 200, "final_url": "http://chicoutai.com/", "active": true, "final_domain": "chicoutai.com", "title": "Maison de la Chicoutai", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
717 759 {"domain": "chicplacard.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.chicplacard.ca/", "active": true, "final_domain": "chicplacard.ca", "title": "Chic Placard", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G4W 2Y3", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
718 760 {"domain": "chikanda.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://alimentschika.com/", "active": true, "final_domain": "chikanda.ca", "title": "Aliments Chika", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
761 +{"domain": "chikiboom.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='chikiboom.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerific", "HTTPSConnectionPool(host='www.chikiboom.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVer"], "status": 200, "final_url": "http://chikiboom.com/", "active": true, "final_domain": "chikiboom.com", "title": "Web Hosting from HostPapa", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
719 762 {"domain": "chlorophylle.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://chlorophylle.com/fr", "active": true, "final_domain": "chlorophylle.com", "title": "Vêtements de plein air conçus au Québec pour affronter les quatre saisons", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G7H 1R9", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
720 763 {"domain": "chocochocolat.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://chocochocolat.ca/", "active": true, "final_domain": "chocochocolat.ca", "title": "Choco Chocolat - Boutique et atelier - Chocolaterie", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 75, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J6E 3E4", "qc_phone": "4507555535", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
721 764 {"domain": "chocolaterie.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://chocolaterie.ca/", "active": true, "final_domain": "chocolaterie.ca", "title": "Chocolaterie du Vieux-Beloeil - Chocolat et caramel", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 42, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J3G 6S3", "qc_phone": "450.464.6075", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -785,6 +828,7 @@
785 828 {"domain": "colibrivanille.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://colibrivanille.com/", "active": true, "final_domain": "colibrivanille.com", "title": "Colibri Vanille | vanille naturelle et extrait de vanille &ndash; Colibrivanille.com", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
786 829 {"domain": "collationsdecloe.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://collationsdecloe.com/", "active": true, "final_domain": "collationsdecloe.com", "title": "Collations de Cloé | Fruits Lyophilisés Sans Sucre Ajouté", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
787 830 {"domain": "collectifensemble.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://collectifensemble.com/", "active": true, "final_domain": "collectifensemble.com", "title": "Bière biologique et artisanale | Collectif brassicole Ensemble", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "J4B 5H3", "qc_phone": "514 312-3035", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
831 +{"domain": "collections.bleuetdart.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://collections.bleuetdart.com/", "active": true, "final_domain": "collections.bleuetdart.com", "title": "Bleuet d’art, une entreprise qui se distingue", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
788 832 {"domain": "collineauxbleuets.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.collineauxbleuets.com/", "active": true, "final_domain": "collineauxbleuets.com", "title": "Autocueillette | collineauxbleuets", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0E1M0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
789 833 {"domain": "colorantic.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://colorantic.com/", "active": true, "final_domain": "colorantic.com", "title": "Accueil - Colorantic", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 241, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": "819-795-4442", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
790 834 {"domain": "comautrefois.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://comautrefois.ca/", "active": true, "final_domain": "comautrefois.ca", "title": "Vignoble Com&#039;Autrefois &#8211; Vignoble Com&#039;Autrefois", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0S 1T0", "qc_phone": "(819) 740-4174", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -800,6 +844,7 @@
800 844 {"domain": "conceptioncuir.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://conceptioncuir.com/", "active": true, "final_domain": "conceptioncuir.com", "title": "Accueil - Conception Cuir", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 300, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G7B 3M7", "qc_phone": "418-548-2268", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
801 845 {"domain": "conceptrenoplus.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.conceptrenoplus.ca/", "active": true, "final_domain": "conceptrenoplus.ca", "title": "Entrepreneur Général expert en rénovation résidentielle | Concept Renoplus", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "514.836.5231", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
802 846 {"domain": "concretememory.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://concretememory.com/", "active": true, "final_domain": "concretememory.com", "title": "Concrete Memory - Décorations modernes en béton", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
847 +{"domain": "cone10.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://cone10.ca/", "active": true, "final_domain": "cone10.ca", "title": "Atelier Cône10", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2W 2M4", "qc_phone": "5142593699", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
803 848 {"domain": "confettimill.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.confettimill.com/", "active": true, "final_domain": "confettimill.com", "title": "Atelier Confetti Mill - Pure linen and curated objects", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
804 849 {"domain": "confitepiceriebuvette.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.confitepiceriebuvette.com/", "active": true, "final_domain": "confitepiceriebuvette.com", "title": "Confit Épicerie-Buvette", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
805 850 {"domain": "confreriebrasseurs.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://confreriebrasseurs.com/", "active": true, "final_domain": "confreriebrasseurs.com", "title": "La Confrérie Artisans Brasseurs", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J1S 0J1", "qc_phone": "8196280260", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -844,6 +889,7 @@
844 889 {"domain": "coureusedesgreves.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.coureusedesgreves.com/", "active": true, "final_domain": "coureusedesgreves.com", "title": "La Coureuse Des Grèves | Restaurant Terrasse | Saint-Jean-Port-Joli", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0R 3G0", "qc_phone": "418-598-9111", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
845 890 {"domain": "courgescie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://courgescie.com/", "active": true, "final_domain": "courgescie.com", "title": "Courges &amp; Cie - Courges et produits locaux", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "8196630089", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
846 891 {"domain": "coussinsetc.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://coussinsetc.com/", "active": true, "final_domain": "coussinsetc.com", "title": "Coussins d&#39;allaitement et de positionnement | Coussins etc", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
892 +{"domain": "couteauxdeva.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://couteauxdeva.com/", "active": true, "final_domain": "couteauxdeva.com", "title": "Couteaux Deva &#8212; Dave Fortin, Coutelier et affûteur québécois", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 52, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
847 893 {"domain": "couteauxkaizenknives.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.couteauxkaizenknives.com/", "active": true, "final_domain": "couteauxkaizenknives.com", "title": "Handmade Kitchen Knives | Kaizen Knives", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "H2H 1N7", "qc_phone": "514-581-8153", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null}
848 894 {"domain": "couteauxma.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.couteauxma.com/", "active": true, "final_domain": "couteauxma.com", "title": "Artisan Coutelier | Couteaux Mà | Montréal", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "H2P 2K7", "qc_phone": "5148989443", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
849 895 {"domain": "coutelleriedartpierreroy.com", "checked_at": "2026-08-12", "status": 404, "final_url": "https://www.coutelleriedartpierreroy.com/", "active": false}
@@ -857,9 +903,12 @@
857 903 {"domain": "cpelacajolerie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://cpelacajolerie.com", "active": true, "final_domain": "cpelacajolerie.com", "title": "CPE Les petits cailloux &#8211; Centre de la petite enfance à Chicoutimi, St-Honoré et St-Fulgence", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G7G 1J5", "qc_phone": "418-545-8183", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": null, "via": "scrapfly"}
858 904 {"domain": "craler.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://craler.com/fr/", "active": true, "final_domain": "craler.com", "title": "Craler transports spécialisés et logistique de transport", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J6Z 4T2", "qc_phone": "450-681-6860", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
859 905 {"domain": "cratereetmarees.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://cratereetmarees.ca/", "active": true, "final_domain": "cratereetmarees.ca", "title": "", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
906 +{"domain": "crea-pierre.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://crea-pierre.com/", "active": true, "final_domain": "crea-pierre.com", "title": "créa-pierre | Taille de pierre, restauration patrimoniale, sculpture", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "514-779-2042", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
860 907 {"domain": "createursdesaveursetcie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.createursdesaveursetcie.com/", "active": true, "final_domain": "createursdesaveursetcie.com", "title": "Fins produits gourmets du Québec - Créateurs de Saveurs & Cie - Lanaudière - Québec", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
908 +{"domain": "creationsbranie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://creationsbranie.com/", "active": true, "final_domain": "creationsbranie.com", "title": "Les créations Branie // Bijoux faits à la main", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
861 909 {"domain": "creationsdancelia.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://creationsdancelia.ca/", "active": true, "final_domain": "creationsdancelia.ca", "title": "https://creationsdancelia.ca/ &ndash; Creations DanceliA", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
862 910 {"domain": "creationsladentsucree.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://creationsladentsucree.com/", "active": true, "final_domain": "creationsladentsucree.com", "title": "Créations La Dent Sucrée - Gâteau Artistique et Desserts Corporatifs", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
911 +{"domain": "creationslalouve.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://creationslalouve.com/", "active": true, "final_domain": "creationslalouve.com", "title": "Créations La Louve", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
863 912 {"domain": "creationsmoutonnoir.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://creationsmoutonnoir.com", "active": true, "final_domain": "creationsmoutonnoir.com", "title": "La Petite Ferme du Mouton Noir | Vêtements Bébé et Enfant Fait au Québec", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "H2G 1N2", "qc_phone": "514 271-9760", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
864 913 {"domain": "creationsodie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://creationsodie.com/", "active": true, "final_domain": "creationsodie.com", "title": "Créations Odie | Univers des tout-petits | Aquarelle personnalisée", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
865 914 {"domain": "creationszonta.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://creationszonta.ca/", "active": true, "final_domain": "creationszonta.ca", "title": "Bijoux artisanaux en pierres semi-précieuses | Créations Zonta", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -943,11 +992,13 @@
943 992 {"domain": "dermtek.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://dermtek.com/", "active": true, "final_domain": "dermtek.com", "title": "Dermtek", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H9R 1C8", "qc_phone": "514 685-3333", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
944 993 {"domain": "deschaillons.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.deschaillons.ca/", "active": true, "final_domain": "deschaillons.ca", "title": "Bienvenue à Deschaillons-sur-Saint-Laurent", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0S 1G0", "qc_phone": "8192922085", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
945 994 {"domain": "desenfantillages.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://desenfantillages.com/", "active": true, "final_domain": "desenfantillages.com", "title": "Des enfantillages | Jouets, accessoires et ateliers pour enfants &ndash; des enfantillages", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
995 +{"domain": "designgama.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.designgama.com/", "active": true, "final_domain": "designgama.com", "title": "Remodelage de fourrure - Créations GAMA Montréal - Entreposage de fourrure", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H1A 1K2", "qc_phone": "(514) 843-3045", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
946 996 {"domain": "desloups.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://desloups.ca/", "active": true, "final_domain": "desloups.ca", "title": "Desloups manteaux chauds faits au Québec", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "H2X 3L7", "qc_phone": "514-527-0925", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
947 997 {"domain": "desrochersd.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://desrochersd.com/", "active": true, "final_domain": "desrochersd.com", "title": "Desrochers D", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
948 998 {"domain": "destinationautocueillette.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://destinationautocueillette.com/", "active": true, "final_domain": "destinationautocueillette.com", "title": "Fraisière Lauzon et Fils | Fraise, citrouille | Sainte-Anne-des-Plaines | Autocueillette de fraises à Sainte-Anne-des-Plaines. Découvrez les petits fruits frais de la ferme Fraisière Lauzon et Fils.", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J5N 4C9", "qc_phone": "4504787605", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
949 999 {"domain": "detailquebec.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://detailquebec.com/", "active": true, "final_domain": "detailquebec.com", "title": "Votre référence en matière de main-d&#039;oeuvre | Détail Québec", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 8, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H3A 1B9", "qc_phone": "514 393-0222", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
950 1000 {"domain": "detourenfrance.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://detourenfrance.com/", "active": true, "final_domain": "detourenfrance.com", "title": "Producteur de terrines et rillettes | Détour en France", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0R 1S0", "qc_phone": "418 625-2004", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1001 +{"domain": "devidrio.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.devidrio.ca/", "active": true, "final_domain": "devidrio.ca", "title": "Devidrio [ Création et restauration de vitraux et d'objets en verre ]", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "819 373-3773", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
951 1002 {"domain": "devinci.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.devinci.com/fr/", "active": true, "final_domain": "devinci.com", "title": "Cycles Devinci - Fier fabriquant de v&#233;los et de v&#233;lo &#224; assistance &#233;lectrique au Canada | Cycles Devinci", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G7K 1G8", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
952 1003 {"domain": "dfevaluation.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://dfevaluation.com/", "active": true, "final_domain": "dfevaluation.com", "title": "Vos évaluateurs de voiture | DF Évaluation", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J2H0T4", "qc_phone": "(450) 372-3663", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
953 1004 {"domain": "diegocaddys.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://diegocaddys.com/", "active": true, "final_domain": "diegocaddys.com", "title": "Diego", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -1033,9 +1084,11 @@
1033 1084 {"domain": "domainevertforet.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.domainevertforet.ca/", "active": true, "final_domain": "domainevertforet.ca", "title": "Domaine vert forêt | Ferme biologique Bas-Saint-Laurent", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "G0L 1A0", "qc_phone": "418.899.0987", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
1034 1085 {"domain": "dominicdufourjoaillier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://dominicdufourjoaillier.com", "active": true, "final_domain": "dominicdufourjoaillier.com", "title": "Dominic Dufour, artisan Joaillier, création sur mesure - remodelage - réparation.", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J7A 1H3", "qc_phone": "4508180119", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
1035 1086 {"domain": "dominiongrimm.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.dominiongrimm.ca/", "active": true, "final_domain": "dominiongrimm.ca", "title": "Emballages et équipements d'érablière | Dominion & Grimm", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1087 +{"domain": "donjjewellery.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://donjjewellery.com/", "active": true, "final_domain": "donjjewellery.com", "title": "Donj Jewellery | Engagement Rings, Wedding Rings &amp; Gold Jewelry", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 429, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H7V 2W4", "qc_phone": "(450) 231-0641", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
1036 1088 {"domain": "doranola.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://doranola.com/fr", "active": true, "final_domain": "doranola.com", "title": "Dora Nola, luxueux foulards de soie créés par Manuela Jarry, artiste", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2Y 1G8", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1037 1089 {"domain": "dosport.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://dosport.ca/", "active": true, "final_domain": "dosport.ca", "title": "Paddle boards (SUP) rigides fabriqués au Québec – Do Sport &ndash; DO Sport 3R inc.", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
1038 1090 {"domain": "dou.bio", "checked_at": "2026-08-12", "status": 200, "final_url": "https://dou.bio/", "active": true, "final_domain": "dou.bio", "title": "Doü produits d&#39;érable biologiques", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": null, "via": "direct"}
1091 +{"domain": "doucetlatendresse.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.doucetlatendresse.com/", "active": true, "final_domain": "doucetlatendresse.com", "title": "Les Bijoutiers Doucet Latendresse – Bijouterie en ligne no.1 au Québec", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0H1A0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
1039 1092 {"domain": "douceurdici.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://douceurdici.ca/", "active": true, "final_domain": "douceurdici.ca", "title": "Fabriquant de produits de l&#39;érable &ndash; Douceur-dici", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
1040 1093 {"domain": "douceursdesappalaches.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='douceursdesappalaches.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SS"], "status": 200, "final_url": "https://www.douceursdesappalaches.com/", "active": true, "final_domain": "douceursdesappalaches.com", "title": "Produits de la ruche faits à la main &ndash; Douceurs des Appalaches", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": "418-999-2358", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
1041 1094 {"domain": "doupando.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.doupando.com/fr/", "active": true, "final_domain": "doupando.com", "title": "Offrez un livre personnalisé à votre enfant | Doupando", "platform": "prestashop", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "H3S 2H7", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -1043,6 +1096,7 @@
1043 1096 {"domain": "drolet.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.drolet.ca/", "active": true, "final_domain": "drolet.ca", "title": "Drolet", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
1044 1097 {"domain": "druidebio.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://druidebio.com", "active": true, "final_domain": "druidebio.com", "title": "Home | Laboratoires Druide® | Bio For Life", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "3679363680", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
1045 1098 {"domain": "dubeloiselle.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.dubeloiselle.ca/fr/accueil", "active": true, "final_domain": "dubeloiselle.ca", "title": "Dubé Loiselle - Distributeur alimentaire québécois", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1099 +{"domain": "duchanvre.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://duchanvre.com/", "active": true, "final_domain": "duchanvre.com", "title": "DuChanvre - Spécialistes en isolation de béton de chanvre et finitions", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 1, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": "819 640-2511", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1046 1100 {"domain": "ducsdemontrichard.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ducsdemontrichard.com/", "active": true, "final_domain": "ducsdemontrichard.com", "title": "Ducs de Montrichard – Artisan de bons moments &ndash; ducsdemontrichard", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J1X 6J4", "qc_phone": "819 868-4217", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
1047 1101 {"domain": "duhaimegourmet.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.duhaimegourmet.com/", "active": true, "final_domain": "duhaimegourmet.com", "title": "Duhaime Gourmet &#8211; Des produits de qualité produit par des passionné.e.s", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 40, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0C 1K0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1048 1102 {"domain": "duminot.com", "checked_at": "2026-08-12", "errors": ["('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))"], "status": 200, "final_url": "https://www.duminot.com/", "active": true, "final_domain": "duminot.com", "title": "Accueil - La Cidrerie du Minot", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "450-247-3111", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -1061,6 +1115,7 @@
1061 1115 {"domain": "ebenisteriepelletieretfils.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ebenisteriepelletieretfils.com/", "active": true, "final_domain": "ebenisteriepelletieretfils.com", "title": "&Eacute;b&eacute;nisterie Pelletier et fils", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
1062 1116 {"domain": "ebenisteriestevegenesse.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ebenisteriestevegenesse.com/", "active": true, "final_domain": "ebenisteriestevegenesse.com", "title": "Ébénisterie Steve Genesse", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
1063 1117 {"domain": "echappeeiac.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://echappeeiac.com/", "active": true, "final_domain": "echappeeiac.com", "title": "L&#39;Échappée de l&#39;Isle-aux-Coudres", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1118 +{"domain": "ecksand.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ecksand.com/", "active": true, "final_domain": "ecksand.com", "title": "Ecksand® | Engagement Rings &amp; Fine Jewelry Online Boutique", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H3B 1L9", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
1064 1119 {"domain": "ecoboeuf.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ecoboeuf.com/", "active": true, "final_domain": "ecoboeuf.com", "title": "Boeuf Nourri À L'herbe | Écoboeuf | Québec", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
1065 1120 {"domain": "ecoledu3iemerang.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ecoledu3iemerang.com/", "active": true, "final_domain": "ecoledu3iemerang.com", "title": "L'École du 3e Rang | Vignoble et Cidrerie | 5 fruits à boire | Saint-Joachim-de-Shefford", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0E 2G0", "qc_phone": "450 539-5467", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1066 1121 {"domain": "ecolocado.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ecolocado.com/", "active": true, "final_domain": "ecolocado.com", "title": "Ecolocado - Boîtes Cadeaux - Produits Québécois et Écolos", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 188, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -1483,6 +1538,7 @@
1483 1538 {"domain": "gelcare.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://gelcare.com/", "active": true, "final_domain": "gelcare.com", "title": "GELCARE | Gel Nail Polish, Nail Kits &amp; Nail Art — Made in Canada", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
1484 1539 {"domain": "gelsani-k.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='gelsani-k.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionError(\"HTT", "HTTPSConnectionPool(host='www.gelsani-k.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionError(", "HTTPConnectionPool(host='gelsani-k.ca', port=80): Max retries exceeded with url: / (Caused by NameResolutionError(\"HTTPC"], "status": null, "final_url": "", "active": false}
1485 1540 {"domain": "gemmelesirop.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://gemmelesirop.ca/", "active": true, "final_domain": "gemmelesirop.ca", "title": "Gemme le sirop", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1541 +{"domain": "gemmesquebec.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.gemmesquebec.com/", "active": true, "final_domain": "gemmesquebec.com", "title": "Gemmes Québec - Fabricant de bijoux sertis avec les pierres gemmes du Québec", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G1R 3V7", "qc_phone": "(418) 692-2109", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
1486 1542 {"domain": "gen-v.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://gen-v.com/fr", "active": true, "final_domain": "gen-v.com", "title": "Gen V : Manger selon ses valeurs | Cultures Gen V", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0L 1W0", "qc_phone": "(450) 826-3117", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1487 1543 {"domain": "genacol.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://genacol.ca/", "active": true, "final_domain": "genacol.ca", "title": "Genacol : Suppléments naturels pour la santé articulaire", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1488 1544 {"domain": "genevrier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://genevrier.com/", "active": true, "final_domain": "genevrier.com", "title": "Accueil - Genévrier", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
@@ -1530,6 +1586,7 @@
1530 1586 {"domain": "grandfrene.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://grandfrene.ca/", "active": true, "final_domain": "grandfrene.ca", "title": "Atelier du Grand Frêne", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1531 1587 {"domain": "grandmaemily.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.grandmaemily.com/", "active": true, "final_domain": "grandmaemily.com", "title": "Organic and Natural Granola, Cereals , Bars, and Snacks &ndash; Grandma Emily Inc.", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
1532 1588 {"domain": "grangeboustifaille.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.grangeboustifaille.com/", "active": true, "final_domain": "grangeboustifaille.com", "title": "Grange &amp; Boustifaille", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "(418) 313-7596", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1589 +{"domain": "grangerfabco.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.grangerfabco.com/", "active": true, "final_domain": "grangerfabco.com", "title": "Home | Granger Fab", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
1533 1590 {"domain": "grangesmaraicheres.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.grangesmaraicheres.com/", "active": true, "final_domain": "grangesmaraicheres.com", "title": "Granges maraîchères St-Antoine", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0A 2M0", "qc_phone": "(514) 992-6706", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1534 1591 {"domain": "greenbeaver.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://greenbeaver.com/fr", "active": true, "final_domain": "greenbeaver.com", "title": "Produits de soins de la peau et bucco-dentaires canadiens naturels &ndash; Green Beaver", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
1535 1592 {"domain": "greenfarmnuts.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://greenfarmnuts.com/", "active": true, "final_domain": "greenfarmnuts.com", "title": "Wholesale Nuts Supplier Canada | Green Farm", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J6J 4Z2", "qc_phone": "514-439-3363", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
@@ -1560,6 +1617,7 @@
1560 1617 {"domain": "guptech.ca", "checked_at": "2026-08-12", "status": 429, "final_url": "https://guptech.ca/", "active": false}
1561 1618 {"domain": "gutsykombucha.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://gutsydrinks.com/fr", "active": true, "final_domain": "gutsykombucha.com", "title": "Boissons Fermentées Gutsy | Énergie naturelle | Brassé à Montréal", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
1562 1619 {"domain": "gvsnowshoes.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.gvsnowshoes.com/fr", "active": true, "final_domain": "gvsnowshoes.com", "title": "Raquettes GV | Fabricant de raquettes à neige", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
1620 +{"domain": "gwenwyvaarartisane.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://gwenwyvaarartisane.com/", "active": true, "final_domain": "gwenwyvaarartisane.com", "title": "Gwenwyvaar Artisane Textile &#8211; Arts textiles, Histoire et Traditions", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J5J2S2", "qc_phone": "4383951548", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1563 1621 {"domain": "habitudedesign.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.habitudedesign.ca/", "active": true, "final_domain": "habitudedesign.ca", "title": "Habitude - Friperie et Boutique Cadeau &agrave; Gatineau/Ottawa - Fait au Canada Achat local Fait au Qu&eacute;bec", "platform": "lightspeed", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J8Y 3Z8", "qc_phone": "8193075076", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1564 1622 {"domain": "hagen.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://hagen.com/", "active": true, "final_domain": "hagen.com", "title": "Hagen Group | Canadian Pet Product Supplier", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
1565 1623 {"domain": "haltedespelerins.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://haltedespelerins.com/", "active": true, "final_domain": "haltedespelerins.com", "title": "Vignoble La Halte des Pèlerins | Visites. Réceptions. Vins", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J1H 0E1", "qc_phone": "819 563-5115", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -1606,6 +1664,7 @@
1606 1664 {"domain": "hopelay.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://hopelay.com/", "active": true, "final_domain": "hopelay.com", "title": "Hopelay | Microbrasserie de Quartier", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "J5M 2T2", "qc_phone": "450-215-4677", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1607 1665 {"domain": "hopera.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.hopera.ca/", "active": true, "final_domain": "hopera.ca", "title": "Hopera | Microbrasserie et pizzeria | Jonquière", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "G7X 6L4", "qc_phone": "418 412-9900", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
1608 1666 {"domain": "hopstation.net", "checked_at": "2026-08-12", "status": 503, "final_url": "https://hopstation.net/", "active": false}
1667 +{"domain": "horacejewelry.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://horacejewelry.com/", "active": true, "final_domain": "horacejewelry.com", "title": "Bijoux Québécois - Bijouterie En Ligne | Horace Jewelry &ndash; HoraceJewelry", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1609 1668 {"domain": "horizonsante.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://horizonsante.ca/", "active": true, "final_domain": "horizonsante.ca", "title": "Horizon Santé - Pharmacies - Plus près de vous", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1610 1669 {"domain": "hotel-saguenay.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.hotel-saguenay.com/", "active": true, "final_domain": "hotel-saguenay.com", "title": "Hôtel Saguenay | Hôtel Battures sur le Fjord-du-Saguenay - Réservez Une Chambre au Saguenay Lac-Saint-Jean au Meilleur Hotel de la Région", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "(418) 544-8234", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1611 1670 {"domain": "hotelaupetitberger.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://hotelaupetitberger.com/", "active": true, "final_domain": "hotelaupetitberger.com", "title": "Hôtel au Petit Berger &#8211; Hôtel champêtre dans Charlevoix", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -1619,6 +1678,7 @@
1619 1678 {"domain": "hotellerustique.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.hotellerustique.ca/", "active": true, "final_domain": "hotellerustique.ca", "title": "Hotel le rustique | st-irénée | 285 Rue Principale, Saint-Irénée, QC, Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0T 1V0", "qc_phone": "581-326-5934", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
1620 1679 {"domain": "hotelmontfort.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://hotelmontfort.ca/", "active": true, "final_domain": "hotelmontfort.ca", "title": "Hôtel Montfort", "platform": "snipcart", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J3T 1W4", "qc_phone": "819 293-6262", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1621 1680 {"domain": "howcharming.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://howcharming.ca/", "active": true, "final_domain": "howcharming.ca", "title": "HowCharming", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com"], "language": "en"}
1681 +{"domain": "hoya-atelier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.hoya-atelier.com/", "active": true, "final_domain": "hoya-atelier.com", "title": "Hoya.Atelier", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1622 1682 {"domain": "hparfums.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://hparfums.com/", "active": false}
1623 1683 {"domain": "hugoandclay.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.hugoandclay.com/", "active": true, "final_domain": "hugoandclay.com", "title": "Hugo&amp;Clay", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1624 1684 {"domain": "hugodidier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://hugodidier.com/", "active": true, "final_domain": "hugodidier.com", "title": "Hugo Didier Céramiste &#8211; Not Made In China", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 54, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
@@ -1629,6 +1689,7 @@
1629 1689 {"domain": "hydroquebec.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://hydroquebec.com/", "active": true, "final_domain": "hydroquebec.com", "title": "Redirection", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
1630 1690 {"domain": "hydrotuiles.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://hydrotuiles.ca/", "active": true, "final_domain": "hydrotuiles.ca", "title": "HYDROTUILES &#8211; Carreaux de ciment, en relief et breeze blocks faits au Québec", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com"], "language": "fr"}
1631 1691 {"domain": "i.etsystatic.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://i.etsystatic.com/", "active": true, "final_domain": "i.etsystatic.com", "title": "", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
1692 +{"domain": "icelainetricot.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://icelainetricot.com/", "active": true, "final_domain": "icelainetricot.com", "title": "Icelaine - Tricots confectionn�s � la main � partir de laine de moutons islandais", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "G6V 8L5", "qc_phone": "418-304-3009", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
1632 1693 {"domain": "ici-la.co", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ici-la.co/", "active": true, "final_domain": "ici-la.co", "title": "T-shirts &amp; Souvenirs Personnalisés de chez toi &vert; Ici &amp; Là - T-shirts &amp; Souvenirs de chez toi", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
1633 1694 {"domain": "icionfaitbougerleschoses.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://icionfaitbougerleschoses.com/", "active": true, "final_domain": "icionfaitbougerleschoses.com", "title": "Accueil - Centre-du-Québec", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1634 1695 {"domain": "icq.affiliationfocus.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://icq.affiliationfocus.com/", "active": true, "final_domain": "icq.affiliationfocus.com", "title": "", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
@@ -1649,11 +1710,13 @@
1649 1710 {"domain": "impactessentials.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.impactessentials.ca/fr", "active": true, "final_domain": "impactessentials.ca", "title": "IMPACT Essentials | Soins Naturels d’Exception", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H1B 5K1", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
1650 1711 {"domain": "imperialsnacking.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.imperialpopcorn.com/", "active": true, "final_domain": "imperialpopcorn.com", "title": "Imperial Popcorn | Maïs éclaté fait au Québec", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1651 1712 {"domain": "impressfoods.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.impressfoods.com/", "active": true, "final_domain": "impressfoods.com", "title": "Impress Foods - Organic raw juices, probiotics and baby food", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 82, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1E 3L2", "qc_phone": "418 663-7477", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1713 +{"domain": "indi-gene.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://indi-gene.ca/", "active": true, "final_domain": "indi-gene.ca", "title": "INDIGENE", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G1L 2V3", "qc_phone": "418.554.4226", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
1652 1714 {"domain": "indigosuperfruit.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://indigosuperfruit.com/", "active": true, "final_domain": "indigosuperfruit.com", "title": "camerises congelees indigo super fruit // Produit", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "450-991-0898", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1653 1715 {"domain": "inewa.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='inewa.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificatio", "HTTPSConnectionPool(host='www.inewa.com', port=443): Max retries exceeded with url: / (Caused by NameResolutionError(\"HT"], "status": 200, "final_url": "https://inewa.ca/fr/", "active": true, "final_domain": "inewa.ca", "title": "Inéwa", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 18, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1654 1716 {"domain": "infime.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://infime.ca/", "active": true, "final_domain": "infime.ca", "title": "Infime", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G1L 5A7", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
1655 1717 {"domain": "innovabris.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://innovabris.com/", "active": true, "final_domain": "innovabris.com", "title": "Abri d&#039;auto résidentiel et commercial | Vente | Innovabris", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 143, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "4505694052", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
1656 1718 {"domain": "innovasens.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://courtierinnovasens.ca/", "active": true, "final_domain": "courtierinnovasens.ca", "title": "Innovasens &#8211; Courtier en alimentation", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J7B 1A7", "qc_phone": "(450) 970-2202", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1719 +{"domain": "inspiiir.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='inspiiir.com', port=443): Max retries exceeded with url: / (Caused by NameResolutionError(\"HTT", "HTTPSConnectionPool(host='www.inspiiir.com', port=443): Max retries exceeded with url: / (Caused by NameResolutionError(", "HTTPConnectionPool(host='inspiiir.com', port=80): Max retries exceeded with url: / (Caused by NameResolutionError(\"HTTPC"], "status": null, "final_url": "", "active": false}
1657 1720 {"domain": "inspirationgourmande.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.inspirationgourmande.ca/", "active": true, "final_domain": "inspirationgourmande.ca", "title": "Pâtisserie française à Montréal | Inspiration Gourmande", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 19, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "438-498-8383", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1658 1721 {"domain": "intermarchebourget.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://intermarchebourget.ca/", "active": true, "final_domain": "intermarchebourget.ca", "title": "Une famille passionnée de l&#039;alimentation!", "platform": "square", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
1659 1722 {"domain": "intermarchestdenis.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.intermarchestdenis.com/", "active": true, "final_domain": "intermarchestdenis.com", "title": "Intermarché St-Denis | débitage chevreuil | Saint-Denis-de-Brompton Le Val-Saint-François Québec Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0B 2P0", "qc_phone": "819-846-4500", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
@@ -1664,6 +1727,7 @@
1664 1727 {"domain": "iphea.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.iphea.ca/", "active": true, "final_domain": "iphea.ca", "title": "Iphéa Myco-Cosmétiques", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
1665 1728 {"domain": "irisarlo.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://irisarlo.com/", "active": true, "final_domain": "irisarlo.com", "title": "Iris + Arlo. Sustainable period products that change lives.", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2T 1A8", "qc_phone": "581 999 9420", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
1666 1729 {"domain": "isabellealepins.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://isabellealepins.com/", "active": true, "final_domain": "isabellealepins.com", "title": "Isabelle Alepins – Artiste verrier en verre soufflé au Québec", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 10, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
1730 +{"domain": "isabelleferland.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://isabelleferland.com/", "active": true, "final_domain": "isabelleferland.com", "title": "isabelle ferland bijoux en bois | Entreprise québécoise", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
1667 1731 {"domain": "isabellehuot.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.isabellehuot.com/", "active": true, "final_domain": "isabellehuot.com", "title": "Repas santé et boutique Isabelle Huot Docteure en nutrition", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
1668 1732 {"domain": "isabelleinc.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://isabelleinc.ca/", "active": true, "final_domain": "isabelleinc.ca", "title": "C. Isabelle &amp; Fils Inc | L&#039;expert en pommes de terre depuis 1948!", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0L 2J0", "qc_phone": "450-454-7200", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
1669 1733 {"domain": "isabellelehouxmontreal.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.isabellelehouxmontreal.com/", "active": true, "final_domain": "isabellelehouxmontreal.com", "title": "Bijoux Isabelle Lehoux", "platform": "lightspeed", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G9T 3B3", "qc_phone": "5147719559", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
@@ -1706,6 +1770,7 @@
1706 1770 {"domain": "jenniferglasgowdesign.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://jenniferglasgowdesign.com/", "active": false}
1707 1771 {"domain": "jennihealthy.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.jennihealthy.com/", "active": true, "final_domain": "jennihealthy.com", "title": "Jenni Tea | salon de thé Gatineau | 98 Rue de l'Hôtel-de-Ville, Gatineau, QC, Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J8X 4H7", "qc_phone": "819 712 7194", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
1708 1772 {"domain": "jessicapastries.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://jessicapastries.com/", "active": true, "final_domain": "jessicapastries.com", "title": "Main page - Jessica", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J3Y 8Y6", "qc_phone": "(450) 443-8226", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
1773 +{"domain": "jessicapchang.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://jessicapchang.com/", "active": true, "final_domain": "jessicapchang.com", "title": "Jessica POIRIER-CHANG", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1709 1774 {"domain": "jeuxface4.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://jeuxface4.com/", "active": true, "final_domain": "jeuxface4.com", "title": "Site Web WordPress", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
1710 1775 {"domain": "jgfruitsetlegumes.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.jgfruitsetlegumes.com/", "active": true, "final_domain": "jgfruitsetlegumes.com", "title": "JG Fruits et Légumes - Distribution et vente", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
1711 1776 {"domain": "jlfreeman.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.jlfreeman.ca/fr", "active": true, "final_domain": "jlfreeman.ca", "title": "J.L. Freeman S.E.C. - J.L. Freeman S.E.C. | Distributeur pharmaceutique", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J4B 5H1", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
@@ -1721,6 +1786,7 @@
1721 1786 {"domain": "jouetsboisemond.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.jouetsboisemond.com/", "active": true, "final_domain": "jouetsboisemond.com", "title": "https://www.jouetsboisemond.com/fr/", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
1722 1787 {"domain": "journalmetro.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://journalmetro.com/", "active": true, "final_domain": "journalmetro.com", "title": "Actualité, culture et vie urbaine montréalaise | Journal Métro", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1723 1788 {"domain": "jplmaraicher.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://jplmaraicher.com/", "active": true, "final_domain": "jplmaraicher.com", "title": "JPL Maraîcher – Légumes racines du Québec", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0R 2N0", "qc_phone": "418 885-4794", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
1789 +{"domain": "judithdubord.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.judithdubord.com/", "active": true, "final_domain": "judithdubord.com", "title": "Bienvenue | judithdubord", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0R 3G0", "qc_phone": "4183548489", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null}
1724 1790 {"domain": "juleidesign.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://juleidesign.com/", "active": true, "final_domain": "juleidesign.com", "title": "Julei Design - workleisure pour la femme contemporaine &#8211; juleidesign", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "H2N 2J6", "qc_phone": "514-704-4262", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
1725 1791 {"domain": "juniperfarm.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://juniperfarm.ca/", "active": true, "final_domain": "juniperfarm.ca", "title": "Organic Food Home Delivery &ndash; Juniper Farm Store", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0X 3G0", "qc_phone": "819-459-1630", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1726 1792 {"domain": "juresucre.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://juresucre.com/", "active": true, "final_domain": "juresucre.com", "title": "Accueil - Juré Sucré", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 1, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0E 1Y0", "qc_phone": "819-821-0422", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
@@ -1831,6 +1897,7 @@
1831 1897 {"domain": "lafabriquegourmande.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lafabriquegourmande.com/", "active": true, "final_domain": "lafabriquegourmande.com", "title": "La Fabrique Gourmande", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
1832 1898 {"domain": "lafamilledulait.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.lafamilledulait.com/", "active": true, "final_domain": "lafamilledulait.com", "title": "La Famille du lait | Explorez la production laitière d'ici", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1833 1899 {"domain": "lafascine.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.lafascine.com/", "active": true, "final_domain": "lafascine.com", "title": "Resto | Auberge La Fascine | Québec", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
1900 +{"domain": "lafeebranchee.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lafeebranchee.com/", "active": true, "final_domain": "lafeebranchee.com", "title": "La fée branchée", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 33, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J4V1Z7", "qc_phone": "5147728502", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
1834 1901 {"domain": "lafermeafrederique.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.lafermeafrederique.com/", "active": true, "final_domain": "lafermeafrederique.com", "title": "La Ferme à Frédérique", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G7A 2A1", "qc_phone": "(418) 831-6010", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1835 1902 {"domain": "lafermeaufonddu2.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.lafermeaufonddu2.ca/", "active": true, "final_domain": "lafermeaufonddu2.ca", "title": "Accueil | Ferme au Fond du 2 | Asperges et Ail bio Weedon, QC", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0B 3J0", "qc_phone": "819 640-9486", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
1836 1903 {"domain": "lafermebasque.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lafermebasque.ca/", "active": true, "final_domain": "lafermebasque.ca", "title": "La Ferme Basque de Charlevoix", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 81, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G0A 4K0", "qc_phone": "4186392246", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -1970,6 +2037,8 @@
1970 2037 {"domain": "laterreferme.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.laterreferme.com/", "active": true, "final_domain": "laterreferme.com", "title": "Accueil - La Terre Ferme", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
1971 2038 {"domain": "latheierealenvers.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://latheierealenvers.com/", "active": true, "final_domain": "latheierealenvers.com", "title": "Maison de thé - La Théière à L&#39;envers - Chicoutimi &ndash; La Theiere à l&#39;Envers", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G7H 6V4", "qc_phone": "(418) 973-1269", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": null, "via": "direct"}
1972 2039 {"domain": "latinacuisine.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://latinacuisine.com", "active": true, "final_domain": "latinacuisine.com", "title": "Latina Cuisine", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
2040 +{"domain": "laumecera.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.laumecera.com/", "active": true, "final_domain": "laumecera.com", "title": "Fait À La Main | Laume Céramique | Montréal", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2H 1B1", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
2041 +{"domain": "launeatelier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.launeatelier.com/", "active": true, "final_domain": "launeatelier.com", "title": "L&#39;AUNE Atelier⎜Joaillerie artisanale⎜Bijoux faits à la main à Montréal", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
1973 2042 {"domain": "lauthentik.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lauthentik.ca", "active": true, "final_domain": "lauthentik.ca", "title": "L'Authentik Brûlerie &amp; Café", "platform": "prestashop", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G6P 4S2", "qc_phone": "(819) 604-4656", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
1974 2043 {"domain": "lautrebrasserie.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='www.lautrebrasserie.ca', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCe"], "status": 500, "final_url": "https://lautrebrasserie.ca/", "active": false}
1975 2044 {"domain": "lavalleebleue.net", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.lavalleebleue.net/", "active": true, "final_domain": "lavalleebleue.net", "title": "Distillerie La Vallée Bleue, Val-Alain", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "G0S 3H0", "qc_phone": "4182713063", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -2087,6 +2156,7 @@
2087 2156 {"domain": "lesbecs.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lesbecs.ca/", "active": true, "final_domain": "lesbecs.ca", "title": "Les Becs Sucrés-Salés - Produits régionaux d&#039;Abitibi-Témiscamingue", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J9P 4G8", "qc_phone": "8198259569", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2088 2157 {"domain": "lesbellesbobettes.ca", "checked_at": "2026-08-12", "status": 429, "final_url": "https://lesbellesbobettes.ca/", "active": false}
2089 2158 {"domain": "lesbeurres.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lesbeurres.ca/", "active": true, "final_domain": "lesbeurres.ca", "title": "LES BEURRÉS, des beurres pleins de saveurs!", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2159 +{"domain": "lesbijouxtherrien.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.lesbijouxtherrien.com/", "active": true, "final_domain": "lesbijouxtherrien.com", "title": "Bijoux artisanaux en argent à Chicoutimi et Saguenay – Les Bijoux Therrien", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
2090 2160 {"domain": "lesbleuetsdumarquis.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lesbleuetsdumarquis.com/", "active": true, "final_domain": "lesbleuetsdumarquis.com", "title": "Autocueillette Bleuets Plaisir | Les Bleuets Bio du Marquis | Bleuetière Montégrégie", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "514-951-9164", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2091 2161 {"domain": "lesbleuetsduvirecrepes.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.lesbleuetsduvirecrepes.com/", "active": true, "final_domain": "lesbleuetsduvirecrepes.com", "title": "Les Bleuets du Vire-Crêpes | Ferme agrotouristique", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G7A 2A1", "qc_phone": "418 836 2955", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2092 2162 {"domain": "lesbobines.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lesbobines.com/", "active": true, "final_domain": "lesbobines.com", "title": "Pisciculture Élevage de Truites | Ferme Piscicole des Bobines", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "8198442418", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
@@ -2221,6 +2291,7 @@
2221 2291 {"domain": "lordupotager.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lordupotager.com/", "active": true, "final_domain": "lordupotager.com", "title": "L&#39;Or du Potager : Avantage social novateur des paniers de légumes et de produits locaux | L`or du potager", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0X 2M0", "qc_phone": "4505312574", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2222 2292 {"domain": "lordviolet.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lordviolet.ca/", "active": true, "final_domain": "lordviolet.ca", "title": "Edgy handmade jewelry for alternative femmes – Lord Violet &ndash; lordviolet", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2223 2293 {"domain": "losbalderas.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.losbalderas.com/", "active": true, "final_domain": "losbalderas.com", "title": "ACCUEIL | Los Balderas", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
2294 +{"domain": "lostandfaune.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.lostandfaune.com/", "active": true, "final_domain": "lostandfaune.com", "title": "Lost &amp; Faune - Bijouterie en Ligne Québécoise", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
2224 2295 {"domain": "louinspirations.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://louinspirations.com/fr-ca", "active": true, "final_domain": "louinspirations.com", "title": "Boutique artisanale bohème à Montréal – Lou Inspirations", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com"], "language": "en"}
2225 2296 {"domain": "louisacafedequartier.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.louisacafedequartier.ca/", "active": true, "final_domain": "louisacafedequartier.ca", "title": "Louisa Café de Quartier à Bois-des-Filion", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J6Z 1L8", "qc_phone": "(450) 818-1841", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2226 2297 {"domain": "lovelegrand.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://lovelegrand.com/", "active": true, "final_domain": "lovelegrand.com", "title": "Accueil - LeGrand", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -2267,6 +2338,7 @@
2267 2338 {"domain": "maisondherbes.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://maisondherbes.com/", "active": true, "final_domain": "maisondherbes.com", "title": "Maison d’Herbes | Produits naturels au chanvre", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 116, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2268 2339 {"domain": "maisondubootlegger.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.maisondubootlegger.com/", "active": true, "final_domain": "maisondubootlegger.com", "title": "La Maison du Bootlegger &#8211; Steak House dans Charlevoix", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 11, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G5A 2C8", "qc_phone": "(418) 439-3711", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2269 2340 {"domain": "maisondupecheur.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.maisondupecheur.ca/", "active": true, "final_domain": "maisondupecheur.ca", "title": "La Maison du Pêcheur", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2341 +{"domain": "maisonenchanvre.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://maisonenchanvre.com/", "active": true, "final_domain": "maisonenchanvre.com", "title": "Maisons en Chanvre – Construction Écologique &amp; Durable | Artcan", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "J2M 1K8", "qc_phone": "450-830-2842", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2270 2342 {"domain": "maisonlavande.ca", "checked_at": "2026-08-12", "status": 429, "final_url": "https://maisonlavande.ca/", "active": false}
2271 2343 {"domain": "maisonmere.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://maisonmere.ca/", "active": true, "final_domain": "maisonmere.ca", "title": "Accueil - Maison Mère", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 17, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G3Z 2J7", "qc_phone": "418-435-3521", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2272 2344 {"domain": "maisonorphee.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://maisonorphee.com/", "active": true, "final_domain": "maisonorphee.com", "title": "Maison Orphée | Huiles, Condiments et Mélanges à Cuisiner d&#39;ici! &ndash; La Maison Orphée", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1P 4G4", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
@@ -2294,6 +2366,7 @@
2294 2366 {"domain": "manoirhortensia.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://manoirhortensia.com/", "active": true, "final_domain": "manoirhortensia.com", "title": "Hébergement à Saint-Irenée dans Charlevoix, Manoir Hortensia", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0T 1V0", "qc_phone": "418-452-8180", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2295 2367 {"domain": "manoirhovey.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://manoirhovey.com/fr/", "active": true, "final_domain": "manoirhovey.com", "title": "Accueil | Manoir Hovey, Relais &amp; Châteaux - Cantons-de-l&apos;Est", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0B 2C0", "qc_phone": "(819) 842-2421", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
2296 2368 {"domain": "manonbterroirdeco.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.manonbterroirdeco.com/", "active": true, "final_domain": "manonbterroirdeco.com", "title": "Accueil | Manon brassard l Terroir et décoration l Saint-Félicien", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
2369 +{"domain": "mantionbijoutier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mantionbijoutier.com/", "active": true, "final_domain": "mantionbijoutier.com", "title": "Bijouterie en ligne &bull; Mantion Bijoutier - Terrebonne", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J6W 1T5", "qc_phone": "450-471-2967", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2297 2370 {"domain": "maple3.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://maple3.ca/", "active": true, "final_domain": "maple3.ca", "title": "Organic Maple Water &amp; Sports hydration | Maple 3", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2298 2371 {"domain": "maplemc2.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://maplemc2.com/", "active": true, "final_domain": "maplemc2.com", "title": "Boisson sportive naturelle à l&#39;érable québécois | Maple MC2", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J0G 1P0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
2299 2372 {"domain": "maplesavage.com", "checked_at": "2026-08-12", "status": 404, "final_url": "https://maplesavage.com/", "active": false}
@@ -2359,6 +2432,7 @@
2359 2432 {"domain": "marchevieuxhull.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.marchevieuxhull.ca/", "active": true, "final_domain": "marchevieuxhull.ca", "title": "Le marché du Vieux-Hull un magnifique marché public de la ville de Gatineau", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J8X 2H3", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2360 2433 {"domain": "mareechandelles.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mareechandelles.com/", "active": true, "final_domain": "mareechandelles.com", "title": "Chandelles de soya écologiques et faites à la main à Trois-Rivières &ndash; Marée - Chandelles", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
2361 2434 {"domain": "margarinethibault.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://margarinethibault.com/", "active": true, "final_domain": "margarinethibault.com", "title": "Margarines Thibault", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G9A 5E1", "qc_phone": "819 373-3333", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2435 +{"domain": "marie-les-bains.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://marie-les-bains.com/", "active": true, "final_domain": "marie-les-bains.com", "title": "Marie-les-bains teinture végétale", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2362 2436 {"domain": "mariefil.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mariefil.com/", "active": true, "final_domain": "mariefil.com", "title": "Culotte menstruelle fabriquée au Québec &ndash; Marie fil", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G1L 3L7", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2363 2437 {"domain": "marieserreau.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://marieserreau.com/", "active": true, "final_domain": "marieserreau.com", "title": "Marie Serreau | création de céramique", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1J 2B4", "qc_phone": "(581) 978-4547", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2364 2438 {"domain": "marigoldmtl.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://marigoldmtl.com/", "active": true, "final_domain": "marigoldmtl.com", "title": "Marigold par Marilyne Baril | Mode éthique fait à Montréal", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "H4G 1X2", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
@@ -2374,8 +2448,11 @@
2374 2448 {"domain": "matelasbonheur.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.matelasbonheur.ca/", "active": true, "final_domain": "matelasbonheur.ca", "title": "Matelas Bonheur - une entreprise familiale d&#039;ici depuis 1986", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2375 2449 {"domain": "matelibre.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://matelibre.com/", "active": true, "final_domain": "matelibre.com", "title": "Yerba Mate | Montreal &amp; Toronto, Canada | Mate Libre", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
2376 2450 {"domain": "materiauxsml.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.materiauxsml.com/", "active": true, "final_domain": "materiauxsml.com", "title": "Fournisseur de clôtures et rampes au Québec | Matériaux SML", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G3A 0G2", "qc_phone": "418-254-4873", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
2451 +{"domain": "mathieublanchard.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mathieublanchard.ca/", "active": true, "final_domain": "mathieublanchard.ca", "title": "Mathieu Blanchard Joaillerie | Créations uniques et bijoux sur mesure", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
2377 2452 {"domain": "mathpiquant.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mathpiquant.com/fr", "active": true, "final_domain": "mathpiquant.com", "title": "Math Piquant │Accueil", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
2378 2453 {"domain": "mathsport.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mathsport.ca/", "active": true, "final_domain": "mathsport.ca", "title": "Explorer le monde des chaussures de sport &gt; Guide complet", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
2454 +{"domain": "matpel.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://matpel.ca/", "active": true, "final_domain": "matpel.ca", "title": "MATPEL ébénisterie écologique - Vous cherchez un ébéniste à Montréal?", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 60, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2455 +{"domain": "matsheshucreations.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://matsheshucreations.com/", "active": true, "final_domain": "matsheshucreations.com", "title": "Matsheshu Créations | Bijoux et vêtements par une artiste autochtone", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "581-674-5220", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2379 2456 {"domain": "maturin.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.maturin.ca/", "active": true, "final_domain": "maturin.ca", "title": "Marché fermier en ligne et épicerie en ligne | Maturin, comme à la ferme", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
2380 2457 {"domain": "mavericktannery.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mavericktannery.ca/", "active": true, "final_domain": "mavericktannery.ca", "title": "MAVERICK TANNERY", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2381 2458 {"domain": "mcadam.mcauslan.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='mcadam.mcauslan.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertV", "HTTPSConnectionPool(host='www.mcadam.mcauslan.com', port=443): Max retries exceeded with url: / (Caused by NameResolutio", "HTTPSConnectionPool(host='mcadam.mcauslan.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertV"], "status": null, "final_url": "", "active": false}
@@ -2384,23 +2461,27 @@
2384 2461 {"domain": "mechouidesappalaches.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mechouidesappalaches.ca", "active": true, "final_domain": "mechouidesappalaches.ca", "title": "Méchoui des Appalaches — Traiteur Méchoui & Camion de rue | Berthier-sur-Mer", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "418-248-5555", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
2385 2462 {"domain": "media-nova.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://media-nova.ca/", "active": true, "final_domain": "media-nova.ca", "title": "3D minature", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 4, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "514 560 2378", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2386 2463 {"domain": "medicom.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://medicom.com", "active": true, "final_domain": "medicom.com", "title": "Home - Medicom", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
2464 +{"domain": "melanielaplante.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.melanielaplante.com/", "active": true, "final_domain": "melanielaplante.com", "title": "Bijoux et objets en verre | MÉLA – Mélanie Laplante, Québec", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2387 2465 {"domain": "melissacharette.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.melissacharette.com", "active": true, "final_domain": "melissacharette.com", "title": "Illustrations et couture | Lanaudière | Melissa Charette Laganiere - Artiste", "platform": "square", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2388 2466 {"domain": "mellonbrasserie.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mellonbrasserie.ca/", "active": true, "final_domain": "mellonbrasserie.ca", "title": "Bières de soif | Mellön", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
2389 2467 {"domain": "mellonia.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mellonia.ca/fr", "active": true, "final_domain": "mellonia.ca", "title": "Mellonia - Adoptez des Abeilles, Miel personnalisé et Activités Éducatives", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "418-719-5767", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2390 2468 {"domain": "mementocycles.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://mementocycles.com/", "active": false}
2391 2469 {"domain": "memphremagogvraiment.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.memphremagogvraiment.com/", "active": true, "final_domain": "memphremagogvraiment.com", "title": "Vraiment Memphré", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
2392 2470 {"domain": "menaud.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://menaud.ca/", "active": true, "final_domain": "menaud.ca", "title": "Menaud – Distillerie et Brasserie de Charlevoix – 1, rue de la Rivière", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2471 +{"domain": "menuiserie-authentique.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.menuiserie-authentique.com/", "active": true, "final_domain": "menuiserie-authentique.com", "title": "Accueil | Menuiserie Authentique | Québec", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "418-598-7258", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2393 2472 {"domain": "menuverger.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://menuverger.com/", "active": true, "final_domain": "menuverger.com", "title": "Fruits locaux à Saguenay - Le Menu Verger", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G7H 5A7", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2394 2473 {"domain": "mercilaterrebio.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mercilaterrebio.com/", "active": true, "final_domain": "mercilaterrebio.com", "title": "merci la terre", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G8G 1B1", "qc_phone": "4187198360", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2395 2474 {"domain": "meredithjoaillerie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://meredithjoaillerie.com/", "active": true, "final_domain": "meredithjoaillerie.com", "title": "Meredith Joaillerie", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
2396 2475 {"domain": "meremichele.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='meremichele.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionError(\"H", "HTTPSConnectionPool(host='www.meremichele.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionErro", "HTTPConnectionPool(host='meremichele.ca', port=80): Max retries exceeded with url: / (Caused by NameResolutionError(\"HTT"], "status": null, "final_url": "", "active": false}
2397 2476 {"domain": "merlaine.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://merlaine.com/", "active": true, "final_domain": "merlaine.com", "title": "Merlaine - literie en laine du Québec. Couette, oreiller, etc.", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "8197400326", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
2398 2477 {"domain": "mermax.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mermax.ca/", "active": true, "final_domain": "mermax.ca", "title": "Distributeur alimentaire | Mermax | Saguenay–Lac-Saint-Jean", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G7K 1A2", "qc_phone": "418-543-8777", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
2478 +{"domain": "mesbijouxdefamille.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mesbijouxdefamille.ca/fr/", "active": true, "final_domain": "mesbijouxdefamille.ca", "title": "Mes bijoux de Famille 100% Québécois depuis plus de 10 ans! La plus grande boutique de bijoux personnalisés au Québec.", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2399 2479 {"domain": "metalico.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://metalico.ca/", "active": true, "final_domain": "metalico.ca", "title": "Fabricant Ventilation sur-mesure| résidentiel | commercial | industriel | soudure | spirale &#8211; Manufacturier indépendant de conduits et d&#039;accessoires de ventilation", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 21, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G2G 2P9", "qc_phone": "(418) 861-8778", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2400 2480 {"domain": "meteore.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://meteore.ca/", "active": true, "final_domain": "meteore.ca", "title": "Cuisine Fusion Météore | Cuisine Fusion Météore", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G8L 1H4", "qc_phone": "4182767469", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2401 2481 {"domain": "metrodb.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://metrodb.ca/", "active": true, "final_domain": "metrodb.ca", "title": "Metro DB - Épicerie metro de Dolbeau-Mistassini et St-Félicien", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2402 2482 {"domain": "meubleshochelaga.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://meubleshochelaga.com/", "active": true, "final_domain": "meubleshochelaga.com", "title": "Meuble sur Mesure et Décoration | STEFI &amp; SEB par Meubles Hochelaga", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 138, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "5143541030", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2403 2483 {"domain": "meyeur.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.meyeur.com/", "active": true, "final_domain": "meyeur.com", "title": "MEYEUR | Jeux de conversation", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2484 +{"domain": "mia-bijoux.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mia-bijoux.ca/", "active": true, "final_domain": "mia-bijoux.ca", "title": "Stainless Steel Women Jewelry | Allergy Free | MIA Bijoux – Mia Bijoux", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
2404 2485 {"domain": "miailleurs.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://delicesdici.ca/", "active": true, "final_domain": "delicesdici.ca", "title": "Les délices d&#39;ici et d&#39;ailleurs", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
2405 2486 {"domain": "miboty.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://miboty.com/", "active": true, "final_domain": "miboty.com", "title": "Soins corporels &amp; capillaires naturels — Canada &ndash; MIBOTY", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
2406 2487 {"domain": "michelecourtemanche.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://michelecourtemanche.ca/", "active": true, "final_domain": "michelecourtemanche.ca", "title": "Michèle Courtemanche - Bijoux métiers d'art en Argentium faits au Québec", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "(819) 777-9238", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -2432,6 +2513,7 @@
2432 2513 {"domain": "microstho.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://microstho.com/", "active": true, "final_domain": "microstho.com", "title": "Microbrasserie Saint-Honoré", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0V 1L0", "qc_phone": "418 905-3187", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com"], "language": "fr"}
2433 2514 {"domain": "microtadoussac.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://microtadoussac.com/", "active": true, "final_domain": "microtadoussac.com", "title": "Accueil", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
2434 2515 {"domain": "microverdure.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.microverdure.ca/", "active": true, "final_domain": "microverdure.ca", "title": "Micro Verdure | Producteur de micropousses biologiques | Saint-Paul-d’Abbotsford", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0E 1A0", "qc_phone": "450-379-5400", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
2516 +{"domain": "midi34.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://midi34.ca/", "active": true, "final_domain": "midi34.ca", "title": "Midi34 | Boutique de bijoux minimalistes | Inspiré par la simplicité", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 361, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1V 2L1", "qc_phone": "418-651-3334", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2435 2517 {"domain": "midigo.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://midigopresto.ca", "active": true, "final_domain": "midigopresto.ca", "title": "MidiGo Presto — Sandwicherie · Traiteur · Méchoui | Victoriaville", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
2436 2518 {"domain": "mieetcie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mieetcie.com/fr-ca", "active": true, "final_domain": "mieetcie.com", "title": "Mie et Cie🅪 Accueil", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
2437 2519 {"domain": "mielabitemis.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mielabitemis.com/", "active": true, "final_domain": "mielabitemis.com", "title": "Miel Abit&eacute;mis", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0Z 2G0", "qc_phone": "819-728-2087", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -2459,7 +2541,9 @@
2459 2541 {"domain": "mimiandaugust.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mimiandaugust.com/fr", "active": true, "final_domain": "mimiandaugust.com", "title": "Mimi &amp; August | Bougies réutilisables en cire de soya &amp; articles maison - Montréal", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J4G 1P8", "qc_phone": "4383841264", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2460 2542 {"domain": "minigrange.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.minigrange.ca/", "active": true, "final_domain": "minigrange.ca", "title": "Cabanons et Remises avec livraison - MiniGrange", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 17, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J0E 2L2", "qc_phone": "450-234-4582", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2461 2543 {"domain": "minitipi.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.minitipi.ca/", "active": true, "final_domain": "minitipi.ca", "title": "Indigenous Blankets, Accessories and Indigenous Gifts - MINI TIPI", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2544 +{"domain": "minuitmetal.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.minuitmetal.com/", "active": true, "final_domain": "minuitmetal.com", "title": "Minuit Metal | Art jewelry | Montreal, QC, Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
2462 2545 {"domain": "mirabuches.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mirabuches.com/", "active": true, "final_domain": "mirabuches.com", "title": "Mirabûches | buches ecologiques", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0N 1H0", "qc_phone": "4504364400", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2546 +{"domain": "mirakydesign.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.mirakydesign.com/", "active": true, "final_domain": "mirakydesign.com", "title": "Miraky Design | La Signature qui se distingue", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2463 2547 {"domain": "mishkafab.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mishkafab.ca/", "active": true, "final_domain": "mishkafab.ca", "title": "Mishka - Des fruits à boire québécois", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2464 2548 {"domain": "mishkatisanes.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://mishkafab.ca/", "active": true, "final_domain": "mishkafab.ca", "title": "Mishka - Des fruits à boire québécois", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2465 2549 {"domain": "missiska.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://missiska.com/", "active": true, "final_domain": "missiska.com", "title": "Bienvenue chez Missiska, la crème du lait", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0J 1A0", "qc_phone": "579 433-8585", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -2576,6 +2660,7 @@
2576 2660 {"domain": "nasdrow.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://nasdrow.com/", "active": true, "final_domain": "nasdrow.com", "title": "Scarlet &amp; Co — Nasdrow", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["instagram.com"], "language": null}
2577 2661 {"domain": "nasuco.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.norbleu.com/", "active": true, "final_domain": "norbleu.com", "title": "Norbleu: produits frais, confiserie et cofabrication alimentaire", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G8C 0H6", "qc_phone": "418-668-9988", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2578 2662 {"domain": "natartjuvenile.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://natartjuvenile.com/", "active": true, "final_domain": "natartjuvenile.com", "title": "Natart Juvenile | High End Baby and Kid&#039;s Furniture", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 132, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G6L 3V8", "qc_phone": "(819) 364-3189", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2663 +{"domain": "nathaliesamson.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://nathaliesamson.com/", "active": true, "final_domain": "nathaliesamson.com", "title": "Nathalie Samson", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
2579 2664 {"domain": "natuku.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://natuku.com/", "active": true, "final_domain": "natuku.com", "title": "NATUKU | Soins à base d’argile d’origine 100% naturelle", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
2580 2665 {"domain": "natura.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://natura.ca/", "active": true, "final_domain": "natura.ca", "title": "Les boissons de soya, de riz, d’amandes et d’avoine Natura.", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2581 2666 {"domain": "nature-artisan.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://nature-artisan.com/", "active": false}
@@ -2586,17 +2671,22 @@
2586 2671 {"domain": "naya.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://naya.com/", "active": true, "final_domain": "naya.com", "title": "Naya - Québécoise de source", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2587 2672 {"domain": "neka.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://neka.ca/", "active": true, "final_domain": "neka.ca", "title": "Neka: Coussins d&#39;allaitement - Oreillers pour enfants - Méditation", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J1X 2X3", "qc_phone": "819 868.2357", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2588 2673 {"domain": "nektar.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://nektar.ca/", "active": true, "final_domain": "nektar.ca", "title": "Nektar micro-torréfacteur - Café accessoires abonnements &ndash; Nektar Torréfacteur / Coffee Roasters", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2674 +{"domain": "nemracstyle.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.nemracstyle.com/", "active": true, "final_domain": "nemracstyle.com", "title": "NEMRAC | Mode contemporaine et accessoires pour femmes &ndash; Nemrac Style Inc.", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J4P 1L1", "qc_phone": "514-576-2251", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2589 2675 {"domain": "neochips.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://neochips.ca/", "active": true, "final_domain": "neochips.ca", "title": "Néo Chips - Chips de fruits sans additifs, gluten ni huile", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2590 2676 {"domain": "neodrinks.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.neodrinks.ca/", "active": true, "final_domain": "neodrinks.ca", "title": "Acceuil | Neodrinks", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J5R 4C4", "qc_phone": "438-882-1718", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null}
2677 +{"domain": "neufvingtcinq.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://neufvingtcinq.com/", "active": true, "final_domain": "neufvingtcinq.com", "title": "Bijouterie québécoise - Bijoux – NEUF.VINGT.CINQ", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2591 2678 {"domain": "newswire.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.newswire.ca/", "active": true, "final_domain": "newswire.ca", "title": "Press Release Distribution Service | PR Newswire Canada", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2592 2679 {"domain": "nextchance.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://nextchance.ca", "active": true, "final_domain": "nextchance.ca", "title": "Next Chance - Emballages-cadeaux et décorations pour la maison", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "scrapfly"}
2593 2680 {"domain": "ni-corporation.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ni-corporation.com/", "active": true, "final_domain": "ni-corporation.com", "title": "Ni Corporation - Mobilier de tri des matières résiduelles", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H7P 2N8", "qc_phone": "514-270-1102", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
2681 +{"domain": "niconico.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.niconico.ca/", "active": true, "final_domain": "niconico.ca", "title": "Nico Nico | Jeux de bois | Atelier de fabrication et design", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 22, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
2682 +{"domain": "ninajanvier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ninajanvier.com/", "active": true, "final_domain": "ninajanvier.com", "title": "Handcrafted jewelry blending tradition and modernity &ndash; NINA JANVIER Atelier Boutique", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2J 1H8", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2594 2683 {"domain": "nival.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://nival.ca", "active": true, "final_domain": "nival.ca", "title": "Domaine du Nival - Un vignoble d&#39;exception", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
2595 2684 {"domain": "no900.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://no900.com/", "active": true, "final_domain": "no900.com", "title": "Pizzéria Napolitaine NO.900 &ndash; Pizzeria no.900", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "direct"}
2596 2685 {"domain": "nobaanimal.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://nobaanimal.com/", "active": true, "final_domain": "nobaanimal.com", "title": "Cat tree Scratching Post and House made in Canada │ Noba Animal", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J3B 6X2", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "direct"}
2597 2686 {"domain": "noblebean.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.noblebean.com/", "active": true, "final_domain": "noblebean.com", "title": "Noble Bean Tempeh | Organic", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
2598 2687 {"domain": "noctem.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://noctem.ca", "active": true, "final_domain": "noctem.ca", "title": "Noctem Artisans Brasseurs", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1K 6H8", "qc_phone": "(581) 742-7979", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
2599 2688 {"domain": "nodo.eco", "checked_at": "2026-08-12", "status": 200, "final_url": "https://nodo.eco/", "active": true, "final_domain": "nodo.eco", "title": "Neutralisants d&#39;odeurs naturel | NODO", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
2689 +{"domain": "noemiah.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://noemiah.com/fr", "active": true, "final_domain": "noemiah.com", "title": "Vêtements, bijoux et accessoires féminins faits au Québec — Noémiah", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2600 2690 {"domain": "noire-et-blanche.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://noire-et-blanche.ca/", "active": true, "final_domain": "noire-et-blanche.ca", "title": "Restaurant-Noire &amp; Blanche-Microbrasserie &#8211; L&#039;ART DE BOIRE", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J7R 2L7", "qc_phone": "(450) 983-6100", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2601 2691 {"domain": "norbleu.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.norbleu.com/", "active": true, "final_domain": "norbleu.com", "title": "Norbleu: produits frais, confiserie et cofabrication alimentaire", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G8C 0H6", "qc_phone": "418-668-9988", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2602 2692 {"domain": "nord-bio.coop", "checked_at": "2026-08-12", "status": 200, "final_url": "https://nord-bio.coop/", "active": true, "final_domain": "nord-bio.coop", "title": "Nord-Bio", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G8B 1N2", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
@@ -2633,6 +2723,7 @@
2633 2723 {"domain": "oberson.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://oberson.com/", "active": true, "final_domain": "oberson.com", "title": "Oberson | Experts en skis, planches et vélos", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
2634 2724 {"domain": "ochampignon.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ochampignon.com/", "active": true, "final_domain": "ochampignon.com", "title": "Ô Champignon - Champignons urbains.", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G1N 3S5", "qc_phone": "4182719169", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2635 2725 {"domain": "octavemicro.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://octavemicro.com/", "active": true, "final_domain": "octavemicro.com", "title": "Microbrasserie Octave | Votre nouveau classique", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J1X 2B3", "qc_phone": "819-847-9930", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2726 +{"domain": "octeaujoaillier.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.octeaujoaillier.com/", "active": true, "final_domain": "octeaujoaillier.com", "title": "Octeau Joaillier et Horloger | Sainte-Julie sur la Rive-sud", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 130, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J3E 2T6", "qc_phone": "450-649-4938", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2636 2727 {"domain": "odayawellness.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://odayawellness.com", "active": true, "final_domain": "odayawellness.com", "title": "ODAYA Wellness", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": null, "via": "scrapfly"}
2637 2728 {"domain": "odfnutra.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://odfnutra.com/", "active": true, "final_domain": "odfnutra.com", "title": "Technologie de films orosolubles à dissolution rapide | ODF Nutra", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 12, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2638 2729 {"domain": "odwyer.biz", "checked_at": "2026-08-12", "status": 200, "final_url": "https://odwyer.biz/fr/accueil/", "active": true, "final_domain": "odwyer.biz", "title": "Accueil - O&#039;Dwyer Micro-Distillerie Gaspésienne Inc.", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 35, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
@@ -2670,6 +2761,7 @@
2670 2761 {"domain": "order.koomi.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://order.koomi.com/", "active": true, "final_domain": "order.koomi.com", "title": "Koomi+", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
2671 2762 {"domain": "order.ueat.io", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='www.order.ueat.io', port=443): Max retries exceeded with url: / (Caused by NameResolutionError"], "status": 404, "final_url": "https://order.ueat.io:443/", "active": false}
2672 2763 {"domain": "orera.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://orera.ca/", "active": true, "final_domain": "orera.ca", "title": "ORÉRA - Soins éco-luxe naturels visage et corps québecois &ndash;", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
2764 +{"domain": "originegravure.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://originegravure.ca/fr/", "active": true, "final_domain": "originegravure.ca", "title": "Origine Gravure - Venez créer vos bijoux personnalisés vous-même ...bague,gravure,pierre de naissance - Origine Gravure", "platform": "prestashop", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2673 2765 {"domain": "orpailleur.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://orpailleur.ca/", "active": true, "final_domain": "orpailleur.ca", "title": "Vignoble de l&#39;Orpailleur | Découvrez les vins du Québec", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
2674 2766 {"domain": "orthofab.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://orthofab.com/", "active": true, "final_domain": "orthofab.com", "title": "Orthofab", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2675 2767 {"domain": "orviande.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.orviande.com/", "active": true, "final_domain": "orviande.com", "title": "Transformation de viande de porc - Coupes spéciales - Orviande", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "H1J 2S2", "qc_phone": "514 353-1143", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -2739,6 +2831,7 @@
2739 2831 {"domain": "peachandcream.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://peachandcream.com", "active": true, "final_domain": "peachandcream.com", "title": "peach and cream ® &middot; intimacy and wellness, without complexes", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "scrapfly"}
2740 2832 {"domain": "peakbwa.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://peakbwa.com", "active": true, "final_domain": "peakbwa.com", "title": "Sustainable Grow With Me Clothes Baby &amp;amp; Kids - Made in Canada Peakbwa", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "scrapfly"}
2741 2833 {"domain": "pearsonboutique.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.pearsonboutique.com", "active": true, "final_domain": "pearsonboutique.com", "title": "Home | Pearson - Comptoir gourmet et chocolats fins", "platform": "square", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G7X 1G7", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2834 +{"domain": "peasejewelry.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://peasejewelry.com/", "active": true, "final_domain": "peasejewelry.com", "title": "Bijoux Pease | Bijoux minimalistes et confortables faits au Québec", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 151, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2742 2835 {"domain": "pecheriemanicouagan.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://pecheriemanicouagan.com/en/", "active": true, "final_domain": "pecheriemanicouagan.com", "title": "Distributor of fish, seafood and snow crab - Côte-Nord / Québec - Pêcherie Manicouagan", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "en"}
2743 2836 {"domain": "pecheriesgaspesiennes.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://pecheriesgaspesiennes.com/", "active": true, "final_domain": "pecheriesgaspesiennes.com", "title": "Accueil - Les Pêcheries Gaspésiennes", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G4X 5G3", "qc_phone": "4182693331", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2744 2837 {"domain": "pecheriespetithavrefr.com", "checked_at": "2026-08-12", "status": 404, "final_url": "http://www.pecheriespetithavrefr.com/", "active": false}
@@ -2748,6 +2841,7 @@
2748 2841 {"domain": "peinturelaurentide.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://peinturelaurentide.com/", "active": true, "final_domain": "peinturelaurentide.com", "title": "ACCUEIL - Peinture Laurentide", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
2749 2842 {"domain": "peinturesmf.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.peinturesmf.com/", "active": true, "final_domain": "peinturesmf.com", "title": "Peintures MF - Peintures de qualité - 100% québécois", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "H7L 5A3", "qc_phone": "450-628-3831", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2750 2843 {"domain": "penega.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.penega.com/fr", "active": true, "final_domain": "penega.com", "title": "Penega, agence de communication et de marketing", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "H3K 2R5", "qc_phone": "5149324044", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
2844 +{"domain": "penelopeclinique.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://penelopeclinique.com/", "active": true, "final_domain": "penelopeclinique.com", "title": "Piercing à Saint Jérôme, Blainville, Sainte-Sophie | Pénélope Clinique", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J7Z 5B3", "qc_phone": "4505652500", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2751 2845 {"domain": "penseesauvagedestacy.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.penseesauvagedestacy.com/", "active": true, "final_domain": "penseesauvagedestacy.com", "title": "BOUTIQUE | Pensée Sauvage de Stacy", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2752 2846 {"domain": "pepiniereborealis.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.pepiniereborealis.com/", "active": true, "final_domain": "pepiniereborealis.com", "title": "P&eacute;pini&egrave;re Borealis - Accueil", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "fr"}
2753 2847 {"domain": "pepiniereducerneau.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://pepiniereducerneau.com/", "active": true, "final_domain": "pepiniereducerneau.com", "title": "P&eacute;pini&egrave;re du Cerneau | Arbres &agrave; Noix au Saguenay&ndash;Lac-Saint-Jean", "platform": "square", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "581.667.2032", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
@@ -2780,6 +2874,7 @@
2780 2874 {"domain": "piebraque.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://piebraque.com/", "active": true, "final_domain": "piebraque.com", "title": "Pie Braque Microbrasserie", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G7X 0J7", "qc_phone": "(418) 818-0735", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
2781 2875 {"domain": "piedmontdora.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.superdoracanada.com/", "active": true, "final_domain": "superdoracanada.com", "title": "Pied-Mont Dora", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J5N 3W9", "qc_phone": "450 478-0801", "mentions_quebec": false, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
2782 2876 {"domain": "pierogerie.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://pierogerie.ca/", "active": true, "final_domain": "pierogerie.ca", "title": "Pierogerie &#8211; Alberta’s first authentic organic pierogi maker", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 19, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
2877 +{"domain": "pierresdailleurs.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.pierresdailleurs.ca/fc/", "active": true, "final_domain": "pierresdailleurs.ca", "title": "Pierres D&#039;Ailleurs - Pierres D&#039;Ailleurs", "platform": "lightspeed", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2J 2L2", "qc_phone": "(514) 849-9311", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2783 2878 {"domain": "pigne1.simplesite.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='pigne1.simplesite.com', port=443): Max retries exceeded with url: / (Caused by NameResolutionE", "HTTPSConnectionPool(host='www.pigne1.simplesite.com', port=443): Max retries exceeded with url: / (Caused by NameResolut", "HTTPConnectionPool(host='pigne1.simplesite.com', port=80): Max retries exceeded with url: / (Caused by NameResolutionErr"], "status": null, "final_url": "", "active": false}
2784 2879 {"domain": "pikkado.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.pikkado.com:443/home/en", "active": true, "final_domain": "pikkado.com:443", "title": "Pikkado — #1 Secret Santa Generator", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
2785 2880 {"domain": "pimenterlavie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://pimenterlavie.com", "active": true, "final_domain": "pimenterlavie.com", "title": "Pimenter La Vie", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": "514-616-5817", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "scrapfly"}
@@ -2911,6 +3006,7 @@
2911 3006 {"domain": "raymeraquaculture.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://raymeraquaculture.ca/", "active": true, "final_domain": "raymeraquaculture.ca", "title": "Raymer Aquaculture", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0C 2B0", "qc_phone": "418 392-5310", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
2912 3007 {"domain": "rebelkarma.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='rebelkarma.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionError(\"HT", "HTTPSConnectionPool(host='www.rebelkarma.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionError", "HTTPConnectionPool(host='rebelkarma.ca', port=80): Max retries exceeded with url: / (Caused by NameResolutionError(\"HTTP"], "status": null, "final_url": "", "active": false}
2913 3008 {"domain": "rebelle.club", "checked_at": "2026-08-12", "status": 200, "final_url": "https://rebelle.club/", "active": true, "final_domain": "rebelle.club", "title": "Crème glacée Rebelle | Soyez rebelle, achetez local.", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J8X 2H4", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
3009 +{"domain": "rebellesdesbois.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://rebellesdesbois.com/", "active": true, "final_domain": "rebellesdesbois.com", "title": "Rebelles des Bois", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "418-608-8382", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2914 3010 {"domain": "rebon-quebec.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://rebon-quebec.com", "active": true, "final_domain": "rebon-quebec.com", "title": "ReBon - C&#39;est encore bon &ndash; ReBon par Alice &amp; Ambre", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
2915 3011 {"domain": "recettesdici.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.recettesdici.com/", "active": true, "final_domain": "recettesdici.com", "title": "Recettes d'ici : idées de recettes et de menus faciles à cuisiner", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2916 3012 {"domain": "recoltesdesamhain.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://recoltesdesamhain.com", "active": true, "final_domain": "recoltesdesamhain.com", "title": "Les Récoltes de Samhain", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": null, "via": "scrapfly"}
@@ -2990,6 +3086,7 @@
2990 3086 {"domain": "rucherboltonnois.net", "checked_at": "2026-08-12", "status": 200, "final_url": "https://rucherboltonnois.net/", "active": true, "final_domain": "rucherboltonnois.net", "title": "Accueil", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J0E 1G0", "qc_phone": "(438) 837-0560", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2991 3087 {"domain": "rucherdesframboisiers.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://rucherdesframboisiers.ca/", "active": true, "final_domain": "rucherdesframboisiers.ca", "title": "Miel biologique pur non pasteurisé du Québec | Rucher des Framboisiers", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "G0C 1Y0", "qc_phone": "418-759-3027", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
2992 3088 {"domain": "ruchersdesaulnaies.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.ruchersdesaulnaies.ca/", "active": true, "final_domain": "ruchersdesaulnaies.ca", "title": "Ferme apicole à Sainte-Louise | Accueil | Les Ruchers des Aulnaies inc.", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0R 3K0", "qc_phone": "418-354-2688", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
3089 +{"domain": "rudimenterre.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://rudimenterre.com/", "active": true, "final_domain": "rudimenterre.com", "title": "Rudimenterre &ndash; RUDIMENTERRE", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
2993 3090 {"domain": "ruisseau.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ruisseau.ca/", "active": true, "final_domain": "ruisseau.ca", "title": "Chalet du Ruisseau - Cabane à Sucre, Repas De Cabane à Sucre", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J7N 2R9", "qc_phone": "4502583176", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
2994 3091 {"domain": "rusticafoods.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://rusticafoods.com/", "active": true, "final_domain": "rusticafoods.com", "title": "", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
2995 3092 {"domain": "rustictac.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://rustictac.ca", "active": true, "final_domain": "rustictac.ca", "title": "Rustic-Tac | Montres en bois personnalisées&ndash; Rustic-tac", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "J8B 1A8", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
@@ -3139,9 +3236,11 @@
3139 3236 {"domain": "solariumoptimum.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://solariumoptimum.com/qc/", "active": true, "final_domain": "solariumoptimum.com", "title": "Accueil - SOLARIUM Optimum Inc", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "H7P 4K9", "qc_phone": "514-878-1500", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3140 3237 {"domain": "solem.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://solem.ca", "active": true, "final_domain": "solem.ca", "title": "Solem | Serviettes en microfibre douces et compactes", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "scrapfly"}
3141 3238 {"domain": "solioswatches.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://solioswatches.com", "active": true, "final_domain": "solioswatches.com", "title": "Solios® | Modern Solar-Powered Sustainable Watches &ndash; Solios Watches", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null, "via": "scrapfly"}
3239 +{"domain": "solliart.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://solliart.com/", "active": false}
3142 3240 {"domain": "solutioninfomedia.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://solutioninfomedia.com/", "active": true, "final_domain": "solutioninfomedia.com", "title": "Solution Infomédia | Votre allié technologique en Gaspésie", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0C 1E0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
3143 3241 {"domain": "solutionvalet.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.solutionvalet.com/", "active": true, "final_domain": "solutionvalet.com", "title": "Ouvre porte avec pied | Solution Valet", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": "8193647616", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
3144 3242 {"domain": "soniaimbeault.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://soniaimbeault.ca", "active": true, "final_domain": "soniaimbeault.ca", "title": "Sonia Imbeault Joaillière", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com"], "language": null, "via": "scrapfly"}
3243 +{"domain": "sophiemanessiez.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://sophiemanessiez.com/accueil", "active": true, "final_domain": "sophiemanessiez.com", "title": "Sophie Manessiez - Artiste céramiste", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "en"}
3145 3244 {"domain": "sorcieredepouvoir.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.sorcieredepouvoir.com", "active": true, "final_domain": "sorcieredepouvoir.com", "title": "Sorcière de Pouvoir | Boutique Ésotérique, Magie & Rituels | Sorciere de Pouvoir", "platform": "square", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "819-719-2153", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
3146 3245 {"domain": "sorrentopizzeria.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://sorrentopizzeria.ca/", "active": true, "final_domain": "sorrentopizzeria.ca", "title": "Sorrento Pizzéria - La Meilleure Pizza Au Québec!", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G7J 2M6", "qc_phone": "418-543-3198", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
3147 3246 {"domain": "sosfondue.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://sosfondue.ca/", "active": true, "final_domain": "sosfondue.ca", "title": "Fondue au fromage suisse authentique – facile et rapide | SOS Fondue", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 36, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J0T 2N0", "qc_phone": "8192167000", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -3197,6 +3296,7 @@
3197 3296 {"domain": "surtonmur.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://surtonmur.com", "active": true, "final_domain": "surtonmur.com", "title": "Sur ton mur | Galerie d&#39;art | Illustration, Prints, Decor | Montréal", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3198 3297 {"domain": "sushialamaison.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://sushialamaison.com", "active": true, "final_domain": "sushialamaison.com", "title": "Sushi à la Maison | créatif - original - gourmand - décadent", "platform": "snipcart", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3199 3298 {"domain": "sway.office.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://sway.cloud.microsoft/", "active": true, "final_domain": "sway.cloud.microsoft", "title": "Microsoft Sway | Cr&#233;ez des bulletins d’information, des pr&#233;sentations et des documents attrayants en un clin d’œil", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
3299 +{"domain": "sweetmamagrass.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='sweetmamagrass.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionError", "HTTPSConnectionPool(host='www.sweetmamagrass.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionE", "HTTPConnectionPool(host='sweetmamagrass.ca', port=80): Max retries exceeded with url: / (Caused by NameResolutionError(\""], "status": null, "final_url": "", "active": false}
3200 3300 {"domain": "sylvestreparfums.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://sylvestreparfums.com", "active": true, "final_domain": "sylvestreparfums.com", "title": "Parfums Sylvestre – High-end free perfumery from Quebec &ndash; Sylvestre Parfums", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3201 3301 {"domain": "symbiosealt.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://symbiosealt.com/", "active": true, "final_domain": "symbiosealt.com", "title": "Accueil - Symbiose Alimenterre", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 2, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J0T 1H0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3202 3302 {"domain": "symposiumbsp.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://symposiumbsp.com/fr", "active": true, "final_domain": "symposiumbsp.com", "title": "Édition 2026", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -3298,18 +3398,21 @@
3298 3398 {"domain": "trucsdenfants.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://trucsdenfants.com", "active": true, "final_domain": "trucsdenfants.com", "title": "Gender Neutral &amp; Grow With Me clothes for kids from 0 to 12 years old &ndash; Kid&#39;s Stuff [Trucs d&#39;enfants]", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3299 3399 {"domain": "tsurprise.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://tsurprise.com", "active": true, "final_domain": "tsurprise.com", "title": "T•Surprise | Tea subscriptions &amp;amp; gift sets", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "scrapfly"}
3300 3400 {"domain": "tuckhingfoods.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://tuckhingfoods.com/", "active": true, "final_domain": "tuckhingfoods.com", "title": "ALIMENTS TUCK HING - Noodles Cuisine Nouilles Wonton - Delson, Quebec", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J5B 1W6", "qc_phone": "450.635.5541", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
3401 +{"domain": "tuknut.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://tuknut.com/", "active": false}
3301 3402 {"domain": "tulipjuvenile.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://tulipjuvenile.com/", "active": true, "final_domain": "tulipjuvenile.com", "title": "Premium Quality Baby Furniture - Tulip Juvenile", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 63, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G6L 3V8", "qc_phone": "(819) 364-3189", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
3302 3403 {"domain": "tungstene.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://tungstene.ca/", "active": true, "final_domain": "tungstene.ca", "title": "TUNGSTENE LUMINAIRES CRÉATIFS", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 191, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H1E 4G4", "qc_phone": "514-532-1250", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3303 3404 {"domain": "turlo.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://turlo.ca/", "active": true, "final_domain": "turlo.ca", "title": "Redirecting...", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
3304 3405 {"domain": "tutacoco.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.tutacoco.com/", "active": true, "final_domain": "tutacoco.com", "title": "TUTA &amp; COCO &mdash; votre enfant l&#39;artiste", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2S 2C7", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3305 3406 {"domain": "tutleconomusee.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://tutleconomusee.com/", "active": true, "final_domain": "tutleconomusee.com", "title": "TUTL Économusée", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
3306 3407 {"domain": "tvcotv.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://tvcotv.com/", "active": true, "final_domain": "tvcotv.com", "title": "Accueil - TVCO", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
3408 +{"domain": "twistcreations.ca", "checked_at": "2026-08-12", "status": 429, "final_url": "https://twistcreations.ca/", "active": false}
3307 3409 {"domain": "twistedforksp.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://twistedforksp.com", "active": true, "final_domain": "twistedforksp.com", "title": "TWISTED FORK PRESERVES- ARTISAN JAMS | BBQ SAUCES |SPICE RUBS |ALBERTA &ndash; Twisted Fork SP", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3308 3410 {"domain": "u-main.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://u-main.ca", "active": true, "final_domain": "u-main.ca", "title": "Cheese Making Kits | Make Cheese at Home | U MAIN", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3309 3411 {"domain": "ubald.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ubald.ca", "active": true, "final_domain": "ubald.ca", "title": "Ubald Distillerie - Cultivé et distillé ici", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G0A 4L0", "qc_phone": "418 277-2294", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3310 3412 {"domain": "ull.no", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ull.no/", "active": true, "final_domain": "ull.no", "title": "Hillesvåg Ullvarefabrikk | Ull.no", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 3045, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": "en"}
3311 3413 {"domain": "ultratrailcanada.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ultratrailcanada.com/", "active": true, "final_domain": "ultratrailcanada.com", "title": "Québec Mega Trail, course Ultra-Trail au Canada", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 28, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
3312 3414 {"domain": "ultratrailharricana.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://ultratrailharricana.com/", "active": true, "final_domain": "ultratrailharricana.com", "title": "Ultra-Trail Harricana : Course en sentier Charlevoix, Québec", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "H1Y 3R6", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3415 +{"domain": "umain.co", "checked_at": "2026-08-12", "status": 200, "final_url": "https://umain.co/", "active": true, "final_domain": "umain.co", "title": "UMAIN Joaillerie", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": "5142912243", "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3313 3416 {"domain": "umam.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://umam.ca", "active": true, "final_domain": "umam.ca", "title": "UMAM - 100% Quebec-made fish sauce", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3314 3417 {"domain": "umamichampignon.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.umamichampignon.com/", "active": true, "final_domain": "umamichampignon.com", "title": "Umami champignon", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
3315 3418 {"domain": "umamiepicerie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://umamiepicerie.com/", "active": true, "final_domain": "umamiepicerie.com", "title": "Umami Épicerie", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 6, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
@@ -3331,6 +3434,7 @@
3331 3434 {"domain": "v25inc.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://v25inc.com/", "active": true, "final_domain": "v25inc.com", "title": "V25 — Veaux de grain, poulet et ail | Ferme familiale", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0C 1S0", "qc_phone": "819-818-0561", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
3332 3435 {"domain": "vacheamaillotte.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://vacheamaillotte.com/", "active": true, "final_domain": "vacheamaillotte.com", "title": "La Fromagerie La Vache à Maillotte | 30 ans de passion fromagère", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 60, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J9Z 2S5", "qc_phone": "(819) 333-1121", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3333 3436 {"domain": "vachon.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.vachon.com/", "active": true, "final_domain": "vachon.com", "title": "Vachon - Eat joy!", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
3437 +{"domain": "vachonknives.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.vachonknives.com/", "active": true, "final_domain": "vachonknives.com", "title": "Vachon Knives", "platform": "squarespace", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
3334 3438 {"domain": "vaillancourt.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.vaillancourt.ca/", "active": true, "final_domain": "vaillancourt.ca", "title": "Vaillancourt Portes et Fen&#xEA;tres | Fabricant qu&#xE9;b&#xE9;cois", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "J0C 1K0", "qc_phone": "819 395-4484", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3335 3439 {"domain": "val-saint-francois.qc.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://val-saint-francois.qc.ca/", "active": true, "final_domain": "val-saint-francois.qc.ca", "title": "MRC Val-Saint-François | De culture innovante", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0B 2H0", "qc_phone": "819 826-6505", "mentions_quebec": true, "tld_quebec": true, "socials": ["facebook.com"], "language": "en"}
3336 3440 {"domain": "valcaudalies.com", "checked_at": "2026-08-12", "status": 503, "final_url": "https://valcaudalies.com/", "active": false}
@@ -3345,6 +3449,7 @@
3345 3449 {"domain": "varia-condiments.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='varia-condiments.com', port=443): Max retries exceeded with url: / (Caused by NameResolutionEr", "HTTPSConnectionPool(host='www.varia-condiments.com', port=443): Max retries exceeded with url: / (Caused by NameResoluti", "HTTPConnectionPool(host='varia-condiments.com', port=80): Max retries exceeded with url: / (Caused by NameResolutionErro"], "status": null, "final_url": "", "active": false}
3346 3450 {"domain": "varin.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://varin.ca/", "active": true, "final_domain": "varin.ca", "title": "Services - événementiel | Érabliere Varin", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": "fr"}
3347 3451 {"domain": "vaudryvilleneuve.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://vaudryvilleneuve.ca/", "active": true, "final_domain": "vaudryvilleneuve.ca", "title": "Vaudry Villeneuve | Rampes et balcons en aluminium à Terrebonne", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 71, "has_cart": true, "made_in_qc_wording": true, "qc_postal": "J6X 4J2", "qc_phone": "(450) 417-1666", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
3452 +{"domain": "vcreation.shop", "checked_at": "2026-08-12", "status": 429, "final_url": "https://vcreation.shop/", "active": false}
3348 3453 {"domain": "vegetolab.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://vegetolab.com/", "active": true, "final_domain": "vegetolab.com", "title": "GROSSISTE FRUITIER → Végétolab", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 107, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G8E 1X7", "qc_phone": "418 347-1737", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "fr"}
3349 3454 {"domain": "vegpro.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://vegpro.com/", "active": true, "final_domain": "vegpro.com", "title": "Vegpro - Producteur-emballeur de laitues et légumes frais", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "J0L 2N0", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
3350 3455 {"domain": "veillesurtoi.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://veillesurtoi.com", "active": true, "final_domain": "veillesurtoi.com", "title": "Veille sur toi : Boutique pour enfants", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H7S 1M9", "qc_phone": "(450) 239-0350", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
@@ -3384,7 +3489,10 @@
3384 3489 {"domain": "verifruit.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.verifruit.ca/", "active": true, "final_domain": "verifruit.ca", "title": "Verifruit - Vrais fruits enrobés de chocolat noir", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
3385 3490 {"domain": "veritable.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://veritable.ca/", "active": true, "final_domain": "veritable.ca", "title": "Accueil - Véritable", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": true, "qc_postal": "G1L 1N7", "qc_phone": "(418) 626-8000", "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
3386 3491 {"domain": "veroniquedaragon.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://veroniquedaragon.com/", "active": true, "final_domain": "veroniquedaragon.com", "title": "Véronique d&#039;Aragon", "platform": "woocommerce", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "H2W 2M2", "qc_phone": "5142735225", "mentions_quebec": true, "tld_quebec": false, "socials": [], "language": null, "via": "direct"}
3492 +{"domain": "veroniqueroyjwls.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://veroniqueroyjwls.com/", "active": false}
3493 +{"domain": "verredonge.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.verredonge.com/", "active": true, "final_domain": "verredonge.com", "title": "VERRE D&#x27;ONGE — Studio de verre soufflé", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["instagram.com"], "language": "en"}
3387 3494 {"domain": "verrelime.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.verrelime.ca/", "active": true, "final_domain": "verrelime.ca", "title": "Verre Lime | restaurant | 367a Rue Racine E, Chicoutimi, QC G7H 4X7, Canada", "platform": "wix", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G7H 4X7", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com"], "language": "en"}
3495 +{"domain": "verretigo.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='verretigo.ca', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerifica", "HTTPSConnectionPool(host='www.verretigo.ca', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVeri"], "status": 200, "final_url": "http://verretigo.ca/", "active": true, "final_domain": "verretigo.ca", "title": "Web Hosting from HostPapa", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": [], "language": null}
3388 3496 {"domain": "versantfruitier.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='versantfruitier.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError", "HTTPSConnectionPool(host='www.versantfruitier.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLE"], "status": 200, "final_url": "http://versantfruitier.com/", "active": true, "final_domain": "versantfruitier.com", "title": "Ferme le versant fruitier", "platform": "", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
3389 3497 {"domain": "versforet.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://versforet.com/", "active": false}
3390 3498 {"domain": "versomicrobrasserie.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://versomicrobrasserie.com/", "active": true, "final_domain": "versomicrobrasserie.com", "title": "Accueil - Verso Microbrasserie - Bières brassées à Lac-Etchemin", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": "G0R 1S0", "qc_phone": "418 625-2101", "mentions_quebec": true, "tld_quebec": false, "socials": ["instagram.com", "facebook.com"], "language": "fr"}
@@ -3463,6 +3571,8 @@
3463 3571 {"domain": "ww.nomadvan.ca", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='ww.nomadvan.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionError(\"H", "HTTPSConnectionPool(host='www.ww.nomadvan.ca', port=443): Max retries exceeded with url: / (Caused by NameResolutionErro", "HTTPConnectionPool(host='ww.nomadvan.ca', port=80): Max retries exceeded with url: / (Caused by NameResolutionError(\"HTT"], "status": null, "final_url": "", "active": false}
3464 3572 {"domain": "wwww.chopchopboards.com", "checked_at": "2026-08-12", "errors": ["HTTPSConnectionPool(host='wwww.chopchopboards.com', port=443): Max retries exceeded with url: / (Caused by NameResolutio", "HTTPSConnectionPool(host='www.wwww.chopchopboards.com', port=443): Max retries exceeded with url: / (Caused by NameResol", "HTTPConnectionPool(host='wwww.chopchopboards.com', port=80): Max retries exceeded with url: / (Caused by NameResolutionE"], "status": null, "final_url": "", "active": false}
3465 3573 {"domain": "xplorremorques.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://xplorremorques.ca/", "active": true, "final_domain": "xplorremorques.ca", "title": "Xplor - Fabricant de Remorques Fermées au Québec", "platform": "woocommerce", "catalog_endpoint": "/wp-json/wc/store/v1/products", "catalog_count_hint": 10, "has_cart": true, "made_in_qc_wording": false, "qc_postal": "G9H 2E5", "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com"], "language": "en"}
3574 +{"domain": "yataceramiques.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://yataceramiques.com/", "active": true, "final_domain": "yataceramiques.com", "title": "", "platform": "wordpress", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": false, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "en"}
3575 +{"domain": "yawinonh.com", "checked_at": "2026-08-12", "status": 429, "final_url": "https://yawinonh.com/", "active": false}
3466 3576 {"domain": "yellowshoes.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://yellowshoes.com", "active": true, "final_domain": "yellowshoes.com", "title": "Yellow | From Quebec Since 1916 - Footwear for the whole family &ndash; Yellow Shoes", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": true, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3467 3577 {"domain": "yesjerky.ca", "checked_at": "2026-08-12", "status": 200, "final_url": "https://yesjerky.ca", "active": true, "final_domain": "yesjerky.ca", "title": "Ye&#39;s Jerky", "platform": "shopify", "catalog_endpoint": "/products.json", "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": true, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": null, "via": "scrapfly"}
3468 3578 {"domain": "yolonuts.com", "checked_at": "2026-08-12", "status": 200, "final_url": "https://www.yolonuts.com/password", "active": true, "final_domain": "yolonuts.com", "title": "www.yolonuts.com", "platform": "shopify", "catalog_endpoint": null, "catalog_count_hint": null, "has_cart": true, "made_in_qc_wording": false, "qc_postal": null, "qc_phone": null, "mentions_quebec": false, "tld_quebec": false, "socials": ["facebook.com", "instagram.com"], "language": "fr"}
deleted data/fabrika.db-journal +0 −0

Binary file not shown.

added data/raw/manual_additions.jsonl +1 −0
@@ -0,0 +1 @@
1 +{"name": "Bijoux Medusa", "domain": "bijouxmedusa.com", "url": "https://www.bijouxmedusa.com", "region_hint": "Saguenay–Lac-Saint-Jean", "category_hint": "bijoux", "evidence": "Bijouterie québécoise (Chicoutimi) — bijoux sur mesure en or fabriqués au Québec + montres de luxe; demandé par l'utilisateur", "query": "ajout manuel"}
added data/raw/search_sweep_bijoux.jsonl +73 −0
@@ -0,0 +1,73 @@
1 +{"name":"Caroline Savoie Joaillerie","domain":"carolinesavoiejoaillerie.com","url":"https://carolinesavoiejoaillerie.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Joaillière basée à Montréal, bijoux sur mesure fabriqués au Québec, boutique en ligne","query":"joaillerie québécoise boutique en ligne créateur"}
2 +{"name":"Dominic Dufour Joaillier","domain":"dominicdufourjoaillier.com","url":"https://www.dominicdufourjoaillier.com","region_hint":"Québec","category_hint":"bijoux","evidence":"Artisan joaillier, création sur mesure/remodelage, boutique en ligne par Panierdachat","query":"joaillerie québécoise boutique en ligne créateur"}
3 +{"name":"Octeau Joaillier","domain":"octeaujoaillier.com","url":"https://www.octeaujoaillier.com","region_hint":"Sainte-Julie, Montérégie","category_hint":"bijoux","evidence":"Créateur québécois de bijoux uniques et exclusifs depuis 2008, Sainte-Julie QC","query":"joaillerie québécoise boutique en ligne créateur"}
4 +{"name":"Marie-Eve Bordeleau, Sculptures prêtes à porter","domain":"marie-evebordeleau.com","url":"https://boutique.marie-evebordeleau.com","region_hint":"Trois-Rivières","category_hint":"bijoux","evidence":"Bijoux en argent sterling faits main au Québec, artiste originaire de Trois-Rivières","query":"bijoux faits main Québec boutique en ligne artisan"}
5 +{"name":"Flamme en Rose","domain":"flammeenrose.com","url":"https://flammeenrose.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Joaillier & Bijouterie à Montréal, bijoux haut de gamme faits à la main par joaillière Michèle Côté","query":"joaillerie québécoise boutique en ligne créateur"}
6 +{"name":"L'AUNE Atelier","domain":"launeatelier.com","url":"https://www.launeatelier.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Joaillerie artisanale, bijoux faits à la main à Montréal, boutique en ligne","query":"bijoux faits main Québec boutique en ligne artisan"}
7 +{"name":"LOFT.bijoux","domain":"loftbijoux.com","url":"https://loftbijoux.com/fr","region_hint":"Montréal","category_hint":"bijoux","evidence":"Atelier-boutique de bijoux sur mesure et bagues de mariage sur le Plateau, Montréal","query":"créateur bijoux Montréal boutique en ligne"}
8 +{"name":"MYEL Design","domain":"myeldesign.com","url":"https://myeldesign.com/fr","region_hint":"Montréal","category_hint":"bijoux","evidence":"Maison de joaillerie montréalaise, créations éthiques signées Myriam Elie, boutique en ligne","query":"créateur bijoux Montréal boutique en ligne"}
9 +{"name":"NEUF.VINGT.CINQ","domain":"neufvingtcinq.com","url":"https://neufvingtcinq.com","region_hint":"Boisbriand, Laurentides","category_hint":"bijoux","evidence":"Bijouterie québécoise basée à Boisbriand, boutique en ligne avec studio","query":"joaillerie québécoise boutique en ligne créateur"}
10 +{"name":"Horace Jewelry","domain":"horacejewelry.com","url":"https://horacejewelry.com","region_hint":"Repentigny","category_hint":"bijoux","evidence":"Entreprise de bijoux québécoise fondée en 2012, adresse à Repentigny, bijouterie en ligne","query":"créateur bijoux Sherbrooke boutique en ligne"}
11 +{"name":"V Création","domain":"vcreation.shop","url":"https://vcreation.shop","region_hint":"Québec","category_hint":"bijoux","evidence":"Bijoux artisanaux, boutique en ligne, livraison gratuite au Canada","query":"créateur bijoux Sherbrooke boutique en ligne"}
12 +{"name":"Les créations Branie","domain":"creationsbranie.com","url":"https://creationsbranie.com","region_hint":"Québec","category_hint":"bijoux","evidence":"Bijoux faits à la main avec acier inoxydable et pierres, boutique en ligne","query":"créateur bijoux Sherbrooke boutique en ligne"}
13 +{"name":"Les Bijoux Therrien","domain":"lesbijouxtherrien.com","url":"https://www.lesbijouxtherrien.com","region_hint":"Chicoutimi, Saguenay","category_hint":"bijoux","evidence":"Bijoux artisanaux en argent à Chicoutimi et Saguenay, argent sterling 925","query":"créateur bijoux Saguenay Chicoutimi boutique en ligne"}
14 +{"name":"Rebelles des Bois","domain":"rebellesdesbois.com","url":"https://rebellesdesbois.com","region_hint":"Saguenay","category_hint":"bijoux","evidence":"Créateur de bijoux et objets en bois, boutique en ligne, livraison gratuite dès 120$","query":"créateur bijoux Saguenay Chicoutimi boutique en ligne"}
15 +{"name":"Alberto Bijoux","domain":"albertobijoux.com","url":"https://www.albertobijoux.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Collection de bijoux en argent sterling 925 à Montréal, aussi listé pour body jewelry (Yelp)","query":"bijoux argent sterling Québec créateur boutique en ligne"}
16 +{"name":"Camillette","domain":"camillette.com","url":"https://camillette.com/fr","region_hint":"Montréal","category_hint":"bijoux","evidence":"Bijouterie Montréal, bijoux faits à la main, fondée et designée par Camille Ouellette à Montréal","query":"bijoux argent sterling Québec créateur boutique en ligne"}
17 +{"name":"Verretigo","domain":"verretigo.ca","url":"https://verretigo.ca","region_hint":"Gatineau","category_hint":"bijoux","evidence":"Pièces uniques créées et fabriquées à la main dans un atelier basé à Gatineau, Outaouais","query":"créateur bijoux Gatineau boutique en ligne"}
18 +{"name":"Christophe Poly","domain":"christophepoly.com","url":"https://christophepoly.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Bijoux artisanaux québécois, entièrement faits à la main à Montréal, boutique 6044 rue St-Hubert","query":"créateur bijoux Gatineau boutique en ligne"}
19 +{"name":"Gemmes Québec","domain":"gemmesquebec.com","url":"https://www.gemmesquebec.com","region_hint":"Québec","category_hint":"bijoux","evidence":"Fabricant de bijoux sertis avec des pierres gemmes minées au Québec, collection argent sterling","query":"bijoux pierres minéraux Québec créateur boutique en ligne"}
20 +{"name":"Mousseline","domain":"bijouxmousseline.com","url":"https://www.bijouxmousseline.com","region_hint":"Cantons de l'Est, Estrie","category_hint":"bijoux","evidence":"Bijoux botaniques de résine et de verre, atelier dans les Cantons de l'Est du Québec","query":"bijoux résine faits au Québec boutique en ligne"}
21 +{"name":"Matshesku Creations","domain":"matsheshucreations.com","url":"https://matsheshucreations.com/collections/bijoux-artisanaux-autochtones","region_hint":"Québec","category_hint":"bijoux","evidence":"Boutique en ligne de bijoux autochtones québécois, boucles d'oreilles perlées faites main","query":"bijoux autochtones perlage Québec boutique en ligne"}
22 +{"name":"Tuknut","domain":"tuknut.com","url":"https://tuknut.com","region_hint":"Québec","category_hint":"bijoux","evidence":"Bijoux faits à la main par une artiste autochtone québécoise, acier inoxydable et pierres semi-précieuses","query":"bijoux autochtones perlage Québec boutique en ligne"}
23 +{"name":"Yawinonh","domain":"yawinonh.com","url":"https://yawinonh.com/collections/bijoux","region_hint":"Wendake","category_hint":"bijoux","evidence":"Bijoux perlés fabriqués à la main à Wendake par des artisanes autochtones","query":"bijoux autochtones perlage Québec boutique en ligne"}
24 +{"name":"Créations La Louve","domain":"creationslalouve.com","url":"https://creationslalouve.com/collections/boucles-doreilles","region_hint":"Québec","category_hint":"bijoux","evidence":"Boucles d'oreilles et bijoux perlage traditionnel autochtone, boutique en ligne","query":"bijoux autochtones perlage Québec boutique en ligne"}
25 +{"name":"Solios Watches","domain":"solioswatches.com","url":"https://www.solioswatches.com/fr","region_hint":"Montréal","category_hint":"bijoux","evidence":"Montres solaires écoresponsables, entreprise québécoise conçue et assemblée à Montréal","query":"montres québécoises marque boutique en ligne"}
26 +{"name":"Rustic-Tac","domain":"rustictac.ca","url":"https://rustictac.ca/collections/montres-pour-homme","region_hint":"Québec","category_hint":"bijoux","evidence":"Montres en bois, certification \"Conçu au Québec\" par Les Produits du Québec","query":"montres québécoises marque boutique en ligne"}
27 +{"name":"Kara Bijoux","domain":"karabijouxetstyle.com","url":"https://karabijouxetstyle.com","region_hint":"Québec (ville)","category_hint":"bijoux","evidence":"Boutique en ligne de bijoux artisanaux québécois faits main à Québec","query":"bijoux résine faits au Québec boutique en ligne"}
28 +{"name":"Bijoux Pépine","domain":"bijouxpepine.com","url":"https://bijouxpepine.com/pages/about","region_hint":"Montréal","category_hint":"bijoux","evidence":"Marque franco-québécoise de bijoux, assemblés à la main à Montréal depuis 2013, designer Perrine Marez","query":"Bijoux Pépine boutique en ligne Québec"}
29 +{"name":"Véronique Roy JWLS","domain":"veroniqueroyjwls.com","url":"https://veroniqueroyjwls.com/fr/pages/about-veronique-roy-jwls","region_hint":"Montréal","category_hint":"bijoux","evidence":"Bijoux minimalistes québécois faits à la main dans l'atelier-boutique Saint-Henri, Montréal","query":"bijoux minimalistes Montréal créateur boutique en ligne"}
30 +{"name":"Lidia Jewelry","domain":"lidiajewelry.ca","url":"https://lidiajewelry.ca","region_hint":"Montréal","category_hint":"bijoux","evidence":"Bijoux minimalistes faits à la main au Québec par la joaillière Lidia dans son atelier à Montréal","query":"bijoux minimalistes Montréal créateur boutique en ligne"}
31 +{"name":"Midi34","domain":"midi34.ca","url":"https://midi34.ca","region_hint":"Québec","category_hint":"bijoux","evidence":"Boutique de bijoux minimalistes fabriqués à la main, d'origine locale","query":"bijoux minimalistes Montréal créateur boutique en ligne"}
32 +{"name":"Bijoux Pease","domain":"peasejewelry.com","url":"https://peasejewelry.com/en","region_hint":"Québec","category_hint":"bijoux","evidence":"Bijoux minimalistes, légers et confortables, fabriqués à la main au Québec","query":"bijoux minimalistes Montréal créateur boutique en ligne"}
33 +{"name":"Isabelle Ferland Bijoux en bois","domain":"isabelleferland.com","url":"https://isabelleferland.com","region_hint":"Québec","category_hint":"bijoux","evidence":"Entreprise québécoise, bijoux en bois artisanaux faits main au Québec","query":"Cadran bijoux Québec créateur"}
34 +{"name":"Beblue Bijoux","domain":"bebluebijoux.com","url":"https://www.bebluebijoux.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Bijoux fait main au Canada depuis 2009, ateliers montréalais, argent sterling et vermeil or","query":"bijoux vermeil Québec créateur boutique en ligne"}
35 +{"name":"Bijoux Caroline Néron","domain":"carolineneron.com","url":"https://carolineneron.com","region_hint":"Québec","category_hint":"bijoux","evidence":"Marque québécoise bien connue, bijouterie en ligne carolineneron.com","query":"Bijoux Caroline Néron boutique en ligne"}
36 +{"name":"Atelier Émigé","domain":"atelieremige.com","url":"https://atelieremige.com/collections/evenements-mariage-fiancailles","region_hint":"Québec","category_hint":"bijoux","evidence":"Bagues de fiançailles et alliances en or 18K faites au Québec, bijoux de mariage artisanaux","query":"alliances joncs de mariage créateur québécois boutique en ligne"}
37 +{"name":"Mes bijoux de Famille","domain":"mesbijouxdefamille.ca","url":"https://www.mesbijouxdefamille.ca","region_hint":"Québec","category_hint":"bijoux","evidence":"100% québécois depuis plus de 10 ans, la plus grande boutique de bijoux personnalisés au Québec","query":"bijoux personnalisés gravure Québec boutique en ligne"}
38 +{"name":"Origine Gravure","domain":"originegravure.ca","url":"https://originegravure.ca/fr","region_hint":"Saint-Césaire, Montérégie","category_hint":"bijoux","evidence":"Bijoux personnalisés avec pierres de naissance et gravures, Saint-Césaire QC","query":"bijoux personnalisés gravure Québec boutique en ligne"}
39 +{"name":"Lost & Faune","domain":"lostandfaune.com","url":"https://www.lostandfaune.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Entreprise montréalaise, bijouterie en ligne québécoise, bijoux fabriqués au Québec","query":"bijoux émail créateur québécois boutique en ligne"}
40 +{"name":"Mathieu Blanchard Joaillerie","domain":"mathieublanchard.ca","url":"https://mathieublanchard.ca","region_hint":"Granby","category_hint":"bijoux","evidence":"Créations uniques et bijoux sur mesure, atelier et boutique à Granby, QC","query":"bijouterie Granby boutique en ligne"}
41 +{"name":"L'Atelier Joaillerie Solli","domain":"solliart.com","url":"https://solliart.com","region_hint":"Châteauguay, Montérégie","category_hint":"bijoux","evidence":"Bijouterie spécialisée dans les bijoux faits main personnalisables, Châteauguay QC","query":"créateur bijoux Lanaudière Laurentides boutique en ligne"}
42 +{"name":"Pénélope Clinique","domain":"penelopeclinique.com","url":"https://penelopeclinique.com","region_hint":"Saint-Jérôme, Laurentides","category_hint":"bijoux","evidence":"Boutique de bijoux corporels haut de gamme et clinique de perçage, Saint-Jérôme/Blainville/Sainte-Sophie, boutique en ligne","query":"piercing body jewelry Québec boutique en ligne"}
43 +{"name":"Bijouterie Concept","domain":"bijouterieconcept.com","url":"https://bijouterieconcept.com","region_hint":"Sherbrooke","category_hint":"bijoux","evidence":"Bijouterie en ligne à Sherbrooke, bagues, bracelets, chaînes, joncs, montres (détaillant)","query":"créateur bijoux Sherbrooke boutique en ligne"}
44 +{"name":"Donj Jewellery","domain":"donjjewellery.com","url":"https://donjjewellery.com/fr/bijoux-sherbrooke","region_hint":"Sherbrooke / Saguenay","category_hint":"bijoux","evidence":"Bijouterie fine et sur mesure établie à Sherbrooke, présente aussi à Saguenay (détaillant/sur mesure)","query":"créateur bijoux Sherbrooke boutique en ligne"}
45 +{"name":"Bijoux Medusa","domain":"bijouxmedusa.com","url":"https://www.bijouxmedusa.com","region_hint":"Québec / Chicoutimi","category_hint":"bijoux","evidence":"Bijouterie en ligne No.1 Canada, boutiques à Québec et Chicoutimi/Saguenay (détaillant)","query":"créateur bijoux Saguenay Chicoutimi boutique en ligne"}
46 +{"name":"Bijouterie Simard","domain":"bijouteriesimard.ca","url":"https://bijouteriesimard.ca","region_hint":"Saguenay","category_hint":"bijoux","evidence":"Vente et réparation de bijoux, montres et horloges (détaillant), boutique en ligne","query":"créateur bijoux Saguenay Chicoutimi boutique en ligne"}
47 +{"name":"Doucet Latendresse","domain":"doucetlatendresse.com","url":"https://www.doucetlatendresse.com","region_hint":"Gatineau / Québec","category_hint":"bijoux","evidence":"Bijouterie en ligne no.1 au Québec, présente à Gatineau et plusieurs villes (détaillant)","query":"créateur bijoux Gatineau boutique en ligne"}
48 +{"name":"Bijouterie Langlois","domain":"bijouterielanglois.com","url":"https://bijouterielanglois.com","region_hint":"Québec (ville)","category_hint":"bijoux","evidence":"Bijoutier en ligne, bagues de fiançailles fabriquées à Québec, bijouterie familiale depuis 1953 (détaillant/fabricant)","query":"bagues de fiançailles créateur québécois boutique en ligne"}
49 +{"name":"Joaillerie St-Onge","domain":"joailleriestonge.com","url":"https://joailleriestonge.com/collections/bagues-de-fiancailles","region_hint":"Montréal","category_hint":"bijoux","evidence":"Bagues de fiançailles entièrement fabriquées au Québec dans l'atelier de Montréal","query":"bagues de fiançailles créateur québécois boutique en ligne"}
50 +{"name":"Bijouterie Russell","domain":"bijouterierussell.ca","url":"https://www.bijouterierussell.ca/boutique-en-ligne","region_hint":"Laval","category_hint":"bijoux","evidence":"Vente de bijoux en ligne, bijouterie à Laval (détaillant)","query":"bijouterie Laval boutique en ligne"}
51 +{"name":"Bijouterie Alarie","domain":"bijouteriealarie.com","url":"https://www.bijouteriealarie.com","region_hint":"Trois-Rivières","category_hint":"bijoux","evidence":"Bijoutier à Trois-Rivières depuis plus de 30 ans, boutique en ligne et en boutique (détaillant/conception sur mesure)","query":"bijouterie Trois-Rivières boutique en ligne"}
52 +{"name":"Bijouterie Lampron","domain":"bijouterielampron.com","url":"https://bijouterielampron.com","region_hint":"Drummondville","category_hint":"bijoux","evidence":"Créations sur mesure, bijoux et réparation à Drummondville (détaillant/créateur sur mesure)","query":"bijouterie Drummondville boutique en ligne"}
53 +{"name":"Bijouterie Brouillette","domain":"bijouteriebrouillette.ca","url":"https://bijouteriebrouillette.ca","region_hint":"Granby","category_hint":"bijoux","evidence":"Bijouterie familiale à Granby depuis 1939, spécialiste bagues à diamants et joncs de mariage (détaillant)","query":"bijouterie Granby boutique en ligne"}
54 +{"name":"Bijouterie Déziel Joailliers","domain":"bijouteriedeziel.com","url":"https://bijouteriedeziel.com","region_hint":"Granby","category_hint":"bijoux","evidence":"Bijouterie Déziel Joailliers, adresse rue Principale, Granby QC (détaillant)","query":"bijouterie Granby boutique en ligne"}
55 +{"name":"Bijouterie Jodoin","domain":"bijouteriejodoin.com","url":"https://www.bijouteriejodoin.com","region_hint":"Granby","category_hint":"bijoux","evidence":"Bijouterie à Granby vendant collections ANIA HAIE, Pesavento, VAHAN, boutique en ligne (détaillant)","query":"bijouterie Granby boutique en ligne"}
56 +{"name":"Bijouterie Giffard","domain":"bijouteriegiffard.ca","url":"https://www.bijouteriegiffard.ca","region_hint":"Québec (ville)","category_hint":"bijoux","evidence":"Bijouterie québécoise à Québec depuis 1944, bijoux sur mesure, boutique en ligne, gravure (détaillant)","query":"bijouterie Saint-Jérôme boutique en ligne"}
57 +{"name":"Bijouterie Diplomate","domain":"bijouteriediplomate.com","url":"https://www.bijouteriediplomate.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Joaillier à Montréal depuis 1965, bijouterie artisanale familiale, achat en ligne ou en boutique (détaillant)","query":"bijouterie Saint-Jérôme boutique en ligne"}
58 +{"name":"Mantion Bijoutier","domain":"mantionbijoutier.com","url":"https://mantionbijoutier.com","region_hint":"Terrebonne","category_hint":"bijoux","evidence":"Bijouterie en ligne, Mantion Bijoutier - Terrebonne, bracelets, joncs, montres (détaillant)","query":"bijouterie Terrebonne boutique en ligne"}
59 +{"name":"Bijouterie J'Adore","domain":"bijouteriejadore.com","url":"https://bijouteriejadore.com","region_hint":"Terrebonne","category_hint":"bijoux","evidence":"Bijouterie et joaillerie à Terrebonne, plus de 33 ans d'expérience (détaillant)","query":"bijouterie Terrebonne boutique en ligne"}
60 +{"name":"Bijouterie Pénélope","domain":"bijouteriepenelope.com","url":"https://www.bijouteriepenelope.com","region_hint":"Québec","category_hint":"bijoux","evidence":"Boutique en ligne vendant bagues, colliers, montres de marques diverses (détaillant)","query":"bijouterie Terrebonne boutique en ligne"}
61 +{"name":"Ecksand","domain":"ecksand.com","url":"https://ecksand.com/fr/pages/jewelry-store-montreal","region_hint":"Montréal / Brossard","category_hint":"bijoux","evidence":"Bijoutier canadien, bagues de fiançailles fabriquées en atelier à Montréal, or recyclé et diamants éthiques","query":"bijouterie Brossard boutique en ligne"}
62 +{"name":"Bijouterie LSM","domain":"bijouterielsm.com","url":"https://bijouterielsm.com","region_hint":"Montréal / Brossard","category_hint":"bijoux","evidence":"5 boutiques du Grand Montréal, bijouterie en ligne (détaillant)","query":"bijouterie Brossard boutique en ligne"}
63 +{"name":"Bijouterie Véronneau","domain":"bijouterieveronneau.com","url":"https://www.bijouterieveronneau.com","region_hint":"Longueuil","category_hint":"bijoux","evidence":"Bijoutier-joaillier à Longueuil depuis 1950, création sur mesure en atelier (détaillant/fabricant)","query":"bijouterie Longueuil boutique en ligne"}
64 +{"name":"Joaillerie St-Jean","domain":"bijouteriestjean.com","url":"https://bijouteriestjean.com","region_hint":"Montréal","category_hint":"bijoux","evidence":"Boutique au Complexe Desjardins Montréal, bagues de fiançailles sur mesure, boutique en ligne (détaillant/fabricant)","query":"bijouterie Longueuil boutique en ligne"}
65 +{"name":"Bijouterie Serge Gagnon","domain":"bijouteriesergegagnon.com","url":"https://bijouteriesergegagnon.com/categorie-produit/bijoux/alliances-et-joncs","region_hint":"Québec (ville)","category_hint":"bijoux","evidence":"Alliances et joncs de mariage d'un créateur québécois, rue Saint-Vallier Ouest, Québec","query":"alliances joncs de mariage créateur québécois boutique en ligne"}
66 +{"name":"Bleu Comme Le Ciel","domain":"bleucommeleciel.com","url":"https://bleucommeleciel.com","region_hint":"Montréal / Brossard","category_hint":"bijoux","evidence":"Bijouterie de fantaisie avec boutiques à Montréal et Brossard, boutique en ligne (détaillant multimarques)","query":"Clio Blue bijoux Québec boutique"}
67 +{"name":"Mia Bijoux","domain":"mia-bijoux.ca","url":"https://www.mia-bijoux.ca","region_hint":"Québec (ville)","category_hint":"bijoux","evidence":"Bijouterie basée à Québec City, bijoux en acier inoxydable hypoallergéniques, boutique en ligne","query":"Mia Bijoux Québec boutique en ligne"}
68 +{"name":"Twist Créations","domain":"twistcreations.ca","url":"https://twistcreations.ca","region_hint":"Chicoutimi, Saguenay","category_hint":"bijoux","evidence":"Métiers d'art, artisans et designers québécois, boutique de Chicoutimi vendant bijoux faits main (détaillant multi-artisans)","query":"créateur bijoux Saguenay Chicoutimi boutique en ligne"}
69 +{"name":"Pierres D'Ailleurs","domain":"pierresdailleurs.ca","url":"https://www.pierresdailleurs.ca/fc/collection","region_hint":"Montréal","category_hint":"bijoux","evidence":"Boutique spécialisée en pierres et bijoux de pierres, Montréal, boutique en ligne","query":"bijoux pierres minéraux Québec créateur boutique en ligne"}
70 +{"name":"Bijouterie Fournier et Centre de la Montre","domain":"bijouterie-fournier.com","url":"https://www.bijouterie-fournier.com/fr/bijoux","region_hint":"Rimouski","category_hint":"bijoux","evidence":"Bijouterie Fournier et Centre de la Montre Inc, 152 Av. de la Cathédrale, Rimouski QC, boutique en ligne (détaillant)","query":"bijouterie Rimouski boutique en ligne"}
71 +{"name":"Bijouterie Ferland","domain":"bijouterieferland.com","url":"https://bijouterieferland.com","region_hint":"Rimouski","category_hint":"bijoux","evidence":"Bijouterie Ferland, Rimouski, bagues de fiançailles, boucles d'oreilles, bracelets, joncs, montres (détaillant)","query":"bijouterie Rimouski boutique en ligne"}
72 +{"name":"Bijouterie Brenda","domain":"bijouteriebrenda.ca","url":"https://www.bijouteriebrenda.ca","region_hint":"Drummondville","category_hint":"bijoux","evidence":"Bijouterie à Drummondville, marques renommées, importations haut de gamme, boutique en ligne (détaillant)","query":"bijouterie Drummondville boutique en ligne"}
73 +{"name":"Bijouterie Guérin","domain":"bijouterieguerin.com","url":"https://bijouterieguerin.com","region_hint":"Chicoutimi/Saguenay","category_hint":"bijoux","evidence":"Bijouterie Guérin (ex-René Guérin), Saguenay QC, boutique 100% en ligne depuis fermeture du magasin physique, livraison gratuite au Canada (détaillant)","query":"bijouterie Chicoutimi bague fiançailles boutique en ligne"}
modified data/raw/search_sweep_cmaq.jsonl +25 −0
@@ -94,3 +94,28 @@
94 94 {"name":"Vachon Knives","domain":"vachonknives.com","url":"https://www.vachonknives.com","region_hint":"Québec","category_hint":"Coutelier d'art","evidence":"artisan CMAQ (Noah Vachon, Coutelier d'art), site officiel","query":"Vachon Knives Noah Vachon coutelier québec"}
95 95 {"name":"Bleuet d'Art","domain":"bleuetdart.com","url":"https://collections.bleuetdart.com/en.html","region_hint":"Montréal, QC","category_hint":"Joaillier","evidence":"artisan CMAQ (Nancie Munger, Joaillier), site officiel","query":"Bleuet d'Art Nancie Munger joaillier québec"}
96 96 {"name":"Ateliers de Régis","domain":"ateliersderegis.com","url":"https://ateliersderegis.com","region_hint":"Montréal, QC","category_hint":"Tailleur de pierre","evidence":"artisan CMAQ (Régis Eroyan, Tailleur de pierre), site officiel","query":"Ateliers de Régis Régis Eroyan tailleur de pierre québec"}
97 +{"name":"Thermas Âtre Contemporain","domain":"thermas.ca","url":"https://www.metiersdart.ca/repertoire_artisan.php?cid=332","region_hint":"Capitale-Nationale, QC","category_hint":"Maçon traditionnel","evidence":"artisan CMAQ (Tristan Fortin Le Breton, Maçon traditionnel), courriel officiel info@thermas.ca","query":"Thermas Âtre Contemporain Tristan Fortin Le Breton maçon québec"}
98 +{"name":"Hoya","domain":"hoya-atelier.com","url":"https://www.hoya-atelier.com/apropos","region_hint":"Saint-Ulric, QC","category_hint":"Céramiste","evidence":"artisan CMAQ (Alice Douet, Céramiste), site officiel","query":"Hoya Alice Douet céramiste québec"}
99 +{"name":"Atelier Cône10","domain":"cone10.ca","url":"https://cone10.ca/blog-mario-ruy/blog-post-title-two-alf8z-1kJDy","region_hint":"Québec","category_hint":"Céramiste","evidence":"artisan CMAQ (Mario Ruy Hernandez Vega, Céramiste), site officiel","query":"Atelier Cône10 Mario Ruy Hernandez Vega céramiste québec"}
100 +{"name":"Infravert (Louis Dumontier)","domain":"artpublic.ca","url":"https://artpublic.ca/contact","region_hint":"Laval, QC","category_hint":"Métallier d'art","evidence":"artisan CMAQ (Louis Dumontier, Métallier d'art), Infravert dirigé par la famille Dumontier, site officiel de la direction (ArtPublic.ca)","query":"Infravert Louis Dumontier métallier d'art québec"}
101 +{"name":"Infravert (Ariel Dumontier)","domain":"artpublic.ca","url":"https://artpublic.ca/contact","region_hint":"Laval, QC","category_hint":"Métallier d'art","evidence":"artisan CMAQ (Ariel Dumontier, Métallier d'art, président d'Infravert), site officiel","query":"Infravert Ariel Dumontier métallier d'art québec"}
102 +{"name":"Flèche Atelier du patrimoine","domain":"atelier-martin-gauthier.com","url":"http://atelier-martin-gauthier.com/","region_hint":"Centre-du-Québec, QC","category_hint":"Sculpteur","evidence":"artisan CMAQ (Martin Gauthier, Sculpteur, directeur), site officiel","query":"Flèche Atelier du patrimoine Martin Gauthier sculpteur québec"}
103 +{"name":"Samson Design","domain":"nathaliesamson.com","url":"https://nathaliesamson.com/ceramics-nat-samson","region_hint":"Québec","category_hint":"Céramiste","evidence":"artisan CMAQ (Nathalie Samson, Céramiste), site officiel","query":"Samson Design Nathalie Samson céramiste québec"}
104 +{"name":"Gwenwyvaar Artisane Textile","domain":"gwenwyvaarartisane.com","url":"https://gwenwyvaarartisane.com","region_hint":"Québec","category_hint":"Fileur","evidence":"artisan CMAQ (Maggie D Lepine, Fileur), site officiel","query":"Gwenwyvaar Maggie Lepine artisane textile fileur québec"}
105 +{"name":"Chikiboom","domain":"chikiboom.com","url":"https://www.chikiboom.com","region_hint":"Montréal, QC","category_hint":"Maroquinier","evidence":"artisan CMAQ (Felix Marcuzzo, Maroquinier), site officiel","query":"Chikiboom Felix Marcuzzo maroquinier québec"}
106 +{"name":"Verre d'Onge","domain":"verredonge.com","url":"https://www.verredonge.com","region_hint":"Montréal, QC","category_hint":"Artiste verrier","evidence":"artisan CMAQ (Jérémie St-Onge, Artiste verrier), site officiel","query":"Verre d'Onge Jérémie St-Onge artiste verrier québec"}
107 +{"name":"Atelier C.U.B. (Richard Pontais)","domain":"ateliercub.com","url":"https://www.ateliercub.com","region_hint":"Montréal, QC","category_hint":"Ébéniste","evidence":"artisan CMAQ (Richard Pontais, Ébéniste), site officiel","query":"Atelier C.U.B Richard Pontais ébéniste québec"}
108 +{"name":"Atelier C.U.B. (Sophie Gailliot)","domain":"ateliercub.com","url":"https://www.ateliercub.com","region_hint":"Montréal, QC","category_hint":"Gainier","evidence":"artisan CMAQ (Sophie Gailliot, Gainier, coartisane), site officiel","query":"Atelier C.U.B Sophie Gailliot gainier québec"}
109 +{"name":"Nemrac Style Inc.","domain":"nemracstyle.com","url":"https://www.nemracstyle.com/pages/about-us","region_hint":"Saint-Lambert, QC","category_hint":"Couturier / Designer de mode","evidence":"artisan CMAQ (Carmen Popescu, Couturier/Designer de mode), site officiel","query":"Nemrac Style Carmen Popescu couturier québec"}
110 +{"name":"La Forge d'Ilmarinen inc.","domain":"forgeilmarinen.com","url":"https://www.forgeilmarinen.com/propos.php","region_hint":"Compton, QC","category_hint":"Ferronnier d'art","evidence":"artisan CMAQ (Romain Francès, Ferronnier d'art), site officiel","query":"La Forge d'Ilmarinen Romain Francès ferronnier d'art québec"}
111 +{"name":"Créations GAMA","domain":"designgama.com","url":"https://www.designgama.com/about-3","region_hint":"Montréal, QC","category_hint":"Couturier / Designer de mode","evidence":"artisan CMAQ (Gabrielle Mailhot-Côté, Couturier/Designer de mode), site officiel","query":"Créations GAMA Gabrielle Mailhot-Côté couturier québec"}
112 +{"name":"BELACARO","domain":"belacaro.com","url":"https://belacaro.com/fr/pages/about","region_hint":"Québec","category_hint":"Tricoteur","evidence":"artisan CMAQ (Maude Grondin, Tricoteur), site officiel","query":"BELACARO Maude Grondin tricoteur québec"}
113 +{"name":"NINA JANVIER INC.","domain":"ninajanvier.com","url":"https://www.ninajanvier.com/fr","region_hint":"Montréal, QC","category_hint":"Bijoutier","evidence":"artisan CMAQ (Nina Janvier, Bijoutier), site officiel","query":"NINA JANVIER bijoutier québec"}
114 +{"name":"Atelier l'Établi","domain":"atelier-letabli.ca","url":"https://atelier-letabli.ca/notre-histoire","region_hint":"Québec","category_hint":"Menuisier d'art","evidence":"artisan CMAQ (Jean-François Lachance, Menuisier d'art), site officiel","query":"Atelier l'Établi Jean-François Lachance menuisier d'art québec"}
115 +{"name":"Apidom Inc","domain":"sophiemanessiez.com","url":"https://sophiemanessiez.com/accueil","region_hint":"Québec","category_hint":"Céramiste","evidence":"artisan CMAQ (Sophie Manessiez, Céramiste), site officiel","query":"Apidom Sophie Manessiez céramiste québec"}
116 +{"name":"Sweet Mama Grass","domain":"sweetmamagrass.ca","url":"https://www.sweetmamagrass.ca","region_hint":"Sutton, QC","category_hint":"Vannier","evidence":"artisan CMAQ (Laurence Thiffault, Vannier), site officiel","query":"Sweet Mama Grass Laurence Thiffault vannier québec"}
117 +{"name":"Atelier L.A.F.","domain":"atelierlaf.com","url":"https://www.atelierlaf.com/fr/pages/who-we-are","region_hint":"Montréal, QC","category_hint":"Joaillier","evidence":"artisan CMAQ (Andrew Floyd, Joaillier), site officiel","query":"Atelier L.A.F Andrew Floyd joaillier québec"}
118 +{"name":"Laume","domain":"laumecera.com","url":"https://www.laumecera.com/blank-1","region_hint":"Val-David, QC","category_hint":"Céramiste","evidence":"artisan CMAQ (Laura MacLean, Céramiste), site officiel","query":"Laume Laura MacLean céramiste québec"}
119 +{"name":"Couteaux Deva","domain":"couteauxdeva.com","url":"https://couteauxdeva.com","region_hint":"Québec, QC","category_hint":"Coutelier d'art - Coutelier","evidence":"artisan CMAQ (Dave Fortin, Coutelier d'art), site officiel","query":"Couteaux Deva Dave Fortin coutelier québec"}
120 +{"name":"Camillette Bijoux","domain":"camillette.com","url":"https://camillette.com/fr","region_hint":"Montréal, QC","category_hint":"Joaillier - Bijoutier","evidence":"artisan CMAQ (Camille Ouellette, Joaillier - Bijoutier), site officiel","query":"Camillette Bijoux Camille Ouellette joaillier québec"}
121 +{"name":"Indigène","domain":"indi-gene.ca","url":"https://indi-gene.ca","region_hint":"Québec, QC","category_hint":"Ébéniste","evidence":"artisan CMAQ (Genevieve Gaboury, Ébéniste), site officiel","query":"Indigène Genevieve Gaboury ébéniste québec"}
modified data/stores.json +3035 −59
@@ -1,6 +1,6 @@
1 1 {
2 2 "generated": "2026-08-12",
3 − "count": 3131,
3 + "count": 3224,
4 4 "stores": [
5 5 {
6 6 "id": "1001fondues.com",
@@ -2625,7 +2625,9 @@
2625 2625 "origin_class": "A",
2626 2626 "origin_confidence": 0.85,
2627 2627 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec)",
2628 − "categories": [],
2628 + "categories": [
2629 + "art"
2630 + ],
2629 2631 "socials": [
2630 2632 "https://www.facebook.com/lesproduitsduqc",
2631 2633 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -2633,10 +2635,12 @@
2633 2635 "https://www.instagram.com/lesproduitsduqc/"
2634 2636 ],
2635 2637 "discovery_sources": [
2636 − "lesproduitsduquebec_ent"
2638 + "lesproduitsduquebec_ent",
2639 + "search_sweep_cmaq"
2637 2640 ],
2638 2641 "discovery_source_urls": [
2639 − "https://lesproduitsduquebec.com/entreprises-adherentes/alpagaselect-cmaq"
2642 + "https://lesproduitsduquebec.com/entreprises-adherentes/alpagaselect-cmaq",
2643 + "Alpaga Select Linda Gagné feutrier québec"
2640 2644 ],
2641 2645 "language": "fr",
2642 2646 "ecommerce": true,
@@ -3158,6 +3162,38 @@
3158 3162 "status": "verified",
3159 3163 "enabled": true
3160 3164 },
3165 + {
3166 + "id": "aniello-atelier.com",
3167 + "name": "Aniello Atelier",
3168 + "url": "https://www.aniello-atelier.com",
3169 + "platform": "shopify",
3170 + "catalog_endpoint": "/products.json",
3171 + "city": "",
3172 + "region": "",
3173 + "postal_prefix": null,
3174 + "phone": null,
3175 + "origin_class": "A",
3176 + "origin_confidence": 0.85,
3177 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
3178 + "categories": [
3179 + "art"
3180 + ],
3181 + "socials": [
3182 + "facebook.com",
3183 + "instagram.com"
3184 + ],
3185 + "discovery_sources": [
3186 + "search_sweep_cmaq"
3187 + ],
3188 + "discovery_source_urls": [
3189 + "Aniello Atelier Emilie Dell'Aniello joaillier québec"
3190 + ],
3191 + "language": "en",
3192 + "ecommerce": true,
3193 + "verification_date": "2026-08-12",
3194 + "status": "verified",
3195 + "enabled": true
3196 + },
3161 3197 {
3162 3198 "id": "annemariechagnon.com",
3163 3199 "name": "Anne-Marie Chagnon",
@@ -3895,6 +3931,37 @@
3895 3931 "status": "verified",
3896 3932 "enabled": false
3897 3933 },
3934 + {
3935 + "id": "arquebuserie.ca",
3936 + "name": "Arquebuserie Abitibi",
3937 + "url": "https://arquebuserie.ca",
3938 + "platform": "wordpress",
3939 + "catalog_endpoint": "",
3940 + "city": "",
3941 + "region": "",
3942 + "postal_prefix": null,
3943 + "phone": null,
3944 + "origin_class": "A",
3945 + "origin_confidence": 0.85,
3946 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
3947 + "categories": [
3948 + "art"
3949 + ],
3950 + "socials": [
3951 + "facebook.com"
3952 + ],
3953 + "discovery_sources": [
3954 + "search_sweep_cmaq"
3955 + ],
3956 + "discovery_source_urls": [
3957 + "Arquebuserie Abitibi Karl Gibbs armurier québec"
3958 + ],
3959 + "language": "fr",
3960 + "ecommerce": false,
3961 + "verification_date": "2026-08-12",
3962 + "status": "verified",
3963 + "enabled": false
3964 + },
3898 3965 {
3899 3966 "id": "arsenaldistillerie.com",
3900 3967 "name": "ÉCONOMUSÉE® de la distillation",
@@ -4246,6 +4313,36 @@
4246 4313 "status": "probable",
4247 4314 "enabled": true
4248 4315 },
4316 + {
4317 + "id": "artpublic.ca",
4318 + "name": "Infravert (Louis Dumontier)",
4319 + "url": "https://artpublic.ca",
4320 + "platform": "woocommerce",
4321 + "catalog_endpoint": "",
4322 + "city": "",
4323 + "region": "",
4324 + "postal_prefix": null,
4325 + "phone": null,
4326 + "origin_class": "A",
4327 + "origin_confidence": 0.6,
4328 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
4329 + "categories": [
4330 + "art"
4331 + ],
4332 + "socials": [],
4333 + "discovery_sources": [
4334 + "search_sweep_cmaq"
4335 + ],
4336 + "discovery_source_urls": [
4337 + "Infravert Louis Dumontier métallier d'art québec",
4338 + "Infravert Ariel Dumontier métallier d'art québec"
4339 + ],
4340 + "language": "fr",
4341 + "ecommerce": false,
4342 + "verification_date": "2026-08-12",
4343 + "status": "probable",
4344 + "enabled": false
4345 + },
4249 4346 {
4250 4347 "id": "artsvitrail.com",
4251 4348 "name": "Jocelyne Grondin Arts & Vitrail",
@@ -4492,7 +4589,9 @@
4492 4589 "origin_class": "A",
4493 4590 "origin_confidence": 0.6,
4494 4591 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
4495 − "categories": [],
4592 + "categories": [
4593 + "art"
4594 + ],
4496 4595 "socials": [
4497 4596 "https://www.facebook.com/lesproduitsduqc",
4498 4597 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -4501,10 +4600,12 @@
4501 4600 ],
4502 4601 "discovery_sources": [
4503 4602 "lesproduitsduquebec_ent",
4603 + "search_sweep_cmaq",
4504 4604 "search_sweep_urban"
4505 4605 ],
4506 4606 "discovery_source_urls": [
4507 4607 "https://lesproduitsduquebec.com/entreprises-adherentes/atelier-b-cmaq",
4608 + "atelier b Anne-Marie Laflamme Catherine Métivier couturier québec",
4508 4609 "marque montréalaise vêtements boutique en ligne fabriqué à Montréal"
4509 4610 ],
4510 4611 "language": "en",
@@ -4513,6 +4614,66 @@
4513 4614 "status": "probable",
4514 4615 "enabled": true
4515 4616 },
4617 + {
4618 + "id": "atelier-du-patrimoine.ca",
4619 + "name": "ExpertiseAMG inc. - Restauration du Patrimoine",
4620 + "url": "https://www.atelier-du-patrimoine.ca",
4621 + "platform": "",
4622 + "catalog_endpoint": "",
4623 + "city": "",
4624 + "region": "",
4625 + "postal_prefix": null,
4626 + "phone": "8199999928",
4627 + "origin_class": "A",
4628 + "origin_confidence": 0.85,
4629 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
4630 + "categories": [
4631 + "art"
4632 + ],
4633 + "socials": [],
4634 + "discovery_sources": [
4635 + "search_sweep_cmaq"
4636 + ],
4637 + "discovery_source_urls": [
4638 + "ExpertiseAMG Ann Marlène Gagnon doreur peintre décorateur québec"
4639 + ],
4640 + "language": "fr",
4641 + "ecommerce": false,
4642 + "verification_date": "2026-08-12",
4643 + "status": "verified",
4644 + "enabled": false
4645 + },
4646 + {
4647 + "id": "atelier-letabli.ca",
4648 + "name": "Atelier l'Établi",
4649 + "url": "https://atelier-letabli.ca",
4650 + "platform": "wordpress",
4651 + "catalog_endpoint": "",
4652 + "city": "",
4653 + "region": "",
4654 + "postal_prefix": "H2G",
4655 + "phone": null,
4656 + "origin_class": "A",
4657 + "origin_confidence": 0.85,
4658 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
4659 + "categories": [
4660 + "art"
4661 + ],
4662 + "socials": [
4663 + "facebook.com"
4664 + ],
4665 + "discovery_sources": [
4666 + "search_sweep_cmaq"
4667 + ],
4668 + "discovery_source_urls": [
4669 + "Atelier l'Établi Jean-François Lachance menuisier d'art québec"
4670 + ],
4671 + "language": "fr",
4672 + "ecommerce": false,
4673 + "verification_date": "2026-08-12",
4674 + "status": "verified",
4675 + "enabled": false
4676 + },
4516 4677 {
4517 4678 "id": "atelier140.ca",
4518 4679 "name": "Atelier 140 Ébénisterie",
@@ -4731,6 +4892,39 @@
4731 4892 "status": "verified",
4732 4893 "enabled": true
4733 4894 },
4895 + {
4896 + "id": "ateliercub.com",
4897 + "name": "Atelier C.U.B. (Richard Pontais)",
4898 + "url": "https://www.ateliercub.com",
4899 + "platform": "wordpress",
4900 + "catalog_endpoint": "",
4901 + "city": "",
4902 + "region": "",
4903 + "postal_prefix": null,
4904 + "phone": null,
4905 + "origin_class": "A",
4906 + "origin_confidence": 0.6,
4907 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
4908 + "categories": [
4909 + "art"
4910 + ],
4911 + "socials": [
4912 + "facebook.com",
4913 + "instagram.com"
4914 + ],
4915 + "discovery_sources": [
4916 + "search_sweep_cmaq"
4917 + ],
4918 + "discovery_source_urls": [
4919 + "Atelier C.U.B Richard Pontais ébéniste québec",
4920 + "Atelier C.U.B Sophie Gailliot gainier québec"
4921 + ],
4922 + "language": "fr",
4923 + "ecommerce": false,
4924 + "verification_date": "2026-08-12",
4925 + "status": "probable",
4926 + "enabled": false
4927 + },
4734 4928 {
4735 4929 "id": "atelierdalfred.com",
4736 4930 "name": "Atelier d'Alfred",
@@ -4921,6 +5115,35 @@
4921 5115 "status": "verified",
4922 5116 "enabled": false
4923 5117 },
5118 + {
5119 + "id": "atelieremige.com",
5120 + "name": "Atelier Émigé",
5121 + "url": "https://atelieremige.com",
5122 + "platform": "shopify",
5123 + "catalog_endpoint": "/products.json",
5124 + "city": "",
5125 + "region": "",
5126 + "postal_prefix": null,
5127 + "phone": null,
5128 + "origin_class": "A",
5129 + "origin_confidence": 0.6,
5130 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise",
5131 + "categories": [
5132 + "bijoux"
5133 + ],
5134 + "socials": [],
5135 + "discovery_sources": [
5136 + "search_sweep_bijoux"
5137 + ],
5138 + "discovery_source_urls": [
5139 + "alliances joncs de mariage créateur québécois boutique en ligne"
5140 + ],
5141 + "language": "en",
5142 + "ecommerce": true,
5143 + "verification_date": "2026-08-12",
5144 + "status": "verified",
5145 + "enabled": true
5146 + },
4924 5147 {
4925 5148 "id": "atelierformecreation.com",
4926 5149 "name": "For Mé Création - CMAQ",
@@ -4989,6 +5212,70 @@
4989 5212 "status": "verified",
4990 5213 "enabled": false
4991 5214 },
5215 + {
5216 + "id": "atelierhotelmotel.com",
5217 + "name": "Atelier HOTELMOTEL",
5218 + "url": "https://www.atelierhotelmotel.com",
5219 + "platform": "squarespace",
5220 + "catalog_endpoint": "",
5221 + "city": "",
5222 + "region": "",
5223 + "postal_prefix": "H2N",
5224 + "phone": "5146807488",
5225 + "origin_class": "A",
5226 + "origin_confidence": 0.85,
5227 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
5228 + "categories": [
5229 + "art"
5230 + ],
5231 + "socials": [
5232 + "facebook.com",
5233 + "instagram.com"
5234 + ],
5235 + "discovery_sources": [
5236 + "search_sweep_cmaq"
5237 + ],
5238 + "discovery_source_urls": [
5239 + "Atelier HOTELMOTEL Corinne Bourget maroquinier québec"
5240 + ],
5241 + "language": "en",
5242 + "ecommerce": true,
5243 + "verification_date": "2026-08-12",
5244 + "status": "verified",
5245 + "enabled": false
5246 + },
5247 + {
5248 + "id": "atelierlaf.com",
5249 + "name": "Atelier L.A.F.",
5250 + "url": "https://www.atelierlaf.com",
5251 + "platform": "shopify",
5252 + "catalog_endpoint": "/products.json",
5253 + "city": "",
5254 + "region": "",
5255 + "postal_prefix": null,
5256 + "phone": null,
5257 + "origin_class": "A",
5258 + "origin_confidence": 0.6,
5259 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
5260 + "categories": [
5261 + "art"
5262 + ],
5263 + "socials": [
5264 + "facebook.com",
5265 + "instagram.com"
5266 + ],
5267 + "discovery_sources": [
5268 + "search_sweep_cmaq"
5269 + ],
5270 + "discovery_source_urls": [
5271 + "Atelier L.A.F Andrew Floyd joaillier québec"
5272 + ],
5273 + "language": "en",
5274 + "ecommerce": true,
5275 + "verification_date": "2026-08-12",
5276 + "status": "probable",
5277 + "enabled": true
5278 + },
4992 5279 {
4993 5280 "id": "atelierluclaramee.com",
4994 5281 "name": "Atelier Luc Laramée - CMAQ",
@@ -5238,6 +5525,35 @@
5238 5525 "status": "verified",
5239 5526 "enabled": true
5240 5527 },
5528 + {
5529 + "id": "ateliersderegis.com",
5530 + "name": "Ateliers de Régis",
5531 + "url": "https://ateliersderegis.com",
5532 + "platform": "",
5533 + "catalog_endpoint": "",
5534 + "city": "",
5535 + "region": "",
5536 + "postal_prefix": null,
5537 + "phone": null,
5538 + "origin_class": "A",
5539 + "origin_confidence": 0.6,
5540 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
5541 + "categories": [
5542 + "art"
5543 + ],
5544 + "socials": [],
5545 + "discovery_sources": [
5546 + "search_sweep_cmaq"
5547 + ],
5548 + "discovery_source_urls": [
5549 + "Ateliers de Régis Régis Eroyan tailleur de pierre québec"
5550 + ],
5551 + "language": null,
5552 + "ecommerce": false,
5553 + "verification_date": "2026-08-12",
5554 + "status": "probable",
5555 + "enabled": false
5556 + },
5241 5557 {
5242 5558 "id": "ateliertrilobe.com",
5243 5559 "name": "Atelier Trilobe",
@@ -8582,6 +8898,35 @@
8582 8898 "status": "verified",
8583 8899 "enabled": true
8584 8900 },
8901 + {
8902 + "id": "baraqueapots.com",
8903 + "name": "Baraque a pots",
8904 + "url": "https://www.baraqueapots.com",
8905 + "platform": "wix",
8906 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
8907 + "city": "",
8908 + "region": "",
8909 + "postal_prefix": "H7L",
8910 + "phone": null,
8911 + "origin_class": "A",
8912 + "origin_confidence": 0.9,
8913 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
8914 + "categories": [
8915 + "art"
8916 + ],
8917 + "socials": [],
8918 + "discovery_sources": [
8919 + "search_sweep_cmaq"
8920 + ],
8921 + "discovery_source_urls": [
8922 + "Baraque a pots Marie-France Lefebvre céramiste québec"
8923 + ],
8924 + "language": null,
8925 + "ecommerce": true,
8926 + "verification_date": "2026-08-12",
8927 + "status": "verified",
8928 + "enabled": true
8929 + },
8585 8930 {
8586 8931 "id": "barbenoire.com",
8587 8932 "name": "Barbe noire",
@@ -9238,6 +9583,37 @@
9238 9583 "status": "probable",
9239 9584 "enabled": true
9240 9585 },
9586 + {
9587 + "id": "belacaro.com",
9588 + "name": "BELACARO",
9589 + "url": "https://belacaro.com",
9590 + "platform": "shopify",
9591 + "catalog_endpoint": "/products.json",
9592 + "city": "",
9593 + "region": "",
9594 + "postal_prefix": null,
9595 + "phone": null,
9596 + "origin_class": "A",
9597 + "origin_confidence": 0.9,
9598 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
9599 + "categories": [
9600 + "art"
9601 + ],
9602 + "socials": [
9603 + "instagram.com"
9604 + ],
9605 + "discovery_sources": [
9606 + "search_sweep_cmaq"
9607 + ],
9608 + "discovery_source_urls": [
9609 + "BELACARO Maude Grondin tricoteur québec"
9610 + ],
9611 + "language": "en",
9612 + "ecommerce": true,
9613 + "verification_date": "2026-08-12",
9614 + "status": "verified",
9615 + "enabled": true
9616 + },
9241 9617 {
9242 9618 "id": "belpom.com",
9243 9619 "name": "Verger Belpom - Goûtez-y!",
@@ -9779,6 +10155,546 @@
9779 10155 "status": "probable",
9780 10156 "enabled": false
9781 10157 },
10158 + {
10159 + "id": "bijouteriealarie.com",
10160 + "name": "Bijouterie Alarie",
10161 + "url": "https://www.bijouteriealarie.com",
10162 + "platform": "wix",
10163 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
10164 + "city": "",
10165 + "region": "Mauricie",
10166 + "postal_prefix": "G9A",
10167 + "phone": "819-691-3117",
10168 + "origin_class": "A",
10169 + "origin_confidence": 0.55,
10170 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10171 + "categories": [
10172 + "bijoux"
10173 + ],
10174 + "socials": [],
10175 + "discovery_sources": [
10176 + "search_sweep_bijoux"
10177 + ],
10178 + "discovery_source_urls": [
10179 + "bijouterie Trois-Rivières boutique en ligne"
10180 + ],
10181 + "language": "fr",
10182 + "ecommerce": true,
10183 + "verification_date": "2026-08-12",
10184 + "status": "probable",
10185 + "enabled": true
10186 + },
10187 + {
10188 + "id": "bijouteriebrenda.ca",
10189 + "name": "Bijouterie Brenda",
10190 + "url": "https://www.bijouteriebrenda.ca",
10191 + "platform": "",
10192 + "catalog_endpoint": "",
10193 + "city": "",
10194 + "region": "Centre-du-Québec",
10195 + "postal_prefix": "J2B",
10196 + "phone": "819-477-3738",
10197 + "origin_class": "A",
10198 + "origin_confidence": 0.55,
10199 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10200 + "categories": [
10201 + "bijoux"
10202 + ],
10203 + "socials": [
10204 + "facebook.com"
10205 + ],
10206 + "discovery_sources": [
10207 + "search_sweep_bijoux"
10208 + ],
10209 + "discovery_source_urls": [
10210 + "bijouterie Drummondville boutique en ligne"
10211 + ],
10212 + "language": "fr",
10213 + "ecommerce": false,
10214 + "verification_date": "2026-08-12",
10215 + "status": "probable",
10216 + "enabled": false
10217 + },
10218 + {
10219 + "id": "bijouteriebrouillette.ca",
10220 + "name": "Bijouterie Brouillette",
10221 + "url": "https://bijouteriebrouillette.ca",
10222 + "platform": "",
10223 + "catalog_endpoint": "",
10224 + "city": "",
10225 + "region": "",
10226 + "postal_prefix": null,
10227 + "phone": "4503727242",
10228 + "origin_class": "A",
10229 + "origin_confidence": 0.55,
10230 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10231 + "categories": [
10232 + "bijoux"
10233 + ],
10234 + "socials": [],
10235 + "discovery_sources": [
10236 + "search_sweep_bijoux"
10237 + ],
10238 + "discovery_source_urls": [
10239 + "bijouterie Granby boutique en ligne"
10240 + ],
10241 + "language": "fr",
10242 + "ecommerce": true,
10243 + "verification_date": "2026-08-12",
10244 + "status": "probable",
10245 + "enabled": false
10246 + },
10247 + {
10248 + "id": "bijouterieconcept.com",
10249 + "name": "Bijouterie Concept",
10250 + "url": "https://bijouterieconcept.com",
10251 + "platform": "",
10252 + "catalog_endpoint": "",
10253 + "city": "",
10254 + "region": "",
10255 + "postal_prefix": "J1N",
10256 + "phone": "(819) 791-9900",
10257 + "origin_class": "A",
10258 + "origin_confidence": 0.55,
10259 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10260 + "categories": [
10261 + "bijoux"
10262 + ],
10263 + "socials": [
10264 + "facebook.com"
10265 + ],
10266 + "discovery_sources": [
10267 + "search_sweep_bijoux"
10268 + ],
10269 + "discovery_source_urls": [
10270 + "créateur bijoux Sherbrooke boutique en ligne"
10271 + ],
10272 + "language": "en",
10273 + "ecommerce": true,
10274 + "verification_date": "2026-08-12",
10275 + "status": "probable",
10276 + "enabled": false
10277 + },
10278 + {
10279 + "id": "bijouteriedeziel.com",
10280 + "name": "Bijouterie Déziel Joailliers",
10281 + "url": "https://bijouteriedeziel.com",
10282 + "platform": "",
10283 + "catalog_endpoint": "",
10284 + "city": "",
10285 + "region": "Estrie",
10286 + "postal_prefix": "J2G",
10287 + "phone": "4503751555",
10288 + "origin_class": "A",
10289 + "origin_confidence": 0.55,
10290 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10291 + "categories": [
10292 + "bijoux"
10293 + ],
10294 + "socials": [],
10295 + "discovery_sources": [
10296 + "search_sweep_bijoux"
10297 + ],
10298 + "discovery_source_urls": [
10299 + "bijouterie Granby boutique en ligne"
10300 + ],
10301 + "language": "fr",
10302 + "ecommerce": false,
10303 + "verification_date": "2026-08-12",
10304 + "status": "probable",
10305 + "enabled": false
10306 + },
10307 + {
10308 + "id": "bijouteriediplomate.com",
10309 + "name": "Bijouterie Diplomate",
10310 + "url": "https://www.bijouteriediplomate.com",
10311 + "platform": "shopify",
10312 + "catalog_endpoint": "/products.json",
10313 + "city": "",
10314 + "region": "Montréal",
10315 + "postal_prefix": null,
10316 + "phone": null,
10317 + "origin_class": "A",
10318 + "origin_confidence": 0.35,
10319 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
10320 + "categories": [
10321 + "bijoux"
10322 + ],
10323 + "socials": [],
10324 + "discovery_sources": [
10325 + "search_sweep_bijoux"
10326 + ],
10327 + "discovery_source_urls": [
10328 + "bijouterie Saint-Jérôme boutique en ligne"
10329 + ],
10330 + "language": "en",
10331 + "ecommerce": true,
10332 + "verification_date": "2026-08-12",
10333 + "status": "probable",
10334 + "enabled": true
10335 + },
10336 + {
10337 + "id": "bijouteriegiffard.ca",
10338 + "name": "Bijouterie Giffard",
10339 + "url": "https://www.bijouteriegiffard.ca",
10340 + "platform": "shopify",
10341 + "catalog_endpoint": "/products.json",
10342 + "city": "",
10343 + "region": "",
10344 + "postal_prefix": null,
10345 + "phone": null,
10346 + "origin_class": "A",
10347 + "origin_confidence": 0.55,
10348 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10349 + "categories": [
10350 + "bijoux"
10351 + ],
10352 + "socials": [],
10353 + "discovery_sources": [
10354 + "search_sweep_bijoux"
10355 + ],
10356 + "discovery_source_urls": [
10357 + "bijouterie Saint-Jérôme boutique en ligne"
10358 + ],
10359 + "language": "en",
10360 + "ecommerce": true,
10361 + "verification_date": "2026-08-12",
10362 + "status": "probable",
10363 + "enabled": true
10364 + },
10365 + {
10366 + "id": "bijouterieguerin.com",
10367 + "name": "Bijouterie Guérin",
10368 + "url": "https://bijouterieguerin.com",
10369 + "platform": "shopify",
10370 + "catalog_endpoint": "/products.json",
10371 + "city": "",
10372 + "region": "Saguenay–Lac-Saint-Jean",
10373 + "postal_prefix": "G7H",
10374 + "phone": null,
10375 + "origin_class": "A",
10376 + "origin_confidence": 0.55,
10377 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10378 + "categories": [
10379 + "bijoux"
10380 + ],
10381 + "socials": [
10382 + "facebook.com",
10383 + "instagram.com"
10384 + ],
10385 + "discovery_sources": [
10386 + "search_sweep_bijoux"
10387 + ],
10388 + "discovery_source_urls": [
10389 + "bijouterie Chicoutimi bague fiançailles boutique en ligne"
10390 + ],
10391 + "language": "en",
10392 + "ecommerce": true,
10393 + "verification_date": "2026-08-12",
10394 + "status": "probable",
10395 + "enabled": true
10396 + },
10397 + {
10398 + "id": "bijouteriejadore.com",
10399 + "name": "Bijouterie J'Adore",
10400 + "url": "https://bijouteriejadore.com",
10401 + "platform": "wordpress",
10402 + "catalog_endpoint": "",
10403 + "city": "",
10404 + "region": "",
10405 + "postal_prefix": "J6X",
10406 + "phone": "(450) 492-5315",
10407 + "origin_class": "A",
10408 + "origin_confidence": 0.55,
10409 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10410 + "categories": [
10411 + "bijoux"
10412 + ],
10413 + "socials": [
10414 + "facebook.com"
10415 + ],
10416 + "discovery_sources": [
10417 + "search_sweep_bijoux"
10418 + ],
10419 + "discovery_source_urls": [
10420 + "bijouterie Terrebonne boutique en ligne"
10421 + ],
10422 + "language": "fr",
10423 + "ecommerce": true,
10424 + "verification_date": "2026-08-12",
10425 + "status": "probable",
10426 + "enabled": false
10427 + },
10428 + {
10429 + "id": "bijouteriejodoin.com",
10430 + "name": "Bijouterie Jodoin",
10431 + "url": "https://www.bijouteriejodoin.com",
10432 + "platform": "shopify",
10433 + "catalog_endpoint": "/products.json",
10434 + "city": "",
10435 + "region": "Estrie",
10436 + "postal_prefix": "J2G",
10437 + "phone": "4503725131",
10438 + "origin_class": "A",
10439 + "origin_confidence": 0.6,
10440 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise",
10441 + "categories": [
10442 + "bijoux"
10443 + ],
10444 + "socials": [
10445 + "instagram.com",
10446 + "facebook.com"
10447 + ],
10448 + "discovery_sources": [
10449 + "search_sweep_bijoux"
10450 + ],
10451 + "discovery_source_urls": [
10452 + "bijouterie Granby boutique en ligne"
10453 + ],
10454 + "language": "en",
10455 + "ecommerce": true,
10456 + "verification_date": "2026-08-12",
10457 + "status": "verified",
10458 + "enabled": true
10459 + },
10460 + {
10461 + "id": "bijouterielampron.com",
10462 + "name": "Bijouterie Lampron",
10463 + "url": "https://bijouterielampron.com",
10464 + "platform": "wordpress",
10465 + "catalog_endpoint": "",
10466 + "city": "",
10467 + "region": "",
10468 + "postal_prefix": null,
10469 + "phone": "819 472-5222",
10470 + "origin_class": "A",
10471 + "origin_confidence": 0.55,
10472 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10473 + "categories": [
10474 + "bijoux"
10475 + ],
10476 + "socials": [],
10477 + "discovery_sources": [
10478 + "search_sweep_bijoux"
10479 + ],
10480 + "discovery_source_urls": [
10481 + "bijouterie Drummondville boutique en ligne"
10482 + ],
10483 + "language": "fr",
10484 + "ecommerce": false,
10485 + "verification_date": "2026-08-12",
10486 + "status": "probable",
10487 + "enabled": false
10488 + },
10489 + {
10490 + "id": "bijouterielanglois.com",
10491 + "name": "Bijouterie Langlois",
10492 + "url": "https://bijouterielanglois.com",
10493 + "platform": "magento",
10494 + "catalog_endpoint": "",
10495 + "city": "",
10496 + "region": "",
10497 + "postal_prefix": "G1M",
10498 + "phone": "(418) 683-3145",
10499 + "origin_class": "A",
10500 + "origin_confidence": 0.55,
10501 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10502 + "categories": [
10503 + "bijoux"
10504 + ],
10505 + "socials": [],
10506 + "discovery_sources": [
10507 + "search_sweep_bijoux"
10508 + ],
10509 + "discovery_source_urls": [
10510 + "bagues de fiançailles créateur québécois boutique en ligne"
10511 + ],
10512 + "language": "fr",
10513 + "ecommerce": true,
10514 + "verification_date": "2026-08-12",
10515 + "status": "probable",
10516 + "enabled": false
10517 + },
10518 + {
10519 + "id": "bijouteriepenelope.com",
10520 + "name": "Bijouterie Pénélope",
10521 + "url": "https://www.bijouteriepenelope.com",
10522 + "platform": "lightspeed",
10523 + "catalog_endpoint": "",
10524 + "city": "",
10525 + "region": "",
10526 + "postal_prefix": "G1V",
10527 + "phone": "418-653-0945",
10528 + "origin_class": "A",
10529 + "origin_confidence": 0.55,
10530 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10531 + "categories": [
10532 + "bijoux"
10533 + ],
10534 + "socials": [
10535 + "facebook.com",
10536 + "instagram.com"
10537 + ],
10538 + "discovery_sources": [
10539 + "search_sweep_bijoux"
10540 + ],
10541 + "discovery_source_urls": [
10542 + "bijouterie Terrebonne boutique en ligne"
10543 + ],
10544 + "language": "en",
10545 + "ecommerce": true,
10546 + "verification_date": "2026-08-12",
10547 + "status": "probable",
10548 + "enabled": false
10549 + },
10550 + {
10551 + "id": "bijouterierussell.ca",
10552 + "name": "Bijouterie Russell",
10553 + "url": "https://www.bijouterierussell.ca",
10554 + "platform": "",
10555 + "catalog_endpoint": "",
10556 + "city": "",
10557 + "region": "Laval",
10558 + "postal_prefix": "H7G",
10559 + "phone": "514 388-1751",
10560 + "origin_class": "A",
10561 + "origin_confidence": 0.55,
10562 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10563 + "categories": [
10564 + "bijoux"
10565 + ],
10566 + "socials": [],
10567 + "discovery_sources": [
10568 + "search_sweep_bijoux"
10569 + ],
10570 + "discovery_source_urls": [
10571 + "bijouterie Laval boutique en ligne"
10572 + ],
10573 + "language": "fr",
10574 + "ecommerce": true,
10575 + "verification_date": "2026-08-12",
10576 + "status": "probable",
10577 + "enabled": false
10578 + },
10579 + {
10580 + "id": "bijouteriesergegagnon.com",
10581 + "name": "Bijouterie Serge Gagnon",
10582 + "url": "https://bijouteriesergegagnon.com",
10583 + "platform": "woocommerce",
10584 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
10585 + "city": "",
10586 + "region": "Capitale-Nationale",
10587 + "postal_prefix": "G1K",
10588 + "phone": "418 523 9637",
10589 + "origin_class": "A",
10590 + "origin_confidence": 0.55,
10591 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10592 + "categories": [
10593 + "bijoux"
10594 + ],
10595 + "socials": [],
10596 + "discovery_sources": [
10597 + "search_sweep_bijoux"
10598 + ],
10599 + "discovery_source_urls": [
10600 + "alliances joncs de mariage créateur québécois boutique en ligne"
10601 + ],
10602 + "language": "en",
10603 + "ecommerce": true,
10604 + "verification_date": "2026-08-12",
10605 + "status": "probable",
10606 + "enabled": true
10607 + },
10608 + {
10609 + "id": "bijouteriesimard.ca",
10610 + "name": "Bijouterie Simard",
10611 + "url": "https://bijouteriesimard.ca",
10612 + "platform": "",
10613 + "catalog_endpoint": "",
10614 + "city": "",
10615 + "region": "Saguenay–Lac-Saint-Jean",
10616 + "postal_prefix": null,
10617 + "phone": "418-548-4092",
10618 + "origin_class": "A",
10619 + "origin_confidence": 0.55,
10620 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10621 + "categories": [
10622 + "bijoux"
10623 + ],
10624 + "socials": [],
10625 + "discovery_sources": [
10626 + "search_sweep_bijoux"
10627 + ],
10628 + "discovery_source_urls": [
10629 + "créateur bijoux Saguenay Chicoutimi boutique en ligne"
10630 + ],
10631 + "language": "fr",
10632 + "ecommerce": true,
10633 + "verification_date": "2026-08-12",
10634 + "status": "probable",
10635 + "enabled": false
10636 + },
10637 + {
10638 + "id": "bijouteriestjean.com",
10639 + "name": "Joaillerie St-Jean",
10640 + "url": "https://bijouteriestjean.com",
10641 + "platform": "shopify",
10642 + "catalog_endpoint": "/products.json",
10643 + "city": "",
10644 + "region": "Montréal",
10645 + "postal_prefix": "H2X",
10646 + "phone": "514-288-6561",
10647 + "origin_class": "A",
10648 + "origin_confidence": 0.55,
10649 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10650 + "categories": [
10651 + "bijoux"
10652 + ],
10653 + "socials": [],
10654 + "discovery_sources": [
10655 + "search_sweep_bijoux"
10656 + ],
10657 + "discovery_source_urls": [
10658 + "bijouterie Longueuil boutique en ligne"
10659 + ],
10660 + "language": "en",
10661 + "ecommerce": true,
10662 + "verification_date": "2026-08-12",
10663 + "status": "probable",
10664 + "enabled": true
10665 + },
10666 + {
10667 + "id": "bijouterieveronneau.com",
10668 + "name": "Bijouterie Véronneau",
10669 + "url": "https://www.bijouterieveronneau.com",
10670 + "platform": "shopify",
10671 + "catalog_endpoint": "/products.json",
10672 + "city": "",
10673 + "region": "",
10674 + "postal_prefix": "J4H",
10675 + "phone": "450-670-6760",
10676 + "origin_class": "A",
10677 + "origin_confidence": 0.55,
10678 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10679 + "categories": [
10680 + "bijoux"
10681 + ],
10682 + "socials": [
10683 + "facebook.com",
10684 + "instagram.com"
10685 + ],
10686 + "discovery_sources": [
10687 + "search_sweep_bijoux"
10688 + ],
10689 + "discovery_source_urls": [
10690 + "bijouterie Longueuil boutique en ligne"
10691 + ],
10692 + "language": "en",
10693 + "ecommerce": true,
10694 + "verification_date": "2026-08-12",
10695 + "status": "probable",
10696 + "enabled": true
10697 + },
9782 10698 {
9783 10699 "id": "bijouxgli.com",
9784 10700 "name": "CRÉATIONS GLi - CMAQ",
@@ -9792,7 +10708,9 @@
9792 10708 "origin_class": "A",
9793 10709 "origin_confidence": 0.6,
9794 10710 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
9795 − "categories": [],
10711 + "categories": [
10712 + "art"
10713 + ],
9796 10714 "socials": [
9797 10715 "https://www.facebook.com/lesproduitsduqc",
9798 10716 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -9800,10 +10718,12 @@
9800 10718 "https://www.instagram.com/lesproduitsduqc/"
9801 10719 ],
9802 10720 "discovery_sources": [
9803 − "lesproduitsduquebec_ent"
10721 + "lesproduitsduquebec_ent",
10722 + "search_sweep_cmaq"
9804 10723 ],
9805 10724 "discovery_source_urls": [
9806 − "https://lesproduitsduquebec.com/entreprises-adherentes/creations-gli-cmaq"
10725 + "https://lesproduitsduquebec.com/entreprises-adherentes/creations-gli-cmaq",
10726 + "CRÉATIONS GLi Isabelle Gervais joaillier québec"
9807 10727 ],
9808 10728 "language": "fr",
9809 10729 "ecommerce": true,
@@ -9811,6 +10731,72 @@
9811 10731 "status": "probable",
9812 10732 "enabled": true
9813 10733 },
10734 + {
10735 + "id": "bijouxmedusa.com",
10736 + "name": "Bijoux Medusa",
10737 + "url": "https://www.bijouxmedusa.com",
10738 + "platform": "shopify",
10739 + "catalog_endpoint": "/products.json",
10740 + "city": "",
10741 + "region": "Saguenay–Lac-Saint-Jean",
10742 + "postal_prefix": "G2K",
10743 + "phone": "418-437-2345",
10744 + "origin_class": "A",
10745 + "origin_confidence": 0.55,
10746 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
10747 + "categories": [
10748 + "bijoux"
10749 + ],
10750 + "socials": [
10751 + "facebook.com",
10752 + "instagram.com"
10753 + ],
10754 + "discovery_sources": [
10755 + "manual_additions",
10756 + "search_sweep_bijoux"
10757 + ],
10758 + "discovery_source_urls": [
10759 + "ajout manuel",
10760 + "créateur bijoux Saguenay Chicoutimi boutique en ligne"
10761 + ],
10762 + "language": "en",
10763 + "ecommerce": true,
10764 + "verification_date": "2026-08-12",
10765 + "status": "probable",
10766 + "enabled": true
10767 + },
10768 + {
10769 + "id": "bijouxmousseline.com",
10770 + "name": "Mousseline",
10771 + "url": "https://www.bijouxmousseline.com",
10772 + "platform": "wix",
10773 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
10774 + "city": "",
10775 + "region": "Estrie",
10776 + "postal_prefix": "J0B",
10777 + "phone": "8192389450",
10778 + "origin_class": "A",
10779 + "origin_confidence": 0.6,
10780 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise",
10781 + "categories": [
10782 + "bijoux"
10783 + ],
10784 + "socials": [
10785 + "instagram.com",
10786 + "facebook.com"
10787 + ],
10788 + "discovery_sources": [
10789 + "search_sweep_bijoux"
10790 + ],
10791 + "discovery_source_urls": [
10792 + "bijoux résine faits au Québec boutique en ligne"
10793 + ],
10794 + "language": "en",
10795 + "ecommerce": true,
10796 + "verification_date": "2026-08-12",
10797 + "status": "verified",
10798 + "enabled": true
10799 + },
9814 10800 {
9815 10801 "id": "bijouxosmose.ca",
9816 10802 "name": "Sonia Ferland",
@@ -10683,6 +11669,38 @@
10683 11669 "status": "verified",
10684 11670 "enabled": true
10685 11671 },
11672 + {
11673 + "id": "bleucommeleciel.com",
11674 + "name": "Bleu Comme Le Ciel",
11675 + "url": "https://bleucommeleciel.com",
11676 + "platform": "shopify",
11677 + "catalog_endpoint": "/products.json",
11678 + "city": "",
11679 + "region": "",
11680 + "postal_prefix": "H3A",
11681 + "phone": "514-847-1128",
11682 + "origin_class": "A",
11683 + "origin_confidence": 0.55,
11684 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
11685 + "categories": [
11686 + "bijoux"
11687 + ],
11688 + "socials": [
11689 + "instagram.com",
11690 + "facebook.com"
11691 + ],
11692 + "discovery_sources": [
11693 + "search_sweep_bijoux"
11694 + ],
11695 + "discovery_source_urls": [
11696 + "Clio Blue bijoux Québec boutique"
11697 + ],
11698 + "language": "en",
11699 + "ecommerce": true,
11700 + "verification_date": "2026-08-12",
11701 + "status": "probable",
11702 + "enabled": true
11703 + },
10686 11704 {
10687 11705 "id": "bleuetbon.com",
10688 11706 "name": "Bleu & Bon",
@@ -11327,6 +12345,37 @@
11327 12345 "status": "probable",
11328 12346 "enabled": false
11329 12347 },
12348 + {
12349 + "id": "boisbelleau.ca",
12350 + "name": "BoisBelleau",
12351 + "url": "https://boisbelleau.ca",
12352 + "platform": "wordpress",
12353 + "catalog_endpoint": "",
12354 + "city": "",
12355 + "region": "",
12356 + "postal_prefix": null,
12357 + "phone": null,
12358 + "origin_class": "A",
12359 + "origin_confidence": 0.6,
12360 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
12361 + "categories": [
12362 + "art"
12363 + ],
12364 + "socials": [
12365 + "facebook.com"
12366 + ],
12367 + "discovery_sources": [
12368 + "search_sweep_cmaq"
12369 + ],
12370 + "discovery_source_urls": [
12371 + "BoisBelleau Denis Belleau ébéniste québec"
12372 + ],
12373 + "language": null,
12374 + "ecommerce": false,
12375 + "verification_date": "2026-08-12",
12376 + "status": "probable",
12377 + "enabled": false
12378 + },
11330 12379 {
11331 12380 "id": "boisdestcyr.com",
11332 12381 "name": "Bois de St-Cyr",
@@ -13537,6 +14586,35 @@
13537 14586 "status": "probable",
13538 14587 "enabled": true
13539 14588 },
14589 + {
14590 + "id": "boutique.marie-evebordeleau.com",
14591 + "name": "Marie-Eve Bordeleau, Sculptures prêtes à porter",
14592 + "url": "https://boutique.marie-evebordeleau.com",
14593 + "platform": "shopify",
14594 + "catalog_endpoint": "/products.json",
14595 + "city": "",
14596 + "region": "",
14597 + "postal_prefix": null,
14598 + "phone": "(819) 690-6218",
14599 + "origin_class": "A",
14600 + "origin_confidence": 0.6,
14601 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise",
14602 + "categories": [
14603 + "bijoux"
14604 + ],
14605 + "socials": [],
14606 + "discovery_sources": [
14607 + "search_sweep_bijoux"
14608 + ],
14609 + "discovery_source_urls": [
14610 + "bijoux faits main Québec boutique en ligne artisan"
14611 + ],
14612 + "language": "fr",
14613 + "ecommerce": true,
14614 + "verification_date": "2026-08-12",
14615 + "status": "verified",
14616 + "enabled": true
14617 + },
13540 14618 {
13541 14619 "id": "boutique.microdulac.com",
13542 14620 "name": "Microbrasserie du Lac Saint-Jean (Micro du Lac)",
@@ -17780,7 +18858,9 @@
17780 18858 "origin_class": "A",
17781 18859 "origin_confidence": 0.9,
17782 18860 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; le site affiche une mention de fabrication québécoise",
17783 − "categories": [],
18861 + "categories": [
18862 + "art"
18863 + ],
17784 18864 "socials": [
17785 18865 "https://www.facebook.com/lesproduitsduqc",
17786 18866 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -17789,11 +18869,15 @@
17789 18869 ],
17790 18870 "discovery_sources": [
17791 18871 "lesproduitsduquebec_ent",
18872 + "search_sweep_bijoux",
18873 + "search_sweep_cmaq",
17792 18874 "search_sweep_nonfood",
17793 18875 "search_sweep_urban"
17794 18876 ],
17795 18877 "discovery_source_urls": [
17796 18878 "https://lesproduitsduquebec.com/entreprises-adherentes/camillette-cmaq",
18879 + "bijoux argent sterling Québec créateur boutique en ligne",
18880 + "Camillette Bijoux Camille Ouellette joaillier québec",
17797 18881 "bijoux accessoires Montérégie fait main boutique en ligne",
17798 18882 "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"
17799 18883 ],
@@ -18794,6 +19878,38 @@
18794 19878 "status": "verified",
18795 19879 "enabled": false
18796 19880 },
19881 + {
19882 + "id": "captiveatelier.com",
19883 + "name": "Captive Atelier",
19884 + "url": "https://captiveatelier.com",
19885 + "platform": "snipcart",
19886 + "catalog_endpoint": "",
19887 + "city": "",
19888 + "region": "",
19889 + "postal_prefix": "H1V",
19890 + "phone": null,
19891 + "origin_class": "A",
19892 + "origin_confidence": 0.9,
19893 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
19894 + "categories": [
19895 + "art"
19896 + ],
19897 + "socials": [
19898 + "instagram.com",
19899 + "facebook.com"
19900 + ],
19901 + "discovery_sources": [
19902 + "search_sweep_cmaq"
19903 + ],
19904 + "discovery_source_urls": [
19905 + "Captive Atelier Jade Boutilier joaillier québec"
19906 + ],
19907 + "language": "en",
19908 + "ecommerce": false,
19909 + "verification_date": "2026-08-12",
19910 + "status": "verified",
19911 + "enabled": false
19912 + },
18797 19913 {
18798 19914 "id": "caramelsfaa.com",
18799 19915 "name": "CARAMELS F.A.A.",
@@ -18968,16 +20084,20 @@
18968 20084 "origin_class": "A",
18969 20085 "origin_confidence": 0.5,
18970 20086 "origin_evidence": "Trouvé par balayage de recherche ciblé (fabricant/artisan QC)",
18971 − "categories": [],
20087 + "categories": [
20088 + "bijoux"
20089 + ],
18972 20090 "socials": [
18973 20091 "facebook.com",
18974 20092 "instagram.com"
18975 20093 ],
18976 20094 "discovery_sources": [
20095 + "search_sweep_bijoux",
18977 20096 "search_sweep_nonfood",
18978 20097 "search_sweep_urban"
18979 20098 ],
18980 20099 "discovery_source_urls": [
20100 + "joaillerie québécoise boutique en ligne créateur",
18981 20101 "bijoux faits main Québec boutique en ligne",
18982 20102 "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"
18983 20103 ],
@@ -21758,6 +22878,35 @@
21758 22878 "status": "verified",
21759 22879 "enabled": true
21760 22880 },
22881 + {
22882 + "id": "chikiboom.com",
22883 + "name": "Chikiboom",
22884 + "url": "http://chikiboom.com",
22885 + "platform": "",
22886 + "catalog_endpoint": "",
22887 + "city": "",
22888 + "region": "",
22889 + "postal_prefix": null,
22890 + "phone": null,
22891 + "origin_class": "A",
22892 + "origin_confidence": 0.6,
22893 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
22894 + "categories": [
22895 + "art"
22896 + ],
22897 + "socials": [],
22898 + "discovery_sources": [
22899 + "search_sweep_cmaq"
22900 + ],
22901 + "discovery_source_urls": [
22902 + "Chikiboom Felix Marcuzzo maroquinier québec"
22903 + ],
22904 + "language": null,
22905 + "ecommerce": false,
22906 + "verification_date": "2026-08-12",
22907 + "status": "probable",
22908 + "enabled": false
22909 + },
21761 22910 {
21762 22911 "id": "chlorophylle.com",
21763 22912 "name": "Chlorophylle Inc",
@@ -22278,15 +23427,19 @@
22278 23427 "origin_class": "A",
22279 23428 "origin_confidence": 0.75,
22280 23429 "origin_evidence": "Marque québécoise vendue par Signé Local ou Boutique Métiers d'art — site officiel résolu ; le site affiche une mention de fabrication québécoise",
22281 − "categories": [],
23430 + "categories": [
23431 + "bijoux"
23432 + ],
22282 23433 "socials": [
22283 23434 "facebook.com"
22284 23435 ],
22285 23436 "discovery_sources": [
23437 + "search_sweep_bijoux",
22286 23438 "search_sweep_urban",
22287 23439 "search_sweep_vendors"
22288 23440 ],
22289 23441 "discovery_source_urls": [
23442 + "créateur bijoux Gatineau boutique en ligne",
22290 23443 "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur",
22291 23444 "\"Christophe Poly\" bijoux laiton bague Québec"
22292 23445 ],
@@ -23889,6 +25042,35 @@
23889 25042 "status": "verified",
23890 25043 "enabled": false
23891 25044 },
25045 + {
25046 + "id": "collections.bleuetdart.com",
25047 + "name": "Bleuet d'Art",
25048 + "url": "https://collections.bleuetdart.com",
25049 + "platform": "",
25050 + "catalog_endpoint": "",
25051 + "city": "",
25052 + "region": "",
25053 + "postal_prefix": null,
25054 + "phone": null,
25055 + "origin_class": "A",
25056 + "origin_confidence": 0.6,
25057 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
25058 + "categories": [
25059 + "art"
25060 + ],
25061 + "socials": [],
25062 + "discovery_sources": [
25063 + "search_sweep_cmaq"
25064 + ],
25065 + "discovery_source_urls": [
25066 + "Bleuet d'Art Nancie Munger joaillier québec"
25067 + ],
25068 + "language": null,
25069 + "ecommerce": false,
25070 + "verification_date": "2026-08-12",
25071 + "status": "probable",
25072 + "enabled": false
25073 + },
23892 25074 {
23893 25075 "id": "collineauxbleuets.com",
23894 25076 "name": "Créateurs",
@@ -24390,6 +25572,38 @@
24390 25572 "status": "verified",
24391 25573 "enabled": true
24392 25574 },
25575 + {
25576 + "id": "cone10.ca",
25577 + "name": "Atelier Cône10",
25578 + "url": "https://cone10.ca",
25579 + "platform": "squarespace",
25580 + "catalog_endpoint": "",
25581 + "city": "",
25582 + "region": "",
25583 + "postal_prefix": "H2W",
25584 + "phone": "5142593699",
25585 + "origin_class": "A",
25586 + "origin_confidence": 0.85,
25587 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
25588 + "categories": [
25589 + "art"
25590 + ],
25591 + "socials": [
25592 + "facebook.com",
25593 + "instagram.com"
25594 + ],
25595 + "discovery_sources": [
25596 + "search_sweep_cmaq"
25597 + ],
25598 + "discovery_source_urls": [
25599 + "Atelier Cône10 Mario Ruy Hernandez Vega céramiste québec"
25600 + ],
25601 + "language": "en",
25602 + "ecommerce": true,
25603 + "verification_date": "2026-08-12",
25604 + "status": "verified",
25605 + "enabled": false
25606 + },
24393 25607 {
24394 25608 "id": "confettimill.com",
24395 25609 "name": "Confetti Mill",
@@ -25844,6 +27058,37 @@
25844 27058 "status": "probable",
25845 27059 "enabled": true
25846 27060 },
27061 + {
27062 + "id": "couteauxdeva.com",
27063 + "name": "Couteaux Deva",
27064 + "url": "https://couteauxdeva.com",
27065 + "platform": "woocommerce",
27066 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
27067 + "city": "",
27068 + "region": "",
27069 + "postal_prefix": null,
27070 + "phone": null,
27071 + "origin_class": "A",
27072 + "origin_confidence": 0.85,
27073 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
27074 + "categories": [
27075 + "art"
27076 + ],
27077 + "socials": [
27078 + "facebook.com"
27079 + ],
27080 + "discovery_sources": [
27081 + "search_sweep_cmaq"
27082 + ],
27083 + "discovery_source_urls": [
27084 + "Couteaux Deva Dave Fortin coutelier québec"
27085 + ],
27086 + "language": "fr",
27087 + "ecommerce": true,
27088 + "verification_date": "2026-08-12",
27089 + "status": "verified",
27090 + "enabled": true
27091 + },
25847 27092 {
25848 27093 "id": "couteauxkaizenknives.com",
25849 27094 "name": "Couteaux Kaizen Knives - CMAQ",
@@ -26245,6 +27490,37 @@
26245 27490 "status": "probable",
26246 27491 "enabled": false
26247 27492 },
27493 + {
27494 + "id": "crea-pierre.com",
27495 + "name": "Créa-Pierre",
27496 + "url": "https://crea-pierre.com",
27497 + "platform": "wordpress",
27498 + "catalog_endpoint": "",
27499 + "city": "",
27500 + "region": "",
27501 + "postal_prefix": null,
27502 + "phone": "514-779-2042",
27503 + "origin_class": "A",
27504 + "origin_confidence": 0.85,
27505 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
27506 + "categories": [
27507 + "art"
27508 + ],
27509 + "socials": [
27510 + "facebook.com"
27511 + ],
27512 + "discovery_sources": [
27513 + "search_sweep_cmaq"
27514 + ],
27515 + "discovery_source_urls": [
27516 + "Créa-Pierre Alexandre Maquet tailleur de pierre québec"
27517 + ],
27518 + "language": "fr",
27519 + "ecommerce": false,
27520 + "verification_date": "2026-08-12",
27521 + "status": "verified",
27522 + "enabled": false
27523 + },
26248 27524 {
26249 27525 "id": "createursdesaveursetcie.com",
26250 27526 "name": "Miel Morand",
@@ -26347,6 +27623,38 @@
26347 27623 "status": "probable",
26348 27624 "enabled": false
26349 27625 },
27626 + {
27627 + "id": "creationslalouve.com",
27628 + "name": "Créations La Louve",
27629 + "url": "https://creationslalouve.com",
27630 + "platform": "shopify",
27631 + "catalog_endpoint": "/products.json",
27632 + "city": "",
27633 + "region": "",
27634 + "postal_prefix": null,
27635 + "phone": null,
27636 + "origin_class": "A",
27637 + "origin_confidence": 0.35,
27638 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
27639 + "categories": [
27640 + "bijoux"
27641 + ],
27642 + "socials": [
27643 + "facebook.com",
27644 + "instagram.com"
27645 + ],
27646 + "discovery_sources": [
27647 + "search_sweep_bijoux"
27648 + ],
27649 + "discovery_source_urls": [
27650 + "bijoux autochtones perlage Québec boutique en ligne"
27651 + ],
27652 + "language": "en",
27653 + "ecommerce": true,
27654 + "verification_date": "2026-08-12",
27655 + "status": "probable",
27656 + "enabled": true
27657 + },
26350 27658 {
26351 27659 "id": "creationsmoutonnoir.com",
26352 27660 "name": "La Petite Ferme du Mouton Noir",
@@ -28858,18 +30166,22 @@
28858 30166 "postal_prefix": null,
28859 30167 "phone": null,
28860 30168 "origin_class": "A",
28861 − "origin_confidence": 0.3,
28862 − "origin_evidence": "Entreprise québécoise répertoriée par Idée Cadeau Québec ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
28863 − "categories": [],
30169 + "origin_confidence": 0.6,
30170 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
30171 + "categories": [
30172 + "art"
30173 + ],
28864 30174 "socials": [
28865 30175 "facebook.com",
28866 30176 "instagram.com"
28867 30177 ],
28868 30178 "discovery_sources": [
28869 − "icq_resolved"
30179 + "icq_resolved",
30180 + "search_sweep_cmaq"
28870 30181 ],
28871 30182 "discovery_source_urls": [
28872 − "https://www.ideecadeauquebec.com/boutique/desenfantillages/"
30183 + "https://www.ideecadeauquebec.com/boutique/desenfantillages/",
30184 + "Shed espace créatif Geneviève Lugaz québec"
28873 30185 ],
28874 30186 "language": null,
28875 30187 "ecommerce": true,
@@ -28877,6 +30189,38 @@
28877 30189 "status": "probable",
28878 30190 "enabled": true
28879 30191 },
30192 + {
30193 + "id": "designgama.com",
30194 + "name": "Créations GAMA",
30195 + "url": "https://www.designgama.com",
30196 + "platform": "wix",
30197 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
30198 + "city": "",
30199 + "region": "",
30200 + "postal_prefix": "H1A",
30201 + "phone": "(514) 843-3045",
30202 + "origin_class": "A",
30203 + "origin_confidence": 0.85,
30204 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
30205 + "categories": [
30206 + "art"
30207 + ],
30208 + "socials": [
30209 + "facebook.com",
30210 + "instagram.com"
30211 + ],
30212 + "discovery_sources": [
30213 + "search_sweep_cmaq"
30214 + ],
30215 + "discovery_source_urls": [
30216 + "Créations GAMA Gabrielle Mailhot-Côté couturier québec"
30217 + ],
30218 + "language": "fr",
30219 + "ecommerce": true,
30220 + "verification_date": "2026-08-12",
30221 + "status": "verified",
30222 + "enabled": true
30223 + },
28880 30224 {
28881 30225 "id": "desloups.ca",
28882 30226 "name": "Desloups - CMAQ",
@@ -29042,6 +30386,35 @@
29042 30386 "status": "verified",
29043 30387 "enabled": false
29044 30388 },
30389 + {
30390 + "id": "devidrio.ca",
30391 + "name": "Devidrio",
30392 + "url": "https://www.devidrio.ca",
30393 + "platform": "",
30394 + "catalog_endpoint": "",
30395 + "city": "",
30396 + "region": "",
30397 + "postal_prefix": null,
30398 + "phone": "819 373-3773",
30399 + "origin_class": "A",
30400 + "origin_confidence": 0.85,
30401 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
30402 + "categories": [
30403 + "art"
30404 + ],
30405 + "socials": [],
30406 + "discovery_sources": [
30407 + "search_sweep_cmaq"
30408 + ],
30409 + "discovery_source_urls": [
30410 + "Devidrio Guillermo Raynié artiste verrier québec"
30411 + ],
30412 + "language": "fr",
30413 + "ecommerce": false,
30414 + "verification_date": "2026-08-12",
30415 + "status": "verified",
30416 + "enabled": false
30417 + },
29045 30418 {
29046 30419 "id": "devinci.com",
29047 30420 "name": "Cycles Devinci",
@@ -31609,7 +32982,9 @@
31609 32982 "origin_class": "A",
31610 32983 "origin_confidence": 0.9,
31611 32984 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; le site affiche une mention de fabrication québécoise",
31612 − "categories": [],
32985 + "categories": [
32986 + "bijoux"
32987 + ],
31613 32988 "socials": [
31614 32989 "https://www.facebook.com/lesproduitsduqc",
31615 32990 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -31617,10 +32992,12 @@
31617 32992 "https://www.instagram.com/lesproduitsduqc/"
31618 32993 ],
31619 32994 "discovery_sources": [
31620 − "lesproduitsduquebec_ent"
32995 + "lesproduitsduquebec_ent",
32996 + "search_sweep_bijoux"
31621 32997 ],
31622 32998 "discovery_source_urls": [
31623 − "https://lesproduitsduquebec.com/entreprises-adherentes/dominic-dufour-joaillier-cmaq"
32999 + "https://lesproduitsduquebec.com/entreprises-adherentes/dominic-dufour-joaillier-cmaq",
33000 + "joaillerie québécoise boutique en ligne créateur"
31624 33001 ],
31625 33002 "language": null,
31626 33003 "ecommerce": true,
@@ -31659,6 +33036,35 @@
31659 33036 "status": "probable",
31660 33037 "enabled": false
31661 33038 },
33039 + {
33040 + "id": "donjjewellery.com",
33041 + "name": "Donj Jewellery",
33042 + "url": "https://donjjewellery.com",
33043 + "platform": "woocommerce",
33044 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
33045 + "city": "",
33046 + "region": "Laval",
33047 + "postal_prefix": "H7V",
33048 + "phone": "(450) 231-0641",
33049 + "origin_class": "A",
33050 + "origin_confidence": 0.55,
33051 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
33052 + "categories": [
33053 + "bijoux"
33054 + ],
33055 + "socials": [],
33056 + "discovery_sources": [
33057 + "search_sweep_bijoux"
33058 + ],
33059 + "discovery_source_urls": [
33060 + "créateur bijoux Sherbrooke boutique en ligne"
33061 + ],
33062 + "language": "en",
33063 + "ecommerce": true,
33064 + "verification_date": "2026-08-12",
33065 + "status": "probable",
33066 + "enabled": true
33067 + },
31662 33068 {
31663 33069 "id": "doranola.com",
31664 33070 "name": "Dora Nola",
@@ -31753,6 +33159,38 @@
31753 33159 "status": "probable",
31754 33160 "enabled": true
31755 33161 },
33162 + {
33163 + "id": "doucetlatendresse.com",
33164 + "name": "Doucet Latendresse",
33165 + "url": "https://www.doucetlatendresse.com",
33166 + "platform": "",
33167 + "catalog_endpoint": "",
33168 + "city": "",
33169 + "region": "Montérégie",
33170 + "postal_prefix": "J0H",
33171 + "phone": null,
33172 + "origin_class": "A",
33173 + "origin_confidence": 0.55,
33174 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
33175 + "categories": [
33176 + "bijoux"
33177 + ],
33178 + "socials": [
33179 + "instagram.com",
33180 + "facebook.com"
33181 + ],
33182 + "discovery_sources": [
33183 + "search_sweep_bijoux"
33184 + ],
33185 + "discovery_source_urls": [
33186 + "créateur bijoux Gatineau boutique en ligne"
33187 + ],
33188 + "language": "fr",
33189 + "ecommerce": true,
33190 + "verification_date": "2026-08-12",
33191 + "status": "probable",
33192 + "enabled": false
33193 + },
31756 33194 {
31757 33195 "id": "douceurdici.ca",
31758 33196 "name": "Érablière Douceur d’ici",
@@ -31955,6 +33393,38 @@
31955 33393 "status": "verified",
31956 33394 "enabled": false
31957 33395 },
33396 + {
33397 + "id": "duchanvre.com",
33398 + "name": "DuChanvre",
33399 + "url": "https://duchanvre.com",
33400 + "platform": "woocommerce",
33401 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
33402 + "city": "",
33403 + "region": "",
33404 + "postal_prefix": null,
33405 + "phone": "819 640-2511",
33406 + "origin_class": "A",
33407 + "origin_confidence": 0.9,
33408 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
33409 + "categories": [
33410 + "art"
33411 + ],
33412 + "socials": [
33413 + "facebook.com",
33414 + "instagram.com"
33415 + ],
33416 + "discovery_sources": [
33417 + "search_sweep_cmaq"
33418 + ],
33419 + "discovery_source_urls": [
33420 + "DuChanvre Anthony Néron peintre décorateur québec"
33421 + ],
33422 + "language": "fr",
33423 + "ecommerce": true,
33424 + "verification_date": "2026-08-12",
33425 + "status": "probable",
33426 + "enabled": true
33427 + },
31958 33428 {
31959 33429 "id": "ducsdemontrichard.com",
31960 33430 "name": "Ducs De Montrichard",
@@ -32488,6 +33958,40 @@
32488 33958 "status": "probable",
32489 33959 "enabled": false
32490 33960 },
33961 + {
33962 + "id": "ecksand.com",
33963 + "name": "Ecksand",
33964 + "url": "https://ecksand.com",
33965 + "platform": "shopify",
33966 + "catalog_endpoint": "/products.json",
33967 + "city": "",
33968 + "region": "",
33969 + "postal_prefix": "H3B",
33970 + "phone": null,
33971 + "origin_class": "A",
33972 + "origin_confidence": 0.85,
33973 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
33974 + "categories": [
33975 + "art"
33976 + ],
33977 + "socials": [
33978 + "instagram.com",
33979 + "facebook.com"
33980 + ],
33981 + "discovery_sources": [
33982 + "search_sweep_bijoux",
33983 + "search_sweep_cmaq"
33984 + ],
33985 + "discovery_source_urls": [
33986 + "bijouterie Brossard boutique en ligne",
33987 + "Ecksand Jewels Yoan Gehant-Vidoni joaillier québec"
33988 + ],
33989 + "language": "en",
33990 + "ecommerce": true,
33991 + "verification_date": "2026-08-12",
33992 + "status": "verified",
33993 + "enabled": true
33994 + },
32491 33995 {
32492 33996 "id": "ecoboeuf.com",
32493 33997 "name": "Écoboeuf",
@@ -41201,15 +42705,19 @@
41201 42705 "origin_class": "A",
41202 42706 "origin_confidence": 0.5,
41203 42707 "origin_evidence": "Trouvé par balayage de recherche ciblé (fabricant/artisan QC)",
41204 − "categories": [],
42708 + "categories": [
42709 + "bijoux"
42710 + ],
41205 42711 "socials": [
41206 42712 "facebook.com",
41207 42713 "instagram.com"
41208 42714 ],
41209 42715 "discovery_sources": [
42716 + "search_sweep_bijoux",
41210 42717 "search_sweep_nonfood"
41211 42718 ],
41212 42719 "discovery_source_urls": [
42720 + "joaillerie québécoise boutique en ligne créateur",
41213 42721 "bijoux faits main Québec boutique en ligne"
41214 42722 ],
41215 42723 "language": null,
@@ -41331,7 +42839,9 @@
41331 42839 "origin_class": "A",
41332 42840 "origin_confidence": 0.6,
41333 42841 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
41334 − "categories": [],
42842 + "categories": [
42843 + "art"
42844 + ],
41335 42845 "socials": [
41336 42846 "https://www.facebook.com/lesproduitsduqc",
41337 42847 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -41339,10 +42849,12 @@
41339 42849 "https://www.instagram.com/lesproduitsduqc/"
41340 42850 ],
41341 42851 "discovery_sources": [
41342 − "lesproduitsduquebec_ent"
42852 + "lesproduitsduquebec_ent",
42853 + "search_sweep_cmaq"
41343 42854 ],
41344 42855 "discovery_source_urls": [
41345 − "https://lesproduitsduquebec.com/entreprises-adherentes/flesch-cmaq"
42856 + "https://lesproduitsduquebec.com/entreprises-adherentes/flesch-cmaq",
42857 + "Flesch Esther Chabot joaillier québec"
41346 42858 ],
41347 42859 "language": null,
41348 42860 "ecommerce": true,
@@ -41690,7 +43202,7 @@
41690 43202 },
41691 43203 {
41692 43204 "id": "forgeilmarinen.com",
41693 − "name": "La Forge d'Ilmarinen",
43205 + "name": "La Forge d'Ilmarinen inc.",
41694 43206 "url": "https://www.forgeilmarinen.com",
41695 43207 "platform": "",
41696 43208 "catalog_endpoint": "",
@@ -41699,25 +43211,27 @@
41699 43211 "postal_prefix": "J0B",
41700 43212 "phone": "819-560-1818",
41701 43213 "origin_class": "A",
41702 − "origin_confidence": 0.5,
41703 − "origin_evidence": "Manufacturier québécois trouvé par balayage manufacturier ciblé",
43214 + "origin_confidence": 0.85,
43215 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
41704 43216 "categories": [
41705 − "industriel"
43217 + "art"
41706 43218 ],
41707 43219 "socials": [
41708 43220 "facebook.com",
41709 43221 "instagram.com"
41710 43222 ],
41711 43223 "discovery_sources": [
43224 + "search_sweep_cmaq",
41712 43225 "search_sweep_manuf"
41713 43226 ],
41714 43227 "discovery_source_urls": [
43228 + "La Forge d'Ilmarinen Romain Francès ferronnier d'art québec",
41715 43229 "forge artisanale québécoise boutique en ligne ferronnerie d'art"
41716 43230 ],
41717 43231 "language": "fr",
41718 43232 "ecommerce": false,
41719 43233 "verification_date": "2026-08-12",
41720 − "status": "probable",
43234 + "status": "verified",
41721 43235 "enabled": false
41722 43236 },
41723 43237 {
@@ -45515,6 +47029,35 @@
45515 47029 "status": "probable",
45516 47030 "enabled": false
45517 47031 },
47032 + {
47033 + "id": "gemmesquebec.com",
47034 + "name": "Gemmes Québec",
47035 + "url": "https://www.gemmesquebec.com",
47036 + "platform": "",
47037 + "catalog_endpoint": "",
47038 + "city": "",
47039 + "region": "Capitale-Nationale",
47040 + "postal_prefix": "G1R",
47041 + "phone": "(418) 692-2109",
47042 + "origin_class": "A",
47043 + "origin_confidence": 0.55,
47044 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
47045 + "categories": [
47046 + "bijoux"
47047 + ],
47048 + "socials": [],
47049 + "discovery_sources": [
47050 + "search_sweep_bijoux"
47051 + ],
47052 + "discovery_source_urls": [
47053 + "bijoux pierres minéraux Québec créateur boutique en ligne"
47054 + ],
47055 + "language": "fr",
47056 + "ecommerce": false,
47057 + "verification_date": "2026-08-12",
47058 + "status": "probable",
47059 + "enabled": false
47060 + },
45518 47061 {
45519 47062 "id": "gen-v.com",
45520 47063 "name": "Cultures Gen V inc.",
@@ -46879,6 +48422,35 @@
46879 48422 "status": "verified",
46880 48423 "enabled": false
46881 48424 },
48425 + {
48426 + "id": "grangerfabco.com",
48427 + "name": "Granger Fab. Co.",
48428 + "url": "https://www.grangerfabco.com",
48429 + "platform": "wix",
48430 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
48431 + "city": "",
48432 + "region": "",
48433 + "postal_prefix": null,
48434 + "phone": null,
48435 + "origin_class": "A",
48436 + "origin_confidence": 0.6,
48437 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
48438 + "categories": [
48439 + "art"
48440 + ],
48441 + "socials": [],
48442 + "discovery_sources": [
48443 + "search_sweep_cmaq"
48444 + ],
48445 + "discovery_source_urls": [
48446 + "Granger Fab Julien Granger métallier d'art québec"
48447 + ],
48448 + "language": null,
48449 + "ecommerce": true,
48450 + "verification_date": "2026-08-12",
48451 + "status": "probable",
48452 + "enabled": true
48453 + },
46882 48454 {
46883 48455 "id": "grangesmaraicheres.com",
46884 48456 "name": "Granges maraîchères St-Antoine",
@@ -47812,6 +49384,37 @@
47812 49384 "status": "probable",
47813 49385 "enabled": false
47814 49386 },
49387 + {
49388 + "id": "gwenwyvaarartisane.com",
49389 + "name": "Gwenwyvaar Artisane Textile",
49390 + "url": "https://gwenwyvaarartisane.com",
49391 + "platform": "wordpress",
49392 + "catalog_endpoint": "",
49393 + "city": "",
49394 + "region": "Laurentides",
49395 + "postal_prefix": "J5J",
49396 + "phone": "4383951548",
49397 + "origin_class": "A",
49398 + "origin_confidence": 0.85,
49399 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
49400 + "categories": [
49401 + "art"
49402 + ],
49403 + "socials": [
49404 + "facebook.com"
49405 + ],
49406 + "discovery_sources": [
49407 + "search_sweep_cmaq"
49408 + ],
49409 + "discovery_source_urls": [
49410 + "Gwenwyvaar Maggie Lepine artisane textile fileur québec"
49411 + ],
49412 + "language": "fr",
49413 + "ecommerce": false,
49414 + "verification_date": "2026-08-12",
49415 + "status": "verified",
49416 + "enabled": false
49417 + },
47815 49418 {
47816 49419 "id": "habitudedesign.ca",
47817 49420 "name": "Habitude Design",
@@ -49256,6 +50859,38 @@
49256 50859 "status": "verified",
49257 50860 "enabled": true
49258 50861 },
50862 + {
50863 + "id": "horacejewelry.com",
50864 + "name": "Horace Jewelry",
50865 + "url": "https://horacejewelry.com",
50866 + "platform": "shopify",
50867 + "catalog_endpoint": "/products.json",
50868 + "city": "",
50869 + "region": "",
50870 + "postal_prefix": null,
50871 + "phone": null,
50872 + "origin_class": "A",
50873 + "origin_confidence": 0.55,
50874 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
50875 + "categories": [
50876 + "bijoux"
50877 + ],
50878 + "socials": [
50879 + "facebook.com",
50880 + "instagram.com"
50881 + ],
50882 + "discovery_sources": [
50883 + "search_sweep_bijoux"
50884 + ],
50885 + "discovery_source_urls": [
50886 + "créateur bijoux Sherbrooke boutique en ligne"
50887 + ],
50888 + "language": "en",
50889 + "ecommerce": true,
50890 + "verification_date": "2026-08-12",
50891 + "status": "probable",
50892 + "enabled": true
50893 + },
49259 50894 {
49260 50895 "id": "horizonsante.ca",
49261 50896 "name": "Horizon Santé",
@@ -49690,6 +51325,38 @@
49690 51325 "status": "verified",
49691 51326 "enabled": true
49692 51327 },
51328 + {
51329 + "id": "hoya-atelier.com",
51330 + "name": "Hoya",
51331 + "url": "https://www.hoya-atelier.com",
51332 + "platform": "squarespace",
51333 + "catalog_endpoint": "",
51334 + "city": "",
51335 + "region": "",
51336 + "postal_prefix": null,
51337 + "phone": null,
51338 + "origin_class": "A",
51339 + "origin_confidence": 0.6,
51340 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
51341 + "categories": [
51342 + "art"
51343 + ],
51344 + "socials": [
51345 + "facebook.com",
51346 + "instagram.com"
51347 + ],
51348 + "discovery_sources": [
51349 + "search_sweep_cmaq"
51350 + ],
51351 + "discovery_source_urls": [
51352 + "Hoya Alice Douet céramiste québec"
51353 + ],
51354 + "language": "en",
51355 + "ecommerce": true,
51356 + "verification_date": "2026-08-12",
51357 + "status": "probable",
51358 + "enabled": false
51359 + },
49693 51360 {
49694 51361 "id": "hugoandclay.com",
49695 51362 "name": "Hugo & Clay",
@@ -49981,6 +51648,35 @@
49981 51648 "status": "probable",
49982 51649 "enabled": false
49983 51650 },
51651 + {
51652 + "id": "icelainetricot.com",
51653 + "name": "Icelaine",
51654 + "url": "https://icelainetricot.com",
51655 + "platform": "",
51656 + "catalog_endpoint": "",
51657 + "city": "",
51658 + "region": "",
51659 + "postal_prefix": "G6V",
51660 + "phone": "418-304-3009",
51661 + "origin_class": "A",
51662 + "origin_confidence": 0.9,
51663 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
51664 + "categories": [
51665 + "art"
51666 + ],
51667 + "socials": [],
51668 + "discovery_sources": [
51669 + "search_sweep_cmaq"
51670 + ],
51671 + "discovery_source_urls": [
51672 + "Icelaine France Beaudoin tricoteur québec"
51673 + ],
51674 + "language": "fr",
51675 + "ecommerce": false,
51676 + "verification_date": "2026-08-12",
51677 + "status": "verified",
51678 + "enabled": false
51679 + },
49984 51680 {
49985 51681 "id": "ici-la.co",
49986 51682 "name": "Ici & Là - T-shirts et Souvenirs des régions - Acheter québécois",
@@ -50507,6 +52203,35 @@
50507 52203 "status": "verified",
50508 52204 "enabled": true
50509 52205 },
52206 + {
52207 + "id": "indi-gene.ca",
52208 + "name": "Indigène",
52209 + "url": "https://indi-gene.ca",
52210 + "platform": "wordpress",
52211 + "catalog_endpoint": "",
52212 + "city": "",
52213 + "region": "",
52214 + "postal_prefix": "G1L",
52215 + "phone": "418.554.4226",
52216 + "origin_class": "A",
52217 + "origin_confidence": 0.85,
52218 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
52219 + "categories": [
52220 + "art"
52221 + ],
52222 + "socials": [],
52223 + "discovery_sources": [
52224 + "search_sweep_cmaq"
52225 + ],
52226 + "discovery_source_urls": [
52227 + "Indigène Genevieve Gaboury ébéniste québec"
52228 + ],
52229 + "language": "en",
52230 + "ecommerce": false,
52231 + "verification_date": "2026-08-12",
52232 + "status": "verified",
52233 + "enabled": false
52234 + },
50510 52235 {
50511 52236 "id": "indigosuperfruit.com",
50512 52237 "name": "Indigo super fruit",
@@ -51006,6 +52731,35 @@
51006 52731 "status": "verified",
51007 52732 "enabled": true
51008 52733 },
52734 + {
52735 + "id": "isabelleferland.com",
52736 + "name": "Isabelle Ferland Bijoux en bois",
52737 + "url": "https://isabelleferland.com",
52738 + "platform": "shopify",
52739 + "catalog_endpoint": "/products.json",
52740 + "city": "",
52741 + "region": "",
52742 + "postal_prefix": null,
52743 + "phone": null,
52744 + "origin_class": "A",
52745 + "origin_confidence": 0.6,
52746 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise",
52747 + "categories": [
52748 + "bijoux"
52749 + ],
52750 + "socials": [],
52751 + "discovery_sources": [
52752 + "search_sweep_bijoux"
52753 + ],
52754 + "discovery_source_urls": [
52755 + "Cadran bijoux Québec créateur"
52756 + ],
52757 + "language": "en",
52758 + "ecommerce": true,
52759 + "verification_date": "2026-08-12",
52760 + "status": "verified",
52761 + "enabled": true
52762 + },
51009 52763 {
51010 52764 "id": "isabellehuot.com",
51011 52765 "name": "Kilo Solution",
@@ -52319,6 +54073,38 @@
52319 54073 "status": "verified",
52320 54074 "enabled": false
52321 54075 },
54076 + {
54077 + "id": "jessicapchang.com",
54078 + "name": "The Bag Lady Atelier",
54079 + "url": "https://jessicapchang.com",
54080 + "platform": "squarespace",
54081 + "catalog_endpoint": "",
54082 + "city": "",
54083 + "region": "",
54084 + "postal_prefix": null,
54085 + "phone": null,
54086 + "origin_class": "A",
54087 + "origin_confidence": 0.6,
54088 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
54089 + "categories": [
54090 + "art"
54091 + ],
54092 + "socials": [
54093 + "facebook.com",
54094 + "instagram.com"
54095 + ],
54096 + "discovery_sources": [
54097 + "search_sweep_cmaq"
54098 + ],
54099 + "discovery_source_urls": [
54100 + "The Bag Lady Atelier Jessica Poirier-Chang couturier québec"
54101 + ],
54102 + "language": "en",
54103 + "ecommerce": true,
54104 + "verification_date": "2026-08-12",
54105 + "status": "probable",
54106 + "enabled": false
54107 + },
52322 54108 {
52323 54109 "id": "jeuxface4.com",
52324 54110 "name": "Jeux Face4 inc.",
@@ -52424,21 +54210,25 @@
52424 54210 "platform": "shopify",
52425 54211 "catalog_endpoint": "/products.json",
52426 54212 "city": "",
52427 − "region": "",
54213 + "region": "Montréal",
52428 54214 "postal_prefix": null,
52429 54215 "phone": null,
52430 54216 "origin_class": "A",
52431 54217 "origin_confidence": 0.75,
52432 54218 "origin_evidence": "Marque québécoise vendue par Signé Local ou Boutique Métiers d'art — site officiel résolu ; le site affiche une mention de fabrication québécoise",
52433 − "categories": [],
54219 + "categories": [
54220 + "bijoux"
54221 + ],
52434 54222 "socials": [
52435 54223 "facebook.com",
52436 54224 "instagram.com"
52437 54225 ],
52438 54226 "discovery_sources": [
54227 + "search_sweep_bijoux",
52439 54228 "search_sweep_vendors"
52440 54229 ],
52441 54230 "discovery_source_urls": [
54231 + "bagues de fiançailles créateur québécois boutique en ligne",
52442 54232 "direct domain guess joailleriestonge.com, verified via WebFetch"
52443 54233 ],
52444 54234 "language": "en",
@@ -52745,6 +54535,38 @@
52745 54535 "status": "verified",
52746 54536 "enabled": false
52747 54537 },
54538 + {
54539 + "id": "judithdubord.com",
54540 + "name": "DUBORD Céramiste | Verrier",
54541 + "url": "https://www.judithdubord.com",
54542 + "platform": "wix",
54543 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
54544 + "city": "",
54545 + "region": "Chaudière-Appalaches",
54546 + "postal_prefix": "G0R",
54547 + "phone": "4183548489",
54548 + "origin_class": "A",
54549 + "origin_confidence": 0.85,
54550 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
54551 + "categories": [
54552 + "art"
54553 + ],
54554 + "socials": [
54555 + "instagram.com",
54556 + "facebook.com"
54557 + ],
54558 + "discovery_sources": [
54559 + "search_sweep_cmaq"
54560 + ],
54561 + "discovery_source_urls": [
54562 + "DUBORD Judith Dubord céramiste verrier québec"
54563 + ],
54564 + "language": null,
54565 + "ecommerce": true,
54566 + "verification_date": "2026-08-12",
54567 + "status": "verified",
54568 + "enabled": true
54569 + },
52748 54570 {
52749 54571 "id": "juleidesign.com",
52750 54572 "name": "Julei design - CMAQ",
@@ -53184,7 +55006,9 @@
53184 55006 "origin_class": "A",
53185 55007 "origin_confidence": 0.85,
53186 55008 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec)",
53187 − "categories": [],
55009 + "categories": [
55010 + "bijoux"
55011 + ],
53188 55012 "socials": [
53189 55013 "https://www.facebook.com/lesproduitsduqc",
53190 55014 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -53193,10 +55017,12 @@
53193 55017 ],
53194 55018 "discovery_sources": [
53195 55019 "lesproduitsduquebec_ent",
55020 + "search_sweep_bijoux",
53196 55021 "search_sweep_vendors"
53197 55022 ],
53198 55023 "discovery_source_urls": [
53199 55024 "https://lesproduitsduquebec.com/entreprises-adherentes/kara-bijoux-style",
55025 + "bijoux résine faits au Québec boutique en ligne",
53200 55026 "\"Kara Bijoux\" Québec collier bracelet boutique"
53201 55027 ],
53202 55028 "language": null,
@@ -56154,6 +57980,37 @@
56154 57980 "status": "verified",
56155 57981 "enabled": true
56156 57982 },
57983 + {
57984 + "id": "lafeebranchee.com",
57985 + "name": "La fée branchée",
57986 + "url": "https://lafeebranchee.com",
57987 + "platform": "woocommerce",
57988 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
57989 + "city": "",
57990 + "region": "",
57991 + "postal_prefix": "J4V",
57992 + "phone": "5147728502",
57993 + "origin_class": "A",
57994 + "origin_confidence": 0.85,
57995 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
57996 + "categories": [
57997 + "art"
57998 + ],
57999 + "socials": [
58000 + "facebook.com"
58001 + ],
58002 + "discovery_sources": [
58003 + "search_sweep_cmaq"
58004 + ],
58005 + "discovery_source_urls": [
58006 + "La fée branchée Johanne Dubeau créateur imprimeur textile québec"
58007 + ],
58008 + "language": "en",
58009 + "ecommerce": true,
58010 + "verification_date": "2026-08-12",
58011 + "status": "verified",
58012 + "enabled": true
58013 + },
56157 58014 {
56158 58015 "id": "lafermeafrederique.com",
56159 58016 "name": "La ferme à Frédérique",
@@ -58603,7 +60460,9 @@
58603 60460 "origin_class": "A",
58604 60461 "origin_confidence": 0.85,
58605 60462 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec)",
58606 − "categories": [],
60463 + "categories": [
60464 + "art"
60465 + ],
58607 60466 "socials": [
58608 60467 "https://www.facebook.com/lesproduitsduqc",
58609 60468 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -58611,10 +60470,12 @@
58611 60470 "https://www.instagram.com/lesproduitsduqc/"
58612 60471 ],
58613 60472 "discovery_sources": [
58614 − "lesproduitsduquebec_ent"
60473 + "lesproduitsduquebec_ent",
60474 + "search_sweep_cmaq"
58615 60475 ],
58616 60476 "discovery_source_urls": [
58617 − "https://lesproduitsduquebec.com/entreprises-adherentes/la-mosaique-fleurie-cmaq"
60477 + "https://lesproduitsduquebec.com/entreprises-adherentes/la-mosaique-fleurie-cmaq",
60478 + "Mosaïque Fleurie Claire Labelle ébéniste québec"
58618 60479 ],
58619 60480 "language": "fr",
58620 60481 "ecommerce": false,
@@ -58839,7 +60700,9 @@
58839 60700 "origin_class": "A",
58840 60701 "origin_confidence": 0.85,
58841 60702 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec)",
58842 − "categories": [],
60703 + "categories": [
60704 + "art"
60705 + ],
58843 60706 "socials": [
58844 60707 "https://www.facebook.com/lesproduitsduqc",
58845 60708 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -58847,10 +60710,12 @@
58847 60710 "https://www.instagram.com/lesproduitsduqc/"
58848 60711 ],
58849 60712 "discovery_sources": [
58850 − "lesproduitsduquebec_ent"
60713 + "lesproduitsduquebec_ent",
60714 + "search_sweep_cmaq"
58851 60715 ],
58852 60716 "discovery_source_urls": [
58853 − "https://lesproduitsduquebec.com/entreprises-adherentes/lapare-bijoux-cmaq"
60717 + "https://lesproduitsduquebec.com/entreprises-adherentes/lapare-bijoux-cmaq",
60718 + "Laparé bijoux Chantal Laparé québec"
58854 60719 ],
58855 60720 "language": "en",
58856 60721 "ecommerce": true,
@@ -60194,6 +62059,69 @@
60194 62059 "status": "verified",
60195 62060 "enabled": false
60196 62061 },
62062 + {
62063 + "id": "laumecera.com",
62064 + "name": "Laume",
62065 + "url": "https://www.laumecera.com",
62066 + "platform": "wix",
62067 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
62068 + "city": "",
62069 + "region": "",
62070 + "postal_prefix": "H2H",
62071 + "phone": null,
62072 + "origin_class": "A",
62073 + "origin_confidence": 0.85,
62074 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
62075 + "categories": [
62076 + "art"
62077 + ],
62078 + "socials": [],
62079 + "discovery_sources": [
62080 + "search_sweep_cmaq"
62081 + ],
62082 + "discovery_source_urls": [
62083 + "Laume Laura MacLean céramiste québec"
62084 + ],
62085 + "language": null,
62086 + "ecommerce": true,
62087 + "verification_date": "2026-08-12",
62088 + "status": "verified",
62089 + "enabled": true
62090 + },
62091 + {
62092 + "id": "launeatelier.com",
62093 + "name": "L'AUNE Atelier",
62094 + "url": "https://www.launeatelier.com",
62095 + "platform": "squarespace",
62096 + "catalog_endpoint": "",
62097 + "city": "",
62098 + "region": "Montréal",
62099 + "postal_prefix": null,
62100 + "phone": null,
62101 + "origin_class": "A",
62102 + "origin_confidence": 0.9,
62103 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
62104 + "categories": [
62105 + "art"
62106 + ],
62107 + "socials": [
62108 + "facebook.com",
62109 + "instagram.com"
62110 + ],
62111 + "discovery_sources": [
62112 + "search_sweep_bijoux",
62113 + "search_sweep_cmaq"
62114 + ],
62115 + "discovery_source_urls": [
62116 + "bijoux faits main Québec boutique en ligne artisan",
62117 + "L'AUNE Karine Denault joaillier québec"
62118 + ],
62119 + "language": "en",
62120 + "ecommerce": true,
62121 + "verification_date": "2026-08-12",
62122 + "status": "verified",
62123 + "enabled": false
62124 + },
60197 62125 {
60198 62126 "id": "lauthentik.ca",
60199 62127 "name": "L'Authentik Café - Goûtez-y!",
@@ -63897,6 +65825,35 @@
63897 65825 "status": "verified",
63898 65826 "enabled": true
63899 65827 },
65828 + {
65829 + "id": "lesbijouxtherrien.com",
65830 + "name": "Les Bijoux Therrien",
65831 + "url": "https://www.lesbijouxtherrien.com",
65832 + "platform": "wix",
65833 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
65834 + "city": "",
65835 + "region": "",
65836 + "postal_prefix": null,
65837 + "phone": null,
65838 + "origin_class": "A",
65839 + "origin_confidence": 0.55,
65840 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
65841 + "categories": [
65842 + "bijoux"
65843 + ],
65844 + "socials": [],
65845 + "discovery_sources": [
65846 + "search_sweep_bijoux"
65847 + ],
65848 + "discovery_source_urls": [
65849 + "créateur bijoux Saguenay Chicoutimi boutique en ligne"
65850 + ],
65851 + "language": null,
65852 + "ecommerce": true,
65853 + "verification_date": "2026-08-12",
65854 + "status": "probable",
65855 + "enabled": true
65856 + },
63900 65857 {
63901 65858 "id": "lesbleuetsdumarquis.com",
63902 65859 "name": "Créateurs",
@@ -67188,7 +69145,9 @@
67188 69145 "origin_class": "A",
67189 69146 "origin_confidence": 0.85,
67190 69147 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec)",
67191 − "categories": [],
69148 + "categories": [
69149 + "bijoux"
69150 + ],
67192 69151 "socials": [
67193 69152 "https://www.facebook.com/lesproduitsduqc",
67194 69153 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -67197,10 +69156,12 @@
67197 69156 ],
67198 69157 "discovery_sources": [
67199 69158 "lesproduitsduquebec_ent",
69159 + "search_sweep_bijoux",
67200 69160 "search_sweep_vendors"
67201 69161 ],
67202 69162 "discovery_source_urls": [
67203 69163 "https://lesproduitsduquebec.com/entreprises-adherentes/lidia-raymond-cmaq",
69164 + "bijoux minimalistes Montréal créateur boutique en ligne",
67204 69165 "\"Lidia\" bijoux boucles d'oreilles argent Québec boutique"
67205 69166 ],
67206 69167 "language": null,
@@ -67872,6 +69833,35 @@
67872 69833 "status": "probable",
67873 69834 "enabled": true
67874 69835 },
69836 + {
69837 + "id": "lostandfaune.com",
69838 + "name": "Lost & Faune",
69839 + "url": "https://www.lostandfaune.com",
69840 + "platform": "shopify",
69841 + "catalog_endpoint": "/products.json",
69842 + "city": "",
69843 + "region": "Montréal",
69844 + "postal_prefix": null,
69845 + "phone": null,
69846 + "origin_class": "A",
69847 + "origin_confidence": 0.6,
69848 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise",
69849 + "categories": [
69850 + "bijoux"
69851 + ],
69852 + "socials": [],
69853 + "discovery_sources": [
69854 + "search_sweep_bijoux"
69855 + ],
69856 + "discovery_source_urls": [
69857 + "bijoux émail créateur québécois boutique en ligne"
69858 + ],
69859 + "language": "en",
69860 + "ecommerce": true,
69861 + "verification_date": "2026-08-12",
69862 + "status": "verified",
69863 + "enabled": true
69864 + },
67875 69865 {
67876 69866 "id": "louinspirations.com",
67877 69867 "name": "Lou Inspirations",
@@ -69181,6 +71171,38 @@
69181 71171 "status": "verified",
69182 71172 "enabled": false
69183 71173 },
71174 + {
71175 + "id": "maisonenchanvre.com",
71176 + "name": "ArtCan construction chanvre",
71177 + "url": "https://maisonenchanvre.com",
71178 + "platform": "wordpress",
71179 + "catalog_endpoint": "",
71180 + "city": "",
71181 + "region": "Estrie",
71182 + "postal_prefix": "J2M",
71183 + "phone": "450-830-2842",
71184 + "origin_class": "A",
71185 + "origin_confidence": 0.9,
71186 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
71187 + "categories": [
71188 + "art"
71189 + ],
71190 + "socials": [
71191 + "facebook.com",
71192 + "instagram.com"
71193 + ],
71194 + "discovery_sources": [
71195 + "search_sweep_cmaq"
71196 + ],
71197 + "discovery_source_urls": [
71198 + "ArtCan chanvre Gabriel Gauthier peintre décorateur québec"
71199 + ],
71200 + "language": "fr",
71201 + "ecommerce": false,
71202 + "verification_date": "2026-08-12",
71203 + "status": "verified",
71204 + "enabled": false
71205 + },
69184 71206 {
69185 71207 "id": "maisonmere.ca",
69186 71208 "name": "Parcours muséal des Petites Franciscaines de Marie",
@@ -69504,7 +71526,9 @@
69504 71526 "origin_class": "A",
69505 71527 "origin_confidence": 0.9,
69506 71528 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; le site affiche une mention de fabrication québécoise",
69507 − "categories": [],
71529 + "categories": [
71530 + "art"
71531 + ],
69508 71532 "socials": [
69509 71533 "https://www.facebook.com/lesproduitsduqc",
69510 71534 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -69512,10 +71536,12 @@
69512 71536 "https://www.instagram.com/lesproduitsduqc/"
69513 71537 ],
69514 71538 "discovery_sources": [
69515 − "lesproduitsduquebec_ent"
71539 + "lesproduitsduquebec_ent",
71540 + "search_sweep_cmaq"
69516 71541 ],
69517 71542 "discovery_source_urls": [
69518 − "https://lesproduitsduquebec.com/entreprises-adherentes/makeloo-studio-laine-quebec-cmaq"
71543 + "https://lesproduitsduquebec.com/entreprises-adherentes/makeloo-studio-laine-quebec-cmaq",
71544 + "Makeloo Studio Marcelo Martins fileur québec"
69519 71545 ],
69520 71546 "language": null,
69521 71547 "ecommerce": true,
@@ -69961,6 +71987,37 @@
69961 71987 "status": "verified",
69962 71988 "enabled": true
69963 71989 },
71990 + {
71991 + "id": "mantionbijoutier.com",
71992 + "name": "Mantion Bijoutier",
71993 + "url": "https://mantionbijoutier.com",
71994 + "platform": "",
71995 + "catalog_endpoint": "",
71996 + "city": "",
71997 + "region": "Lanaudière",
71998 + "postal_prefix": "J6W",
71999 + "phone": "450-471-2967",
72000 + "origin_class": "A",
72001 + "origin_confidence": 0.55,
72002 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
72003 + "categories": [
72004 + "bijoux"
72005 + ],
72006 + "socials": [
72007 + "facebook.com"
72008 + ],
72009 + "discovery_sources": [
72010 + "search_sweep_bijoux"
72011 + ],
72012 + "discovery_source_urls": [
72013 + "bijouterie Terrebonne boutique en ligne"
72014 + ],
72015 + "language": "en",
72016 + "ecommerce": true,
72017 + "verification_date": "2026-08-12",
72018 + "status": "probable",
72019 + "enabled": false
72020 + },
69964 72021 {
69965 72022 "id": "maple3.ca",
69966 72023 "name": "Maple 3 (Groupe Acéricole Sn Inc.)",
@@ -71853,6 +73910,38 @@
71853 73910 "status": "verified",
71854 73911 "enabled": false
71855 73912 },
73913 + {
73914 + "id": "marie-les-bains.com",
73915 + "name": "Marie-Les-Bains",
73916 + "url": "https://marie-les-bains.com",
73917 + "platform": "shopify",
73918 + "catalog_endpoint": "/products.json",
73919 + "city": "",
73920 + "region": "",
73921 + "postal_prefix": null,
73922 + "phone": null,
73923 + "origin_class": "A",
73924 + "origin_confidence": 0.9,
73925 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
73926 + "categories": [
73927 + "art"
73928 + ],
73929 + "socials": [
73930 + "facebook.com",
73931 + "instagram.com"
73932 + ],
73933 + "discovery_sources": [
73934 + "search_sweep_cmaq"
73935 + ],
73936 + "discovery_source_urls": [
73937 + "Marie-Les-Bains Marie-Eve Dion créateur imprimeur textile québec"
73938 + ],
73939 + "language": "en",
73940 + "ecommerce": true,
73941 + "verification_date": "2026-08-12",
73942 + "status": "verified",
73943 + "enabled": true
73944 + },
71856 73945 {
71857 73946 "id": "mariefil.com",
71858 73947 "name": "Marie fil",
@@ -71930,7 +74019,9 @@
71930 74019 "origin_class": "A",
71931 74020 "origin_confidence": 0.9,
71932 74021 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; le site affiche une mention de fabrication québécoise",
71933 − "categories": [],
74022 + "categories": [
74023 + "art"
74024 + ],
71934 74025 "socials": [
71935 74026 "https://www.facebook.com/lesproduitsduqc",
71936 74027 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -71939,10 +74030,12 @@
71939 74030 ],
71940 74031 "discovery_sources": [
71941 74032 "lesproduitsduquebec_ent",
74033 + "search_sweep_cmaq",
71942 74034 "search_sweep_urban"
71943 74035 ],
71944 74036 "discovery_source_urls": [
71945 74037 "https://lesproduitsduquebec.com/entreprises-adherentes/marigold-cmaq",
74038 + "Marigold clothing Marilyne Baril couturier québec",
71946 74039 "Marigold vêtements fabriqués Montréal boutique en ligne site officiel"
71947 74040 ],
71948 74041 "language": null,
@@ -72246,6 +74339,38 @@
72246 74339 "status": "probable",
72247 74340 "enabled": true
72248 74341 },
74342 + {
74343 + "id": "mathieublanchard.ca",
74344 + "name": "Mathieu Blanchard Joaillerie",
74345 + "url": "https://mathieublanchard.ca",
74346 + "platform": "shopify",
74347 + "catalog_endpoint": "/products.json",
74348 + "city": "",
74349 + "region": "",
74350 + "postal_prefix": null,
74351 + "phone": null,
74352 + "origin_class": "A",
74353 + "origin_confidence": 0.35,
74354 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
74355 + "categories": [
74356 + "bijoux"
74357 + ],
74358 + "socials": [
74359 + "instagram.com",
74360 + "facebook.com"
74361 + ],
74362 + "discovery_sources": [
74363 + "search_sweep_bijoux"
74364 + ],
74365 + "discovery_source_urls": [
74366 + "bijouterie Granby boutique en ligne"
74367 + ],
74368 + "language": "en",
74369 + "ecommerce": true,
74370 + "verification_date": "2026-08-12",
74371 + "status": "probable",
74372 + "enabled": true
74373 + },
72249 74374 {
72250 74375 "id": "mathpiquant.com",
72251 74376 "name": "Math Piquant!",
@@ -72312,6 +74437,70 @@
72312 74437 "status": "probable",
72313 74438 "enabled": false
72314 74439 },
74440 + {
74441 + "id": "matpel.ca",
74442 + "name": "Matpel ébénisterie ecologique",
74443 + "url": "https://matpel.ca",
74444 + "platform": "woocommerce",
74445 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
74446 + "city": "",
74447 + "region": "",
74448 + "postal_prefix": null,
74449 + "phone": null,
74450 + "origin_class": "A",
74451 + "origin_confidence": 0.85,
74452 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
74453 + "categories": [
74454 + "art"
74455 + ],
74456 + "socials": [
74457 + "facebook.com",
74458 + "instagram.com"
74459 + ],
74460 + "discovery_sources": [
74461 + "search_sweep_cmaq"
74462 + ],
74463 + "discovery_source_urls": [
74464 + "Matpel ébénisterie ecologique Mathieu Pellerin québec"
74465 + ],
74466 + "language": "fr",
74467 + "ecommerce": true,
74468 + "verification_date": "2026-08-12",
74469 + "status": "verified",
74470 + "enabled": true
74471 + },
74472 + {
74473 + "id": "matsheshucreations.com",
74474 + "name": "Matshesku Creations",
74475 + "url": "https://matsheshucreations.com",
74476 + "platform": "shopify",
74477 + "catalog_endpoint": "/products.json",
74478 + "city": "",
74479 + "region": "",
74480 + "postal_prefix": null,
74481 + "phone": "581-674-5220",
74482 + "origin_class": "A",
74483 + "origin_confidence": 0.55,
74484 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
74485 + "categories": [
74486 + "bijoux"
74487 + ],
74488 + "socials": [
74489 + "facebook.com",
74490 + "instagram.com"
74491 + ],
74492 + "discovery_sources": [
74493 + "search_sweep_bijoux"
74494 + ],
74495 + "discovery_source_urls": [
74496 + "bijoux autochtones perlage Québec boutique en ligne"
74497 + ],
74498 + "language": "en",
74499 + "ecommerce": true,
74500 + "verification_date": "2026-08-12",
74501 + "status": "probable",
74502 + "enabled": true
74503 + },
72315 74504 {
72316 74505 "id": "maturin.ca",
72317 74506 "name": "Créateurs",
@@ -72517,6 +74706,38 @@
72517 74706 "status": "verified",
72518 74707 "enabled": false
72519 74708 },
74709 + {
74710 + "id": "melanielaplante.com",
74711 + "name": "MÉLA",
74712 + "url": "https://www.melanielaplante.com",
74713 + "platform": "shopify",
74714 + "catalog_endpoint": "/products.json",
74715 + "city": "",
74716 + "region": "",
74717 + "postal_prefix": null,
74718 + "phone": null,
74719 + "origin_class": "A",
74720 + "origin_confidence": 0.9,
74721 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
74722 + "categories": [
74723 + "art"
74724 + ],
74725 + "socials": [
74726 + "facebook.com",
74727 + "instagram.com"
74728 + ],
74729 + "discovery_sources": [
74730 + "search_sweep_cmaq"
74731 + ],
74732 + "discovery_source_urls": [
74733 + "MÉLA Mélanie Laplante artiste verrier bijoutier québec"
74734 + ],
74735 + "language": "en",
74736 + "ecommerce": true,
74737 + "verification_date": "2026-08-12",
74738 + "status": "verified",
74739 + "enabled": true
74740 + },
72520 74741 {
72521 74742 "id": "melissacharette.com",
72522 74743 "name": "Misskikooz",
@@ -72686,6 +74907,37 @@
72686 74907 "status": "verified",
72687 74908 "enabled": true
72688 74909 },
74910 + {
74911 + "id": "menuiserie-authentique.com",
74912 + "name": "Menuiserie Authentique",
74913 + "url": "https://www.menuiserie-authentique.com",
74914 + "platform": "wix",
74915 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
74916 + "city": "",
74917 + "region": "",
74918 + "postal_prefix": null,
74919 + "phone": "418-598-7258",
74920 + "origin_class": "A",
74921 + "origin_confidence": 0.85,
74922 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
74923 + "categories": [
74924 + "art"
74925 + ],
74926 + "socials": [
74927 + "facebook.com"
74928 + ],
74929 + "discovery_sources": [
74930 + "search_sweep_cmaq"
74931 + ],
74932 + "discovery_source_urls": [
74933 + "Menuiserie Authentique Eloi Gagnon menuisier d'art québec"
74934 + ],
74935 + "language": "fr",
74936 + "ecommerce": true,
74937 + "verification_date": "2026-08-12",
74938 + "status": "verified",
74939 + "enabled": true
74940 + },
72689 74941 {
72690 74942 "id": "menuverger.com",
72691 74943 "name": "Menu Verger",
@@ -72843,6 +75095,38 @@
72843 75095 "status": "verified",
72844 75096 "enabled": true
72845 75097 },
75098 + {
75099 + "id": "mesbijouxdefamille.ca",
75100 + "name": "Mes bijoux de Famille",
75101 + "url": "https://www.mesbijouxdefamille.ca",
75102 + "platform": "woocommerce",
75103 + "catalog_endpoint": "",
75104 + "city": "",
75105 + "region": "",
75106 + "postal_prefix": null,
75107 + "phone": null,
75108 + "origin_class": "A",
75109 + "origin_confidence": 0.6,
75110 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux ; le site affiche une mention de fabrication québécoise",
75111 + "categories": [
75112 + "bijoux"
75113 + ],
75114 + "socials": [
75115 + "facebook.com",
75116 + "instagram.com"
75117 + ],
75118 + "discovery_sources": [
75119 + "search_sweep_bijoux"
75120 + ],
75121 + "discovery_source_urls": [
75122 + "bijoux personnalisés gravure Québec boutique en ligne"
75123 + ],
75124 + "language": "en",
75125 + "ecommerce": true,
75126 + "verification_date": "2026-08-12",
75127 + "status": "verified",
75128 + "enabled": false
75129 + },
72846 75130 {
72847 75131 "id": "metalico.ca",
72848 75132 "name": "Métalico",
@@ -73004,6 +75288,38 @@
73004 75288 "status": "probable",
73005 75289 "enabled": true
73006 75290 },
75291 + {
75292 + "id": "mia-bijoux.ca",
75293 + "name": "Mia Bijoux",
75294 + "url": "https://mia-bijoux.ca",
75295 + "platform": "shopify",
75296 + "catalog_endpoint": "",
75297 + "city": "",
75298 + "region": "",
75299 + "postal_prefix": null,
75300 + "phone": null,
75301 + "origin_class": "A",
75302 + "origin_confidence": 0.55,
75303 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
75304 + "categories": [
75305 + "bijoux"
75306 + ],
75307 + "socials": [
75308 + "instagram.com",
75309 + "facebook.com"
75310 + ],
75311 + "discovery_sources": [
75312 + "search_sweep_bijoux"
75313 + ],
75314 + "discovery_source_urls": [
75315 + "Mia Bijoux Québec boutique en ligne"
75316 + ],
75317 + "language": "en",
75318 + "ecommerce": true,
75319 + "verification_date": "2026-08-12",
75320 + "status": "probable",
75321 + "enabled": false
75322 + },
73007 75323 {
73008 75324 "id": "delicesdici.ca",
73009 75325 "name": "Marché d'ici et d'ailleurs Inc",
@@ -74047,6 +76363,38 @@
74047 76363 "status": "verified",
74048 76364 "enabled": true
74049 76365 },
76366 + {
76367 + "id": "midi34.ca",
76368 + "name": "Midi34",
76369 + "url": "https://midi34.ca",
76370 + "platform": "woocommerce",
76371 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
76372 + "city": "",
76373 + "region": "",
76374 + "postal_prefix": "G1V",
76375 + "phone": "418-651-3334",
76376 + "origin_class": "A",
76377 + "origin_confidence": 0.55,
76378 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
76379 + "categories": [
76380 + "bijoux"
76381 + ],
76382 + "socials": [
76383 + "facebook.com",
76384 + "instagram.com"
76385 + ],
76386 + "discovery_sources": [
76387 + "search_sweep_bijoux"
76388 + ],
76389 + "discovery_source_urls": [
76390 + "bijoux minimalistes Montréal créateur boutique en ligne"
76391 + ],
76392 + "language": "fr",
76393 + "ecommerce": true,
76394 + "verification_date": "2026-08-12",
76395 + "status": "probable",
76396 + "enabled": true
76397 + },
74050 76398 {
74051 76399 "id": "midigopresto.ca",
74052 76400 "name": "MidiGo Presto Victo - Goûtez-y!",
@@ -74920,6 +77268,38 @@
74920 77268 "status": "probable",
74921 77269 "enabled": true
74922 77270 },
77271 + {
77272 + "id": "minuitmetal.com",
77273 + "name": "Minuit Metal",
77274 + "url": "https://www.minuitmetal.com",
77275 + "platform": "wix",
77276 + "catalog_endpoint": "/_api/wix-ecommerce-storefront-web/api",
77277 + "city": "",
77278 + "region": "",
77279 + "postal_prefix": null,
77280 + "phone": null,
77281 + "origin_class": "A",
77282 + "origin_confidence": 0.9,
77283 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
77284 + "categories": [
77285 + "art"
77286 + ],
77287 + "socials": [
77288 + "instagram.com",
77289 + "facebook.com"
77290 + ],
77291 + "discovery_sources": [
77292 + "search_sweep_cmaq"
77293 + ],
77294 + "discovery_source_urls": [
77295 + "Minuit Metal Julie Williston joaillier québec"
77296 + ],
77297 + "language": "en",
77298 + "ecommerce": true,
77299 + "verification_date": "2026-08-12",
77300 + "status": "verified",
77301 + "enabled": true
77302 + },
74923 77303 {
74924 77304 "id": "mirabuches.com",
74925 77305 "name": "Mirabûches",
@@ -74952,6 +77332,38 @@
74952 77332 "status": "verified",
74953 77333 "enabled": true
74954 77334 },
77335 + {
77336 + "id": "mirakydesign.com",
77337 + "name": "Miraky Design",
77338 + "url": "https://www.mirakydesign.com",
77339 + "platform": "shopify",
77340 + "catalog_endpoint": "/products.json",
77341 + "city": "",
77342 + "region": "",
77343 + "postal_prefix": null,
77344 + "phone": null,
77345 + "origin_class": "A",
77346 + "origin_confidence": 0.85,
77347 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
77348 + "categories": [
77349 + "art"
77350 + ],
77351 + "socials": [
77352 + "facebook.com",
77353 + "instagram.com"
77354 + ],
77355 + "discovery_sources": [
77356 + "search_sweep_cmaq"
77357 + ],
77358 + "discovery_source_urls": [
77359 + "Miraky Design Marie-Josée Francoeur ébéniste québec"
77360 + ],
77361 + "language": "en",
77362 + "ecommerce": true,
77363 + "verification_date": "2026-08-12",
77364 + "status": "verified",
77365 + "enabled": true
77366 + },
74955 77367 {
74956 77368 "id": "mishkafab.ca",
74957 77369 "name": "Créateurs",
@@ -78187,16 +80599,20 @@
78187 80599 "origin_class": "A",
78188 80600 "origin_confidence": 0.5,
78189 80601 "origin_evidence": "Trouvé par balayage de recherche ciblé (fabricant/artisan QC)",
78190 − "categories": [],
80602 + "categories": [
80603 + "bijoux"
80604 + ],
78191 80605 "socials": [
78192 80606 "facebook.com",
78193 80607 "instagram.com"
78194 80608 ],
78195 80609 "discovery_sources": [
80610 + "search_sweep_bijoux",
78196 80611 "search_sweep_nonfood",
78197 80612 "search_sweep_urban"
78198 80613 ],
78199 80614 "discovery_source_urls": [
80615 + "créateur bijoux Montréal boutique en ligne",
78200 80616 "bijoux accessoires Montérégie fait main boutique en ligne",
78201 80617 "bijoux fabriqués Montréal designer boutique en ligne bijouterie créateur"
78202 80618 ],
@@ -78568,6 +80984,35 @@
78568 80984 "status": "probable",
78569 80985 "enabled": true
78570 80986 },
80987 + {
80988 + "id": "nathaliesamson.com",
80989 + "name": "Samson Design",
80990 + "url": "https://nathaliesamson.com",
80991 + "platform": "",
80992 + "catalog_endpoint": "",
80993 + "city": "",
80994 + "region": "",
80995 + "postal_prefix": null,
80996 + "phone": null,
80997 + "origin_class": "A",
80998 + "origin_confidence": 0.6,
80999 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
81000 + "categories": [
81001 + "art"
81002 + ],
81003 + "socials": [],
81004 + "discovery_sources": [
81005 + "search_sweep_cmaq"
81006 + ],
81007 + "discovery_source_urls": [
81008 + "Samson Design Nathalie Samson céramiste québec"
81009 + ],
81010 + "language": null,
81011 + "ecommerce": false,
81012 + "verification_date": "2026-08-12",
81013 + "status": "probable",
81014 + "enabled": false
81015 + },
78571 81016 {
78572 81017 "id": "natuku.com",
78573 81018 "name": "Natuku",
@@ -78833,6 +81278,38 @@
78833 81278 "status": "verified",
78834 81279 "enabled": true
78835 81280 },
81281 + {
81282 + "id": "nemracstyle.com",
81283 + "name": "Nemrac Style Inc.",
81284 + "url": "https://www.nemracstyle.com",
81285 + "platform": "shopify",
81286 + "catalog_endpoint": "",
81287 + "city": "",
81288 + "region": "Montérégie",
81289 + "postal_prefix": "J4P",
81290 + "phone": "514-576-2251",
81291 + "origin_class": "A",
81292 + "origin_confidence": 0.85,
81293 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
81294 + "categories": [
81295 + "art"
81296 + ],
81297 + "socials": [
81298 + "facebook.com",
81299 + "instagram.com"
81300 + ],
81301 + "discovery_sources": [
81302 + "search_sweep_cmaq"
81303 + ],
81304 + "discovery_source_urls": [
81305 + "Nemrac Style Carmen Popescu couturier québec"
81306 + ],
81307 + "language": "en",
81308 + "ecommerce": true,
81309 + "verification_date": "2026-08-12",
81310 + "status": "verified",
81311 + "enabled": false
81312 + },
78836 81313 {
78837 81314 "id": "neochips.ca",
78838 81315 "name": "Néo Chips",
@@ -78996,6 +81473,70 @@
78996 81473 "status": "verified",
78997 81474 "enabled": true
78998 81475 },
81476 + {
81477 + "id": "niconico.ca",
81478 + "name": "Niconico",
81479 + "url": "https://www.niconico.ca",
81480 + "platform": "woocommerce",
81481 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
81482 + "city": "",
81483 + "region": "",
81484 + "postal_prefix": null,
81485 + "phone": null,
81486 + "origin_class": "A",
81487 + "origin_confidence": 0.9,
81488 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
81489 + "categories": [
81490 + "art"
81491 + ],
81492 + "socials": [
81493 + "instagram.com",
81494 + "facebook.com"
81495 + ],
81496 + "discovery_sources": [
81497 + "search_sweep_cmaq"
81498 + ],
81499 + "discovery_source_urls": [
81500 + "Niconico Nicolas LeBlanc tourneur sur bois jouettier québec"
81501 + ],
81502 + "language": "fr",
81503 + "ecommerce": true,
81504 + "verification_date": "2026-08-12",
81505 + "status": "verified",
81506 + "enabled": true
81507 + },
81508 + {
81509 + "id": "ninajanvier.com",
81510 + "name": "NINA JANVIER INC.",
81511 + "url": "https://www.ninajanvier.com",
81512 + "platform": "shopify",
81513 + "catalog_endpoint": "",
81514 + "city": "",
81515 + "region": "",
81516 + "postal_prefix": "H2J",
81517 + "phone": null,
81518 + "origin_class": "A",
81519 + "origin_confidence": 0.85,
81520 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
81521 + "categories": [
81522 + "art"
81523 + ],
81524 + "socials": [
81525 + "facebook.com",
81526 + "instagram.com"
81527 + ],
81528 + "discovery_sources": [
81529 + "search_sweep_cmaq"
81530 + ],
81531 + "discovery_source_urls": [
81532 + "NINA JANVIER bijoutier québec"
81533 + ],
81534 + "language": "en",
81535 + "ecommerce": true,
81536 + "verification_date": "2026-08-12",
81537 + "status": "verified",
81538 + "enabled": false
81539 + },
78999 81540 {
79000 81541 "id": "nival.ca",
79001 81542 "name": "Domaine du Nival – Les producteurs de cidre du Québec",
@@ -79200,6 +81741,38 @@
79200 81741 "status": "probable",
79201 81742 "enabled": true
79202 81743 },
81744 + {
81745 + "id": "noemiah.com",
81746 + "name": "Noémiah Design Inc",
81747 + "url": "https://noemiah.com",
81748 + "platform": "shopify",
81749 + "catalog_endpoint": "/products.json",
81750 + "city": "",
81751 + "region": "",
81752 + "postal_prefix": null,
81753 + "phone": null,
81754 + "origin_class": "A",
81755 + "origin_confidence": 0.85,
81756 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
81757 + "categories": [
81758 + "art"
81759 + ],
81760 + "socials": [
81761 + "facebook.com",
81762 + "instagram.com"
81763 + ],
81764 + "discovery_sources": [
81765 + "search_sweep_cmaq"
81766 + ],
81767 + "discovery_source_urls": [
81768 + "Noémiah Design Noémie Vaillancourt couturier québec"
81769 + ],
81770 + "language": "en",
81771 + "ecommerce": true,
81772 + "verification_date": "2026-08-12",
81773 + "status": "verified",
81774 + "enabled": true
81775 + },
79203 81776 {
79204 81777 "id": "noire-et-blanche.ca",
79205 81778 "name": "Microbrasserie Noire Et Blanche",
@@ -80217,6 +82790,38 @@
80217 82790 "status": "verified",
80218 82791 "enabled": false
80219 82792 },
82793 + {
82794 + "id": "octeaujoaillier.com",
82795 + "name": "Octeau Joaillier",
82796 + "url": "https://www.octeaujoaillier.com",
82797 + "platform": "woocommerce",
82798 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
82799 + "city": "",
82800 + "region": "Montérégie",
82801 + "postal_prefix": "J3E",
82802 + "phone": "450-649-4938",
82803 + "origin_class": "A",
82804 + "origin_confidence": 0.55,
82805 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
82806 + "categories": [
82807 + "bijoux"
82808 + ],
82809 + "socials": [
82810 + "facebook.com",
82811 + "instagram.com"
82812 + ],
82813 + "discovery_sources": [
82814 + "search_sweep_bijoux"
82815 + ],
82816 + "discovery_source_urls": [
82817 + "joaillerie québécoise boutique en ligne créateur"
82818 + ],
82819 + "language": "fr",
82820 + "ecommerce": true,
82821 + "verification_date": "2026-08-12",
82822 + "status": "probable",
82823 + "enabled": true
82824 + },
80220 82825 {
80221 82826 "id": "odayawellness.com",
80222 82827 "name": "Agence Tingg Inc",
@@ -81291,6 +83896,38 @@
81291 83896 "status": "verified",
81292 83897 "enabled": true
81293 83898 },
83899 + {
83900 + "id": "originegravure.ca",
83901 + "name": "Origine Gravure",
83902 + "url": "https://originegravure.ca",
83903 + "platform": "prestashop",
83904 + "catalog_endpoint": "",
83905 + "city": "",
83906 + "region": "",
83907 + "postal_prefix": null,
83908 + "phone": null,
83909 + "origin_class": "A",
83910 + "origin_confidence": 0.55,
83911 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
83912 + "categories": [
83913 + "bijoux"
83914 + ],
83915 + "socials": [
83916 + "facebook.com",
83917 + "instagram.com"
83918 + ],
83919 + "discovery_sources": [
83920 + "search_sweep_bijoux"
83921 + ],
83922 + "discovery_source_urls": [
83923 + "bijoux personnalisés gravure Québec boutique en ligne"
83924 + ],
83925 + "language": "fr",
83926 + "ecommerce": true,
83927 + "verification_date": "2026-08-12",
83928 + "status": "probable",
83929 + "enabled": false
83930 + },
81294 83931 {
81295 83932 "id": "orpailleur.ca",
81296 83933 "name": "ÉCONOMUSÉE® du vigneron",
@@ -83369,6 +86006,37 @@
83369 86006 "status": "verified",
83370 86007 "enabled": false
83371 86008 },
86009 + {
86010 + "id": "peasejewelry.com",
86011 + "name": "Bijoux Pease",
86012 + "url": "https://peasejewelry.com",
86013 + "platform": "woocommerce",
86014 + "catalog_endpoint": "/wp-json/wc/store/v1/products",
86015 + "city": "",
86016 + "region": "",
86017 + "postal_prefix": null,
86018 + "phone": null,
86019 + "origin_class": "A",
86020 + "origin_confidence": 0.55,
86021 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
86022 + "categories": [
86023 + "bijoux"
86024 + ],
86025 + "socials": [
86026 + "facebook.com"
86027 + ],
86028 + "discovery_sources": [
86029 + "search_sweep_bijoux"
86030 + ],
86031 + "discovery_source_urls": [
86032 + "bijoux minimalistes Montréal créateur boutique en ligne"
86033 + ],
86034 + "language": "en",
86035 + "ecommerce": true,
86036 + "verification_date": "2026-08-12",
86037 + "status": "probable",
86038 + "enabled": true
86039 + },
83372 86040 {
83373 86041 "id": "pecheriemanicouagan.com",
83374 86042 "name": "Pêcherie Manicouagan",
@@ -83609,6 +86277,38 @@
83609 86277 "status": "probable",
83610 86278 "enabled": false
83611 86279 },
86280 + {
86281 + "id": "penelopeclinique.com",
86282 + "name": "Pénélope Clinique",
86283 + "url": "https://penelopeclinique.com",
86284 + "platform": "",
86285 + "catalog_endpoint": "",
86286 + "city": "",
86287 + "region": "Laurentides",
86288 + "postal_prefix": "J7Z",
86289 + "phone": "4505652500",
86290 + "origin_class": "A",
86291 + "origin_confidence": 0.55,
86292 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
86293 + "categories": [
86294 + "bijoux"
86295 + ],
86296 + "socials": [
86297 + "facebook.com",
86298 + "instagram.com"
86299 + ],
86300 + "discovery_sources": [
86301 + "search_sweep_bijoux"
86302 + ],
86303 + "discovery_source_urls": [
86304 + "piercing body jewelry Québec boutique en ligne"
86305 + ],
86306 + "language": "fr",
86307 + "ecommerce": false,
86308 + "verification_date": "2026-08-12",
86309 + "status": "probable",
86310 + "enabled": false
86311 + },
83612 86312 {
83613 86313 "id": "penseesauvagedestacy.com",
83614 86314 "name": "Pensée Sauvage de stacy",
@@ -84625,6 +87325,38 @@
84625 87325 "status": "probable",
84626 87326 "enabled": true
84627 87327 },
87328 + {
87329 + "id": "pierresdailleurs.ca",
87330 + "name": "Pierres D'Ailleurs",
87331 + "url": "https://www.pierresdailleurs.ca",
87332 + "platform": "lightspeed",
87333 + "catalog_endpoint": "",
87334 + "city": "",
87335 + "region": "Montréal",
87336 + "postal_prefix": "H2J",
87337 + "phone": "(514) 849-9311",
87338 + "origin_class": "A",
87339 + "origin_confidence": 0.55,
87340 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
87341 + "categories": [
87342 + "bijoux"
87343 + ],
87344 + "socials": [
87345 + "facebook.com",
87346 + "instagram.com"
87347 + ],
87348 + "discovery_sources": [
87349 + "search_sweep_bijoux"
87350 + ],
87351 + "discovery_source_urls": [
87352 + "bijoux pierres minéraux Québec créateur boutique en ligne"
87353 + ],
87354 + "language": "fr",
87355 + "ecommerce": true,
87356 + "verification_date": "2026-08-12",
87357 + "status": "probable",
87358 + "enabled": false
87359 + },
84628 87360 {
84629 87361 "id": "pikkado.com:443",
84630 87362 "name": "Alcyon",
@@ -88310,6 +91042,38 @@
88310 91042 "status": "verified",
88311 91043 "enabled": true
88312 91044 },
91045 + {
91046 + "id": "rebellesdesbois.com",
91047 + "name": "Rebelles des Bois",
91048 + "url": "https://rebellesdesbois.com",
91049 + "platform": "shopify",
91050 + "catalog_endpoint": "",
91051 + "city": "",
91052 + "region": "Saguenay–Lac-Saint-Jean",
91053 + "postal_prefix": null,
91054 + "phone": "418-608-8382",
91055 + "origin_class": "A",
91056 + "origin_confidence": 0.55,
91057 + "origin_evidence": "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux",
91058 + "categories": [
91059 + "bijoux"
91060 + ],
91061 + "socials": [
91062 + "facebook.com",
91063 + "instagram.com"
91064 + ],
91065 + "discovery_sources": [
91066 + "search_sweep_bijoux"
91067 + ],
91068 + "discovery_source_urls": [
91069 + "créateur bijoux Saguenay Chicoutimi boutique en ligne"
91070 + ],
91071 + "language": "en",
91072 + "ecommerce": true,
91073 + "verification_date": "2026-08-12",
91074 + "status": "probable",
91075 + "enabled": false
91076 + },
88313 91077 {
88314 91078 "id": "rebon-quebec.com",
88315 91079 "name": "ALICE&AMBRE INC. (ReBon)",
@@ -90796,6 +93560,35 @@
90796 93560 "status": "verified",
90797 93561 "enabled": true
90798 93562 },
93563 + {
93564 + "id": "rudimenterre.com",
93565 + "name": "RUDIMENTERRE",
93566 + "url": "https://rudimenterre.com",
93567 + "platform": "shopify",
93568 + "catalog_endpoint": "/products.json",
93569 + "city": "",
93570 + "region": "",
93571 + "postal_prefix": null,
93572 + "phone": null,
93573 + "origin_class": "A",
93574 + "origin_confidence": 0.6,
93575 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
93576 + "categories": [
93577 + "art"
93578 + ],
93579 + "socials": [],
93580 + "discovery_sources": [
93581 + "search_sweep_cmaq"
93582 + ],
93583 + "discovery_source_urls": [
93584 + "RUDIMENTERRE Carole Briet céramiste québec"
93585 + ],
93586 + "language": "en",
93587 + "ecommerce": true,
93588 + "verification_date": "2026-08-12",
93589 + "status": "probable",
93590 + "enabled": true
93591 + },
90799 93592 {
90800 93593 "id": "ruisseau.ca",
90801 93594 "name": "Chalet du Ruisseau",
@@ -90876,7 +93669,9 @@
90876 93669 "origin_class": "A",
90877 93670 "origin_confidence": 0.85,
90878 93671 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec)",
90879 − "categories": [],
93672 + "categories": [
93673 + "bijoux"
93674 + ],
90880 93675 "socials": [
90881 93676 "https://www.facebook.com/lesproduitsduqc",
90882 93677 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -90884,10 +93679,12 @@
90884 93679 "https://www.instagram.com/lesproduitsduqc/"
90885 93680 ],
90886 93681 "discovery_sources": [
90887 − "lesproduitsduquebec_ent"
93682 + "lesproduitsduquebec_ent",
93683 + "search_sweep_bijoux"
90888 93684 ],
90889 93685 "discovery_source_urls": [
90890 − "https://lesproduitsduquebec.com/entreprises-adherentes/rustic-tac"
93686 + "https://lesproduitsduquebec.com/entreprises-adherentes/rustic-tac",
93687 + "montres québécoises marque boutique en ligne"
90891 93688 ],
90892 93689 "language": null,
90893 93690 "ecommerce": true,
@@ -94743,7 +97540,9 @@
94743 97540 "origin_class": "A",
94744 97541 "origin_confidence": 0.65,
94745 97542 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; le site affiche une mention de fabrication québécoise ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
94746 − "categories": [],
97543 + "categories": [
97544 + "art"
97545 + ],
94747 97546 "socials": [
94748 97547 "https://www.facebook.com/lesproduitsduqc",
94749 97548 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -94751,10 +97550,12 @@
94751 97550 "https://www.instagram.com/lesproduitsduqc/"
94752 97551 ],
94753 97552 "discovery_sources": [
94754 − "lesproduitsduquebec_ent"
97553 + "lesproduitsduquebec_ent",
97554 + "search_sweep_cmaq"
94755 97555 ],
94756 97556 "discovery_source_urls": [
94757 − "https://lesproduitsduquebec.com/entreprises-adherentes/skylar-press-cmaq"
97557 + "https://lesproduitsduquebec.com/entreprises-adherentes/skylar-press-cmaq",
97558 + "Skylar Press Elena Radeva estampier papetier québec"
94758 97559 ],
94759 97560 "language": "fr",
94760 97561 "ecommerce": false,
@@ -94843,7 +97644,9 @@
94843 97644 "origin_class": "A",
94844 97645 "origin_confidence": 0.9,
94845 97646 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; le site affiche une mention de fabrication québécoise",
94846 − "categories": [],
97647 + "categories": [
97648 + "art"
97649 + ],
94847 97650 "socials": [
94848 97651 "https://www.facebook.com/lesproduitsduqc",
94849 97652 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -94852,10 +97655,12 @@
94852 97655 ],
94853 97656 "discovery_sources": [
94854 97657 "lesproduitsduquebec_ent",
97658 + "search_sweep_cmaq",
94855 97659 "search_sweep_nonfood"
94856 97660 ],
94857 97661 "discovery_source_urls": [
94858 97662 "https://lesproduitsduquebec.com/entreprises-adherentes/sacs-en-cuir-snoland-cmaq",
97663 + "Snoland Diana Serrano maroquinier québec",
94859 97664 "cuir artisanal Québec boutique en ligne sacs"
94860 97665 ],
94861 97666 "language": null,
@@ -95208,14 +98013,18 @@
95208 98013 "origin_class": "A",
95209 98014 "origin_confidence": 0.3,
95210 98015 "origin_evidence": "Entreprise québécoise répertoriée par Idée Cadeau Québec ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
95211 − "categories": [],
98016 + "categories": [
98017 + "bijoux"
98018 + ],
95212 98019 "socials": [],
95213 98020 "discovery_sources": [
95214 98021 "icq_resolved",
98022 + "search_sweep_bijoux",
95215 98023 "search_sweep_urban"
95216 98024 ],
95217 98025 "discovery_source_urls": [
95218 98026 "https://www.ideecadeauquebec.com/boutique/solioswatches/",
98027 + "montres québécoises marque boutique en ligne",
95219 98028 "montres québécoises marque montréalaise boutique en ligne"
95220 98029 ],
95221 98030 "language": null,
@@ -95321,6 +98130,38 @@
95321 98130 "status": "probable",
95322 98131 "enabled": true
95323 98132 },
98133 + {
98134 + "id": "sophiemanessiez.com",
98135 + "name": "Apidom Inc",
98136 + "url": "https://sophiemanessiez.com",
98137 + "platform": "",
98138 + "catalog_endpoint": "",
98139 + "city": "",
98140 + "region": "",
98141 + "postal_prefix": null,
98142 + "phone": null,
98143 + "origin_class": "A",
98144 + "origin_confidence": 0.85,
98145 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
98146 + "categories": [
98147 + "art"
98148 + ],
98149 + "socials": [
98150 + "instagram.com",
98151 + "facebook.com"
98152 + ],
98153 + "discovery_sources": [
98154 + "search_sweep_cmaq"
98155 + ],
98156 + "discovery_source_urls": [
98157 + "Apidom Sophie Manessiez céramiste québec"
98158 + ],
98159 + "language": "en",
98160 + "ecommerce": false,
98161 + "verification_date": "2026-08-12",
98162 + "status": "verified",
98163 + "enabled": false
98164 + },
95324 98165 {
95325 98166 "id": "sorcieredepouvoir.com",
95326 98167 "name": "Chaga aromatisé - Acheter québécois",
@@ -100071,6 +102912,38 @@
100071 102912 "status": "verified",
100072 102913 "enabled": false
100073 102914 },
102915 + {
102916 + "id": "umain.co",
102917 + "name": "UMAIN Joaillerie",
102918 + "url": "https://umain.co",
102919 + "platform": "",
102920 + "catalog_endpoint": "",
102921 + "city": "",
102922 + "region": "",
102923 + "postal_prefix": null,
102924 + "phone": "5142912243",
102925 + "origin_class": "A",
102926 + "origin_confidence": 0.85,
102927 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
102928 + "categories": [
102929 + "art"
102930 + ],
102931 + "socials": [
102932 + "facebook.com",
102933 + "instagram.com"
102934 + ],
102935 + "discovery_sources": [
102936 + "search_sweep_cmaq"
102937 + ],
102938 + "discovery_source_urls": [
102939 + "UMAIN Joaillerie Stéphanie Pepin québec"
102940 + ],
102941 + "language": "fr",
102942 + "ecommerce": false,
102943 + "verification_date": "2026-08-12",
102944 + "status": "probable",
102945 + "enabled": false
102946 + },
100074 102947 {
100075 102948 "id": "umam.ca",
100076 102949 "name": "UMAM (klkt inc.)",
@@ -100711,6 +103584,38 @@
100711 103584 "status": "verified",
100712 103585 "enabled": false
100713 103586 },
103587 + {
103588 + "id": "vachonknives.com",
103589 + "name": "Vachon Knives",
103590 + "url": "https://www.vachonknives.com",
103591 + "platform": "squarespace",
103592 + "catalog_endpoint": "",
103593 + "city": "",
103594 + "region": "",
103595 + "postal_prefix": null,
103596 + "phone": null,
103597 + "origin_class": "A",
103598 + "origin_confidence": 0.85,
103599 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
103600 + "categories": [
103601 + "art"
103602 + ],
103603 + "socials": [
103604 + "facebook.com",
103605 + "instagram.com"
103606 + ],
103607 + "discovery_sources": [
103608 + "search_sweep_cmaq"
103609 + ],
103610 + "discovery_source_urls": [
103611 + "Vachon Knives Noah Vachon coutelier québec"
103612 + ],
103613 + "language": "en",
103614 + "ecommerce": true,
103615 + "verification_date": "2026-08-12",
103616 + "status": "verified",
103617 + "enabled": false
103618 + },
100714 103619 {
100715 103620 "id": "vaillancourt.ca",
100716 103621 "name": "Vaillancourt Portes et Fenêtres",
@@ -102297,6 +105202,37 @@
102297 105202 "status": "verified",
102298 105203 "enabled": false
102299 105204 },
105205 + {
105206 + "id": "verredonge.com",
105207 + "name": "Verre d'Onge",
105208 + "url": "https://www.verredonge.com",
105209 + "platform": "",
105210 + "catalog_endpoint": "",
105211 + "city": "",
105212 + "region": "",
105213 + "postal_prefix": null,
105214 + "phone": null,
105215 + "origin_class": "A",
105216 + "origin_confidence": 0.6,
105217 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
105218 + "categories": [
105219 + "art"
105220 + ],
105221 + "socials": [
105222 + "instagram.com"
105223 + ],
105224 + "discovery_sources": [
105225 + "search_sweep_cmaq"
105226 + ],
105227 + "discovery_source_urls": [
105228 + "Verre d'Onge Jérémie St-Onge artiste verrier québec"
105229 + ],
105230 + "language": "en",
105231 + "ecommerce": true,
105232 + "verification_date": "2026-08-12",
105233 + "status": "probable",
105234 + "enabled": false
105235 + },
102300 105236 {
102301 105237 "id": "verrelime.ca",
102302 105238 "name": "Verre lime",
@@ -103864,7 +106800,7 @@
103864 106800 },
103865 106801 {
103866 106802 "id": "volprive.ca",
103867 − "name": "Vol Privé",
106803 + "name": "Volprivé inc.",
103868 106804 "url": "https://volprive.ca",
103869 106805 "platform": "shopify",
103870 106806 "catalog_endpoint": "/products.json",
@@ -103873,23 +106809,27 @@
103873 106809 "postal_prefix": null,
103874 106810 "phone": "514-927-8662",
103875 106811 "origin_class": "A",
103876 − "origin_confidence": 0.55,
103877 − "origin_evidence": "Trouvé par balayage de recherche ciblé (fabricant/artisan QC) ; le site affiche une mention de fabrication québécoise",
103878 − "categories": [],
106812 + "origin_confidence": 0.9,
106813 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel) ; le site affiche une mention de fabrication québécoise",
106814 + "categories": [
106815 + "art"
106816 + ],
103879 106817 "socials": [
103880 106818 "facebook.com",
103881 106819 "instagram.com"
103882 106820 ],
103883 106821 "discovery_sources": [
106822 + "search_sweep_cmaq",
103884 106823 "search_sweep_nonfood"
103885 106824 ],
103886 106825 "discovery_source_urls": [
106826 + "Volprivé Marie-Claude Roulier couturier québec",
103887 106827 "couvertures jetées textile laine fabriqué au Québec boutique en ligne"
103888 106828 ],
103889 106829 "language": null,
103890 106830 "ecommerce": true,
103891 106831 "verification_date": "2026-08-12",
103892 − "status": "probable",
106832 + "status": "verified",
103893 106833 "enabled": true
103894 106834 },
103895 106835 {
@@ -104199,7 +107139,9 @@
104199 107139 "origin_class": "A",
104200 107140 "origin_confidence": 0.6,
104201 107141 "origin_evidence": "Entreprise adhérente à la certification Les Produits du Québec (fabrication/conception vérifiée au Québec) ; aucun signal de localisation québécoise détecté sur le site (à vérifier)",
104202 − "categories": [],
107142 + "categories": [
107143 + "art"
107144 + ],
104203 107145 "socials": [
104204 107146 "https://www.facebook.com/lesproduitsduqc",
104205 107147 "https://www.linkedin.com/company/les-produits-du-qu%C3%A9bec/",
@@ -104207,10 +107149,12 @@
104207 107149 "https://www.instagram.com/lesproduitsduqc/"
104208 107150 ],
104209 107151 "discovery_sources": [
104210 − "lesproduitsduquebec_ent"
107152 + "lesproduitsduquebec_ent",
107153 + "search_sweep_cmaq"
104211 107154 ],
104212 107155 "discovery_source_urls": [
104213 − "https://lesproduitsduquebec.com/entreprises-adherentes/wallaby-boomerangs-cmaq"
107156 + "https://lesproduitsduquebec.com/entreprises-adherentes/wallaby-boomerangs-cmaq",
107157 + "Wallaby boomerangs Stéphane Marguerite québec"
104214 107158 ],
104215 107159 "language": null,
104216 107160 "ecommerce": true,
@@ -104658,6 +107602,38 @@
104658 107602 "status": "probable",
104659 107603 "enabled": true
104660 107604 },
107605 + {
107606 + "id": "yataceramiques.com",
107607 + "name": "Ya'ta' céramiques",
107608 + "url": "https://yataceramiques.com",
107609 + "platform": "wordpress",
107610 + "catalog_endpoint": "",
107611 + "city": "",
107612 + "region": "",
107613 + "postal_prefix": null,
107614 + "phone": null,
107615 + "origin_class": "A",
107616 + "origin_confidence": 0.85,
107617 + "origin_evidence": "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)",
107618 + "categories": [
107619 + "art"
107620 + ],
107621 + "socials": [
107622 + "facebook.com",
107623 + "instagram.com"
107624 + ],
107625 + "discovery_sources": [
107626 + "search_sweep_cmaq"
107627 + ],
107628 + "discovery_source_urls": [
107629 + "Ya'ta' céramiques Julie-Anne Sioui Bellefleur québec"
107630 + ],
107631 + "language": "en",
107632 + "ecommerce": false,
107633 + "verification_date": "2026-08-12",
107634 + "status": "verified",
107635 + "enabled": false
107636 + },
104661 107637 {
104662 107638 "id": "yellowshoes.com",
104663 107639 "name": "Chaussures Yellow",
added docs/screenshots/boutique-medusa.png +0 −0

Binary file not shown.

modified docs/screenshots/boutiques.png +0 −0

Binary file not shown.

added docs/screenshots/stats-mobile.png +0 −0

Binary file not shown.

added docs/screenshots/stats-page.png +0 −0

Binary file not shown.

added docs/screenshots/stats.png +0 −0

Binary file not shown.

modified fabrika/db.py +2 −1
@@ -78,7 +78,8 @@ CREATE VIRTUAL TABLE IF NOT EXISTS products_fts USING fts5(
78 78
79 79 def connect() -> sqlite3.Connection:
80 80 DB_PATH.parent.mkdir(parents=True, exist_ok=True)
81 − con = sqlite3.connect(DB_PATH)
81 + con = sqlite3.connect(DB_PATH, timeout=60)
82 + con.execute("PRAGMA busy_timeout=60000")
82 83 con.row_factory = sqlite3.Row
83 84 con.executescript(_SCHEMA)
84 85 return con
modified fabrika/web.py +115 −1
@@ -129,7 +129,8 @@ def stores(region: str | None = None, platform: str | None = None,
129 129 where.append("product_count>0")
130 130 rows = q(con, f"""SELECT id, name, url, platform, city, region, origin_class,
131 131 origin_confidence, categories, language, product_count,
132 − last_sync, last_status
132 + last_sync, last_status, logo_url, cover_url,
133 + description_meta
133 134 FROM stores WHERE {' AND '.join(where)}
134 135 ORDER BY product_count DESC, name""", args)
135 136 for r in rows:
@@ -149,6 +150,28 @@ def store_detail(store_id: str):
149 150 s = rows[0]
150 151 for k in ("categories", "socials", "discovery_sources"):
151 152 s[k] = json.loads(s.get(k) or "[]")
153 + # statistiques produits
154 + stats = q(con, """SELECT COUNT(*) AS n, MIN(price) AS price_min,
155 + MAX(price) AS price_max, AVG(price) AS price_avg
156 + FROM products WHERE store_id=? AND active=1 AND price>0""",
157 + (store_id,))
158 + s["product_stats"] = stats[0] if stats else {}
159 + s["category_breakdown"] = q(con, """SELECT category AS key, COUNT(*) AS n
160 + FROM products WHERE store_id=? AND active=1 GROUP BY category
161 + ORDER BY n DESC LIMIT 8""", (store_id,))
162 + for c in s["category_breakdown"]:
163 + c["label"] = CATEGORIES.get(c["key"], (c["key"], []))[0]
164 + # boutiques similaires : même catégorie dominante ou même région, avec produits
165 + topcat = s["category_breakdown"][0]["key"] if s["category_breakdown"] else None
166 + s["similar"] = q(con, """
167 + SELECT DISTINCT st.id, st.name, st.region, st.origin_class, st.logo_url,
168 + st.product_count
169 + FROM stores st
170 + LEFT JOIN products p ON p.store_id=st.id AND p.active=1 AND p.category=?
171 + WHERE st.id<>? AND st.product_count>0
172 + AND (p.uid IS NOT NULL OR (st.region<>'' AND st.region=?))
173 + ORDER BY (st.region=?) DESC, st.product_count DESC LIMIT 8""",
174 + (topcat, store_id, s.get("region") or "", s.get("region") or ""))
152 175 return s
153 176 finally:
154 177 con.close()
@@ -176,6 +199,97 @@ def facets():
176 199 con.close()
177 200
178 201
202 +_stats_cache: dict = {"ts": 0.0, "data": None}
203 +
204 +
205 +@app.get("/api/stats/extended")
206 +def stats_extended():
207 + """Statistiques riches pour la page /stats : prix, catégories, croissance.
208 + Coûteux (médianes) → cache mémoire 10 minutes."""
209 + import time as _time
210 + if _stats_cache["data"] is not None and _time.time() - _stats_cache["ts"] < 600:
211 + return _stats_cache["data"]
212 + con = db.connect()
213 + try:
214 + def median_price(where_sql, args):
215 + n = con.execute(f"SELECT COUNT(*) FROM products WHERE {where_sql} AND price>0", args).fetchone()[0]
216 + if not n:
217 + return None
218 + row = con.execute(f"""SELECT price FROM products WHERE {where_sql} AND price>0
219 + ORDER BY price LIMIT 1 OFFSET ?""", args + [n // 2]).fetchone()
220 + return row[0] if row else None
221 +
222 + by_category = []
223 + for r in q(con, """SELECT category AS key, COUNT(*) AS products,
224 + COUNT(DISTINCT store_id) AS stores,
225 + MIN(CASE WHEN price>0 THEN price END) AS price_min,
226 + ROUND(AVG(CASE WHEN price>0 THEN price END),2) AS price_avg,
227 + MAX(price) AS price_max
228 + FROM products WHERE active=1 GROUP BY category
229 + ORDER BY products DESC"""):
230 + r["label"] = CATEGORIES.get(r["key"], (r["key"], []))[0]
231 + r["price_median"] = median_price("active=1 AND category=?", [r["key"]])
232 + by_category.append(r)
233 +
234 + global_median = median_price("active=1", [])
235 + price_buckets = q(con, """SELECT CASE
236 + WHEN price < 10 THEN '0-10'
237 + WHEN price < 25 THEN '10-25'
238 + WHEN price < 50 THEN '25-50'
239 + WHEN price < 100 THEN '50-100'
240 + WHEN price < 250 THEN '100-250'
241 + WHEN price < 1000 THEN '250-1000'
242 + ELSE '1000+' END AS bucket, COUNT(*) AS n
243 + FROM products WHERE active=1 AND price>0 GROUP BY bucket""")
244 + order = ['0-10', '10-25', '25-50', '50-100', '100-250', '250-1000', '1000+']
245 + price_buckets.sort(key=lambda b: order.index(b["bucket"]))
246 +
247 + by_origin = q(con, """SELECT s.origin_class AS key, COUNT(DISTINCT s.id) AS stores,
248 + COUNT(p.uid) AS products
249 + FROM stores s LEFT JOIN products p
250 + ON p.store_id=s.id AND p.active=1
251 + GROUP BY s.origin_class ORDER BY products DESC""")
252 + by_platform = q(con, """SELECT platform AS key, COUNT(*) AS stores,
253 + SUM(product_count) AS products
254 + FROM stores WHERE platform<>'' GROUP BY platform
255 + ORDER BY products DESC""")
256 + by_region = q(con, """SELECT s.region AS key, COUNT(DISTINCT s.id) AS stores,
257 + COUNT(p.uid) AS products,
258 + ROUND(AVG(CASE WHEN p.price>0 THEN p.price END),2) AS price_avg
259 + FROM stores s LEFT JOIN products p
260 + ON p.store_id=s.id AND p.active=1
261 + WHERE s.region<>'' GROUP BY s.region ORDER BY products DESC""")
262 + growth = q(con, """SELECT date(first_seen,'unixepoch') AS day, COUNT(*) AS n
263 + FROM products WHERE active=1
264 + GROUP BY day ORDER BY day DESC LIMIT 30""")
265 + top_stores = q(con, """SELECT id, name, region, origin_class, logo_url,
266 + product_count AS products
267 + FROM stores WHERE product_count>0
268 + ORDER BY product_count DESC LIMIT 15""")
269 + most_expensive = q(con, """SELECT p.uid, p.title, p.price, s.name AS store_name
270 + FROM products p JOIN stores s ON s.id=p.store_id
271 + WHERE p.active=1 AND p.price>0
272 + ORDER BY p.price DESC LIMIT 8""")
273 + totals = q(con, """SELECT
274 + (SELECT COUNT(*) FROM products WHERE active=1) AS products,
275 + (SELECT COUNT(*) FROM products WHERE active=1 AND price>0) AS products_priced,
276 + (SELECT COUNT(*) FROM stores WHERE product_count>0) AS stores_live,
277 + (SELECT COUNT(*) FROM stores) AS stores_registry,
278 + (SELECT COUNT(DISTINCT region) FROM stores WHERE region<>'') AS regions,
279 + (SELECT ROUND(AVG(price),2) FROM products WHERE active=1 AND price>0) AS price_avg
280 + """)[0]
281 + totals["price_median"] = global_median
282 + data = {"totals": totals, "by_category": by_category,
283 + "price_buckets": price_buckets, "by_origin": by_origin,
284 + "by_platform": by_platform, "by_region": by_region,
285 + "growth": growth, "top_stores": top_stores,
286 + "most_expensive": most_expensive}
287 + _stats_cache.update(ts=_time.time(), data=data)
288 + return data
289 + finally:
290 + con.close()
291 +
292 +
179 293 @app.get("/api/stats")
180 294 def stats():
181 295 con = db.connect()
modified frontend/src/App.tsx +4 −0
@@ -7,6 +7,7 @@ import Catalog from './pages/Catalog'
7 7 import Home from './pages/Home'
8 8 import NotFound from './pages/NotFound'
9 9 import ProductDetail from './pages/ProductDetail'
10 +import Stats from './pages/Stats'
10 11 import StoreDetail from './pages/StoreDetail'
11 12 import Stores from './pages/Stores'
12 13
@@ -43,6 +44,7 @@ function Header() {
43 44 <nav className="site-nav" aria-label="Navigation principale">
44 45 <NavLink to="/produits">Produits</NavLink>
45 46 <NavLink to="/boutiques">Boutiques</NavLink>
47 + <NavLink to="/stats">Stats</NavLink>
46 48 <NavLink to="/a-propos">À propos</NavLink>
47 49 </nav>
48 50 <div className="site-header-search">
@@ -80,6 +82,7 @@ function Footer() {
80 82 <Link to="/produits">Produits</Link>
81 83 <Link to="/boutiques">Boutiques</Link>
82 84 <Link to="/produits?sort=recent">Nouveautés</Link>
85 + <Link to="/stats">Stats</Link>
83 86 </nav>
84 87 <nav className="footer-col" aria-label="Fabri-Ka">
85 88 <span className="footer-col-title">Fabri-Ka</span>
@@ -106,6 +109,7 @@ export default function App() {
106 109 <Route path="/produits/:uid" element={<ProductDetail />} />
107 110 <Route path="/boutiques" element={<Stores />} />
108 111 <Route path="/boutiques/:id" element={<StoreDetail />} />
112 + <Route path="/stats" element={<Stats />} />
109 113 <Route path="/a-propos" element={<About />} />
110 114 <Route path="*" element={<NotFound />} />
111 115 </Routes>
modified frontend/src/api.ts +165 −1
@@ -46,14 +46,42 @@ export interface Store {
46 46 origin_class: OriginClass
47 47 categories: string[]
48 48 product_count: number
49 − last_sync: string | null
49 + last_sync: number | string | null
50 50 last_status: string | null
51 + logo_url: string | null
52 + cover_url: string | null
53 + description_meta: string | null
54 +}
55 +
56 +export interface StoreProductStats {
57 + n: number
58 + price_min: number | null
59 + price_max: number | null
60 + price_avg: number | null
61 +}
62 +
63 +export interface StoreCategoryCount {
64 + key: string | null
65 + n: number
66 + label: string
67 +}
68 +
69 +export interface SimilarStore {
70 + id: string
71 + name: string
72 + region: string | null
73 + origin_class: OriginClass
74 + logo_url: string | null
75 + product_count: number
51 76 }
52 77
53 78 export interface StoreDetail extends Store {
54 79 origin_evidence?: string | null
55 80 discovery_sources?: string[]
56 81 socials?: Record<string, string>
82 + product_stats: StoreProductStats
83 + category_breakdown: StoreCategoryCount[]
84 + similar: SimilarStore[]
57 85 }
58 86
59 87 export interface StoresResponse {
@@ -120,6 +148,88 @@ export interface Stats {
120 148 sync_log: SyncLogEntry[]
121 149 }
122 150
151 +// ---------------------------------------------------------------------------
152 +// Extended stats (/api/stats/extended) — page /stats
153 +// ---------------------------------------------------------------------------
154 +
155 +export interface ExtendedTotals {
156 + products: number
157 + products_priced: number
158 + stores_live: number
159 + stores_registry: number
160 + regions: number
161 + price_avg: number | null
162 + price_median: number | null
163 +}
164 +
165 +export interface CategoryStat {
166 + key: string
167 + label: string
168 + products: number
169 + stores: number
170 + price_min: number | null
171 + price_avg: number | null
172 + price_max: number | null
173 + price_median: number | null
174 +}
175 +
176 +export interface PriceBucket {
177 + bucket: string
178 + n: number
179 +}
180 +
181 +export interface OriginStat {
182 + key: string
183 + stores: number
184 + products: number
185 +}
186 +
187 +export interface PlatformStat {
188 + key: string
189 + stores: number
190 + products: number | null
191 +}
192 +
193 +export interface RegionStat {
194 + key: string
195 + stores: number
196 + products: number
197 + price_avg: number | null
198 +}
199 +
200 +export interface GrowthPoint {
201 + day: string
202 + n: number
203 +}
204 +
205 +export interface TopStore {
206 + id: string
207 + name: string
208 + region: string | null
209 + origin_class: OriginClass
210 + logo_url: string | null
211 + products: number
212 +}
213 +
214 +export interface ExpensiveProduct {
215 + uid: string
216 + title: string
217 + price: number
218 + store_name: string
219 +}
220 +
221 +export interface ExtendedStats {
222 + totals: ExtendedTotals
223 + by_category: CategoryStat[]
224 + price_buckets: PriceBucket[]
225 + by_origin: OriginStat[]
226 + by_platform: PlatformStat[]
227 + by_region: RegionStat[]
228 + growth: GrowthPoint[]
229 + top_stores: TopStore[]
230 + most_expensive: ExpensiveProduct[]
231 +}
232 +
123 233 // ---------------------------------------------------------------------------
124 234 // Origin classes
125 235 // ---------------------------------------------------------------------------
@@ -224,6 +334,12 @@ export function fetchStats(signal?: AbortSignal): Promise<Stats> {
224 334 return getJson<Stats>('/api/stats', signal)
225 335 }
226 336
337 +export function fetchExtendedStats(
338 + signal?: AbortSignal
339 +): Promise<ExtendedStats> {
340 + return getJson<ExtendedStats>('/api/stats/extended', signal)
341 +}
342 +
227 343 // ---------------------------------------------------------------------------
228 344 // Formatting helpers (fr-CA)
229 345 // ---------------------------------------------------------------------------
@@ -238,6 +354,18 @@ export function formatPrice(value: number | null | undefined): string {
238 354 return cadFormatter.format(value)
239 355 }
240 356
357 +const cadCompactFormatter = new Intl.NumberFormat('fr-CA', {
358 + style: 'currency',
359 + currency: 'CAD',
360 + maximumFractionDigits: 0,
361 +})
362 +
363 +/** "1 250 $" — compact price without cents (ranges, chart labels). */
364 +export function formatPriceCompact(value: number | null | undefined): string {
365 + if (value === null || value === undefined || Number.isNaN(value)) return ''
366 + return cadCompactFormatter.format(value)
367 +}
368 +
241 369 const intFormatter = new Intl.NumberFormat('fr-CA')
242 370
243 371 export function formatInt(value: number | null | undefined): string {
@@ -245,6 +373,42 @@ export function formatInt(value: number | null | undefined): string {
245 373 return intFormatter.format(value)
246 374 }
247 375
376 +const relativeFormatter = new Intl.RelativeTimeFormat('fr-CA', {
377 + numeric: 'auto',
378 +})
379 +
380 +/**
381 + * "il y a 3 jours" — accepts an epoch (seconds or ms) or an ISO string.
382 + * Returns null when the value is missing or unparseable.
383 + */
384 +export function formatRelativeDate(
385 + value: number | string | null | undefined
386 +): string | null {
387 + if (value === null || value === undefined || value === '') return null
388 + let ms: number
389 + if (typeof value === 'number') {
390 + ms = value > 1e12 ? value : value * 1000
391 + } else {
392 + const parsed = Date.parse(value)
393 + if (!Number.isNaN(parsed)) {
394 + ms = parsed
395 + } else {
396 + const n = Number(value)
397 + if (Number.isNaN(n)) return null
398 + ms = n > 1e12 ? n : n * 1000
399 + }
400 + }
401 + if (!Number.isFinite(ms) || ms <= 0) return null
402 + const diffSec = Math.round((ms - Date.now()) / 1000)
403 + const abs = Math.abs(diffSec)
404 + if (abs < 60) return relativeFormatter.format(diffSec, 'second')
405 + if (abs < 3600) return relativeFormatter.format(Math.round(diffSec / 60), 'minute')
406 + if (abs < 86400) return relativeFormatter.format(Math.round(diffSec / 3600), 'hour')
407 + if (abs < 86400 * 30) return relativeFormatter.format(Math.round(diffSec / 86400), 'day')
408 + if (abs < 86400 * 365) return relativeFormatter.format(Math.round(diffSec / (86400 * 30)), 'month')
409 + return relativeFormatter.format(Math.round(diffSec / (86400 * 365)), 'year')
410 +}
411 +
248 412 export function hostnameOf(url: string): string {
249 413 try {
250 414 return new URL(url).hostname.replace(/^www\./, '')
modified frontend/src/components/Icons.tsx +18 −0
@@ -193,6 +193,24 @@ export function IconCandle(props: IconProps) {
193 193 )
194 194 }
195 195
196 +export function IconInstagram(props: IconProps) {
197 + return (
198 + <Svg {...props}>
199 + <rect x="4" y="4" width="16" height="16" rx="4.5" />
200 + <circle cx="12" cy="12" r="3.6" />
201 + <circle cx="16.9" cy="7.1" r="0.55" fill="currentColor" />
202 + </Svg>
203 + )
204 +}
205 +
206 +export function IconFacebook(props: IconProps) {
207 + return (
208 + <Svg {...props}>
209 + <path d="M13.5 20.5v-6.8h2.6l.4-3.1h-3V8.5c0-.9.45-1.6 1.7-1.6h1.5v-2.8c-.65-.1-1.4-.2-2.2-.2-2.3 0-3.9 1.4-3.9 4v2.7H8v3.1h2.6v6.8" />
210 + </Svg>
211 + )
212 +}
213 +
196 214 export function IconTag(props: IconProps) {
197 215 return (
198 216 <Svg {...props}>
modified frontend/src/components/StoreCard.tsx +11 −2
@@ -2,15 +2,24 @@ import { Link } from 'react-router-dom'
2 2 import { formatInt, hostnameOf, Store } from '../api'
3 3 import { IconMapPin } from './Icons'
4 4 import OriginBadge from './OriginBadge'
5 +import StoreLogo from './StoreLogo'
5 6
6 7 export default function StoreCard({ store }: { store: Store }) {
7 8 return (
8 9 <Link to={`/boutiques/${encodeURIComponent(store.id)}`} className="card store-card">
9 10 <div className="store-card-top">
10 − <h3 className="store-card-name">{store.name}</h3>
11 + <StoreLogo
12 + storeId={store.id}
13 + name={store.name}
14 + logoUrl={store.logo_url}
15 + size="md"
16 + />
17 + <div className="store-card-heading">
18 + <h3 className="store-card-name">{store.name}</h3>
19 + <p className="store-card-domain">{hostnameOf(store.url)}</p>
20 + </div>
11 21 <OriginBadge origin={store.origin_class} />
12 22 </div>
13 − <p className="store-card-domain">{hostnameOf(store.url)}</p>
14 23 <p className="store-card-location">
15 24 <IconMapPin size={14} />
16 25 {[store.city, store.region].filter(Boolean).join(', ') || 'Québec'}
added frontend/src/components/StoreLogo.tsx +86 −0
@@ -0,0 +1,86 @@
1 +import { useState } from 'react'
2 +
3 +// ---------------------------------------------------------------------------
4 +// StoreLogo — circular store avatar.
5 +// Renders logo_url when available; falls back to a deterministic
6 +// initial-letter avatar (never a broken-image icon).
7 +// ---------------------------------------------------------------------------
8 +
9 +export type StoreLogoSize = 'sm' | 'md' | 'lg'
10 +
11 +// Small palette in the Fabri-Ka register (pine / terracotta / earth tones).
12 +const AVATAR_COLORS = [
13 + '#234438', // pine
14 + '#C4532E', // terracotta
15 + '#8A6D3B', // ochre
16 + '#5B5B8A', // slate violet
17 + '#A94525', // dark terracotta
18 + '#3E6253', // sage pine
19 +]
20 +
21 +function hashString(s: string): number {
22 + let h = 0
23 + for (let i = 0; i < s.length; i++) {
24 + h = (h * 31 + s.charCodeAt(i)) | 0
25 + }
26 + return Math.abs(h)
27 +}
28 +
29 +interface StoreLogoProps {
30 + storeId: string
31 + name: string
32 + logoUrl?: string | null
33 + size?: StoreLogoSize
34 + /** white ring + soft shadow (hero usage) */
35 + ring?: boolean
36 + className?: string
37 +}
38 +
39 +export default function StoreLogo({
40 + storeId,
41 + name,
42 + logoUrl,
43 + size = 'md',
44 + ring = false,
45 + className,
46 +}: StoreLogoProps) {
47 + // track the failed URL (not a boolean) so navigation between stores
48 + // that reuses this component instance retries the new logo.
49 + const [failedUrl, setFailedUrl] = useState<string | null>(null)
50 +
51 + const cls = [
52 + 'store-logo',
53 + `store-logo-${size}`,
54 + ring ? 'store-logo-ring' : '',
55 + className ?? '',
56 + ]
57 + .filter(Boolean)
58 + .join(' ')
59 +
60 + if (logoUrl && failedUrl !== logoUrl) {
61 + return (
62 + <span className={cls}>
63 + <img
64 + src={logoUrl}
65 + alt={`Logo ${name}`}
66 + loading="lazy"
67 + decoding="async"
68 + onError={() => setFailedUrl(logoUrl)}
69 + />
70 + </span>
71 + )
72 + }
73 +
74 + const color = AVATAR_COLORS[hashString(storeId) % AVATAR_COLORS.length]
75 + const letter = (name.trim().charAt(0) || 'F').toUpperCase()
76 + return (
77 + <span
78 + className={`${cls} store-logo-fallback`}
79 + style={{ background: color }}
80 + role="img"
81 + aria-label={`Logo ${name}`}
82 + >
83 + {letter}
84 + </span>
85 + )
86 +}
modified frontend/src/pages/Home.tsx +3 −0
@@ -118,6 +118,9 @@ export default function Home() {
118 118 </>
119 119 )}
120 120 </div>
121 + <Link className="hero-stats-link" to="/stats">
122 + Statistiques <IconArrowRight size={14} />
123 + </Link>
121 124 </section>
122 125
123 126 <section className="home-categories" aria-label="Catégories">
modified frontend/src/pages/ProductDetail.tsx +21 −11
@@ -11,6 +11,7 @@ import { IconExternal, IconLeaf } from '../components/Icons'
11 11 import OriginBadge from '../components/OriginBadge'
12 12 import ProductCard from '../components/ProductCard'
13 13 import Skeleton from '../components/Skeleton'
14 +import StoreLogo from '../components/StoreLogo'
14 15
15 16 const DESCRIPTION_CLAMP = 280
16 17
@@ -265,17 +266,26 @@ export default function ProductDetail() {
265 266
266 267 <div className="card store-info-card">
267 268 <span className="filter-label">Boutique</span>
268 − <Link
269 − to={`/boutiques/${encodeURIComponent(product.store_id)}`}
270 − className="store-info-name"
271 − >
272 − {product.store_name}
273 − </Link>
274 − <p className="store-info-location">
275 − {[product.store_city, product.store_region]
276 − .filter(Boolean)
277 − .join(', ') || 'Québec'}
278 − </p>
269 + <div className="store-info-row">
270 + <StoreLogo
271 + storeId={product.store_id}
272 + name={product.store_name}
273 + size="sm"
274 + />
275 + <div className="store-info-text">
276 + <Link
277 + to={`/boutiques/${encodeURIComponent(product.store_id)}`}
278 + className="store-info-name"
279 + >
280 + {product.store_name}
281 + </Link>
282 + <p className="store-info-location">
283 + {[product.store_city, product.store_region]
284 + .filter(Boolean)
285 + .join(', ') || 'Québec'}
286 + </p>
287 + </div>
288 + </div>
279 289 </div>
280 290 </div>
281 291 </div>
added frontend/src/pages/Stats.tsx +598 −0
@@ -0,0 +1,598 @@
1 +import { useEffect, useMemo, useState } from 'react'
2 +import { Link } from 'react-router-dom'
3 +import {
4 + ExtendedStats,
5 + fetchExtendedStats,
6 + formatInt,
7 + formatPrice,
8 + formatPriceCompact,
9 + GrowthPoint,
10 + ORIGIN_KEYS,
11 + ORIGIN_LABELS,
12 +} from '../api'
13 +import CountUp from '../components/CountUp'
14 +import EmptyState from '../components/EmptyState'
15 +import OriginBadge from '../components/OriginBadge'
16 +import Skeleton from '../components/Skeleton'
17 +import StoreLogo from '../components/StoreLogo'
18 +
19 +const DEFAULT_TITLE = 'Fabri-Ka — Tous les produits québécois. Un seul endroit.'
20 +
21 +// ---------------------------------------------------------------------------
22 +// Formatting helpers local to the stats page
23 +// ---------------------------------------------------------------------------
24 +
25 +const percentFormatter = new Intl.NumberFormat('fr-CA', {
26 + style: 'percent',
27 + maximumFractionDigits: 1,
28 +})
29 +
30 +function formatShare(part: number, total: number): string {
31 + if (!total) return ''
32 + return percentFormatter.format(part / total)
33 +}
34 +
35 +const dayFormatter = new Intl.DateTimeFormat('fr-CA', {
36 + day: 'numeric',
37 + month: 'short',
38 +})
39 +
40 +function formatDay(day: string): string {
41 + const d = new Date(`${day}T00:00:00`)
42 + return Number.isNaN(d.getTime()) ? day : dayFormatter.format(d)
43 +}
44 +
45 +const BUCKET_LABELS: Record<string, string> = {
46 + '0-10': 'Moins de 10 $',
47 + '10-25': '10 – 25 $',
48 + '25-50': '25 – 50 $',
49 + '50-100': '50 – 100 $',
50 + '100-250': '100 – 250 $',
51 + '250-1000': '250 – 1 000 $',
52 + '1000+': '1 000 $ et plus',
53 +}
54 +
55 +// ---------------------------------------------------------------------------
56 +// Growth — hand-rolled SVG area chart (terracotta line on sand fill)
57 +// ---------------------------------------------------------------------------
58 +
59 +function GrowthChart({ points }: { points: GrowthPoint[] }) {
60 + // API returns the last 30 days DESC → plot ASC.
61 + const asc = [...points].sort((a, b) => a.day.localeCompare(b.day))
62 + const W = 640
63 + const H = 200
64 + const PAD_X = 8
65 + const PAD_TOP = 26
66 + const PAD_BOTTOM = 26
67 + const innerW = W - PAD_X * 2
68 + const innerH = H - PAD_TOP - PAD_BOTTOM
69 + const baseline = H - PAD_BOTTOM
70 +
71 + const max = Math.max(...asc.map((p) => p.n), 1)
72 + const min = Math.min(...asc.map((p) => p.n))
73 + const x = (i: number) =>
74 + PAD_X + (asc.length > 1 ? (i * innerW) / (asc.length - 1) : innerW / 2)
75 + const y = (n: number) => PAD_TOP + (1 - n / max) * innerH
76 +
77 + const line = asc
78 + .map((p, i) => `${i === 0 ? 'M' : 'L'}${x(i).toFixed(1)},${y(p.n).toFixed(1)}`)
79 + .join(' ')
80 + const area = `${line} L${x(asc.length - 1).toFixed(1)},${baseline} L${x(0).toFixed(1)},${baseline} Z`
81 +
82 + const maxIdx = asc.findIndex((p) => p.n === max)
83 + const minIdx = asc.findIndex((p) => p.n === min)
84 + const clampX = (v: number) => Math.min(W - 30, Math.max(30, v))
85 +
86 + return (
87 + <figure className="stats-growth-figure">
88 + <svg
89 + viewBox={`0 0 ${W} ${H}`}
90 + className="stats-growth-svg"
91 + role="img"
92 + aria-label={`Produits ajoutés par jour, du ${formatDay(asc[0].day)} au ${formatDay(asc[asc.length - 1].day)}. Maximum ${formatInt(max)}, minimum ${formatInt(min)}.`}
93 + >
94 + <line
95 + x1={PAD_X}
96 + y1={baseline}
97 + x2={W - PAD_X}
98 + y2={baseline}
99 + className="stats-growth-baseline"
100 + />
101 + <path d={area} className="stats-growth-area" />
102 + <path d={line} className="stats-growth-line" />
103 +
104 + {/* min/max direct labels only — no axis machinery */}
105 + <circle cx={x(maxIdx)} cy={y(max)} r={3.5} className="stats-growth-dot" />
106 + <text
107 + x={clampX(x(maxIdx))}
108 + y={y(max) - 9}
109 + textAnchor="middle"
110 + className="stats-growth-label"
111 + >
112 + {formatInt(max)}
113 + </text>
114 + {minIdx !== maxIdx && (
115 + <>
116 + <circle
117 + cx={x(minIdx)}
118 + cy={y(min)}
119 + r={3}
120 + className="stats-growth-dot stats-growth-dot-min"
121 + />
122 + <text
123 + x={clampX(x(minIdx))}
124 + y={Math.min(y(min) + 16, baseline - 4)}
125 + textAnchor="middle"
126 + className="stats-growth-label"
127 + >
128 + {formatInt(min)}
129 + </text>
130 + </>
131 + )}
132 +
133 + <text x={PAD_X} y={H - 8} className="stats-growth-axis">
134 + {formatDay(asc[0].day)}
135 + </text>
136 + <text x={W - PAD_X} y={H - 8} textAnchor="end" className="stats-growth-axis">
137 + {formatDay(asc[asc.length - 1].day)}
138 + </text>
139 +
140 + {/* hover layer: one generous hit target per point */}
141 + {asc.map((p, i) => (
142 + <circle key={p.day} cx={x(i)} cy={y(p.n)} r={9} fill="transparent">
143 + <title>{`${formatDay(p.day)} — ${formatInt(p.n)} produit${p.n > 1 ? 's' : ''}`}</title>
144 + </circle>
145 + ))}
146 + </svg>
147 + </figure>
148 + )
149 +}
150 +
151 +// ---------------------------------------------------------------------------
152 +// Page
153 +// ---------------------------------------------------------------------------
154 +
155 +export default function Stats() {
156 + const [stats, setStats] = useState<ExtendedStats | null>(null)
157 + const [error, setError] = useState(false)
158 +
159 + useEffect(() => {
160 + const controller = new AbortController()
161 + fetchExtendedStats(controller.signal)
162 + .then(setStats)
163 + .catch((err: unknown) => {
164 + if (err instanceof DOMException && err.name === 'AbortError') return
165 + setError(true)
166 + })
167 + window.scrollTo({ top: 0 })
168 + return () => controller.abort()
169 + }, [])
170 +
171 + useEffect(() => {
172 + document.title = 'Statistiques — Fabri-Ka'
173 + return () => {
174 + document.title = DEFAULT_TITLE
175 + }
176 + }, [])
177 +
178 + const generatedOn = useMemo(
179 + () =>
180 + new Intl.DateTimeFormat('fr-CA', { dateStyle: 'long' }).format(new Date()),
181 + []
182 + )
183 +
184 + if (error) {
185 + return (
186 + <div className="page stats">
187 + <EmptyState
188 + variant="error"
189 + title="Statistiques indisponibles"
190 + message="Impossible de charger les statistiques pour le moment. Réessayez dans quelques instants."
191 + >
192 + <Link className="btn btn-secondary" to="/">
193 + Retour à l'accueil
194 + </Link>
195 + </EmptyState>
196 + </div>
197 + )
198 + }
199 +
200 + const totals = stats?.totals
201 + const bucketMax = stats
202 + ? Math.max(...stats.price_buckets.map((b) => b.n), 1)
203 + : 1
204 + const regionMax = stats
205 + ? Math.max(...stats.by_region.map((r) => r.products), 1)
206 + : 1
207 + // fixed A→E order (identity colors follow the entity, never its rank)
208 + const originRows = stats
209 + ? ORIGIN_KEYS.flatMap((key) => {
210 + const stat = stats.by_origin.find((o) => o.key === key)
211 + return stat && (stat.products > 0 || stat.stores > 0)
212 + ? [{ key, stat }]
213 + : []
214 + })
215 + : []
216 + const originTotal = originRows.reduce((sum, r) => sum + r.stat.products, 0)
217 +
218 + return (
219 + <div className="page stats">
220 + {/* 1 — editorial header */}
221 + <section className="stats-hero">
222 + <p className="hero-eyebrow">Statistiques</p>
223 + <h1 className="stats-hero-title">
224 + Le Québec qui vend en ligne, <em>en chiffres.</em>
225 + </h1>
226 + <p className="stats-hero-sub">
227 + Portrait généré à partir des catalogues publics agrégés par Fabri-Ka —
228 + données au {generatedOn}, recalculées en continu.
229 + </p>
230 + </section>
231 +
232 + {/* 2 — KPI tiles */}
233 + <section className="stats-kpis" aria-label="Chiffres clés">
234 + {totals ? (
235 + <>
236 + <div className="stats-kpi">
237 + <span className="stats-kpi-value">
238 + <CountUp value={totals.products} />
239 + </span>
240 + <span className="stats-kpi-label">Produits</span>
241 + </div>
242 + <div className="stats-kpi">
243 + <span className="stats-kpi-value">
244 + <CountUp value={totals.stores_live} />
245 + </span>
246 + <span className="stats-kpi-label">Boutiques actives</span>
247 + </div>
248 + <div className="stats-kpi">
249 + <span className="stats-kpi-value">
250 + <CountUp value={totals.stores_registry} />
251 + </span>
252 + <span className="stats-kpi-label">Boutiques au registre</span>
253 + </div>
254 + <div className="stats-kpi">
255 + <span className="stats-kpi-value">
256 + <CountUp value={totals.regions} />
257 + </span>
258 + <span className="stats-kpi-label">Régions</span>
259 + </div>
260 + <div className="stats-kpi">
261 + <span className="stats-kpi-value">
262 + {formatPrice(totals.price_median) || '—'}
263 + </span>
264 + <span className="stats-kpi-label">Prix médian</span>
265 + </div>
266 + <div className="stats-kpi">
267 + <span className="stats-kpi-value">
268 + {formatPrice(totals.price_avg) || '—'}
269 + </span>
270 + <span className="stats-kpi-label">Prix moyen</span>
271 + </div>
272 + </>
273 + ) : (
274 + Array.from({ length: 6 }, (_, i) => (
275 + <div className="stats-kpi" key={i}>
276 + <Skeleton width="80px" height="2rem" />
277 + <Skeleton width="110px" height="0.8rem" />
278 + </div>
279 + ))
280 + )}
281 + </section>
282 +
283 + {!stats ? (
284 + <div className="stats-loading" aria-hidden="true">
285 + <Skeleton height="220px" radius="12px" />
286 + <Skeleton height="320px" radius="12px" />
287 + <Skeleton height="220px" radius="12px" />
288 + </div>
289 + ) : (
290 + <>
291 + {/* 3 — price histogram */}
292 + {stats.price_buckets.length > 0 && totals && (
293 + <section className="stats-section" aria-label="Répartition des prix">
294 + <header className="section-header">
295 + <h2>Répartition des prix</h2>
296 + </header>
297 + <p className="stats-section-note">
298 + {formatInt(totals.products_priced)} produits avec prix affiché.
299 + </p>
300 + <div className="stats-bars">
301 + {stats.price_buckets.map((b) => (
302 + <div className="stats-bar-row" key={b.bucket}>
303 + <span className="stats-bar-name">
304 + {BUCKET_LABELS[b.bucket] ?? b.bucket}
305 + </span>
306 + <span className="stats-bar-track">
307 + <span
308 + className="stats-bar-fill stats-bar-fill-terracotta"
309 + style={{ width: `${(b.n / bucketMax) * 100}%` }}
310 + />
311 + </span>
312 + <span className="stats-bar-value">
313 + {formatInt(b.n)}
314 + <em>{formatShare(b.n, totals.products_priced)}</em>
315 + </span>
316 + </div>
317 + ))}
318 + </div>
319 + </section>
320 + )}
321 +
322 + {/* 4 — categories */}
323 + {stats.by_category.length > 0 && (
324 + <section className="stats-section" aria-label="Catégories">
325 + <header className="section-header">
326 + <h2>Par catégorie</h2>
327 + <Link className="section-see-all" to="/produits">
328 + Tout le catalogue
329 + </Link>
330 + </header>
331 +
332 + {/* desktop table */}
333 + <div className="stats-cat-table-wrap">
334 + <table className="stats-cat-table">
335 + <thead>
336 + <tr>
337 + <th>Catégorie</th>
338 + <th className="num">Produits ↓</th>
339 + <th className="num">Boutiques</th>
340 + <th className="num">Prix médian</th>
341 + <th className="num">Prix moyen</th>
342 + <th className="num">Fourchette</th>
343 + </tr>
344 + </thead>
345 + <tbody>
346 + {stats.by_category.map((c) => (
347 + <tr key={c.key}>
348 + <td>
349 + <Link
350 + className="stats-cat-link"
351 + to={`/produits?category=${encodeURIComponent(c.key)}`}
352 + >
353 + {c.label}
354 + </Link>
355 + </td>
356 + <td className="num">{formatInt(c.products)}</td>
357 + <td className="num">{formatInt(c.stores)}</td>
358 + <td className="num">{formatPrice(c.price_median) || '—'}</td>
359 + <td className="num">{formatPrice(c.price_avg) || '—'}</td>
360 + <td className="num stats-cat-range">
361 + {c.price_min !== null && c.price_max !== null
362 + ? `${formatPriceCompact(c.price_min)} – ${formatPriceCompact(c.price_max)}`
363 + : '—'}
364 + </td>
365 + </tr>
366 + ))}
367 + </tbody>
368 + </table>
369 + </div>
370 +
371 + {/* mobile stacked cards */}
372 + <div className="stats-cat-cards">
373 + {stats.by_category.map((c) => (
374 + <Link
375 + key={c.key}
376 + className="card stats-cat-card"
377 + to={`/produits?category=${encodeURIComponent(c.key)}`}
378 + >
379 + <div className="stats-cat-card-head">
380 + <strong>{c.label}</strong>
381 + <span className="stats-cat-card-count">
382 + {formatInt(c.products)} produits
383 + </span>
384 + </div>
385 + <dl className="stats-cat-card-grid">
386 + <div>
387 + <dt>Boutiques</dt>
388 + <dd>{formatInt(c.stores)}</dd>
389 + </div>
390 + <div>
391 + <dt>Prix médian</dt>
392 + <dd>{formatPrice(c.price_median) || '—'}</dd>
393 + </div>
394 + <div>
395 + <dt>Prix moyen</dt>
396 + <dd>{formatPrice(c.price_avg) || '—'}</dd>
397 + </div>
398 + <div>
399 + <dt>Fourchette</dt>
400 + <dd>
401 + {c.price_min !== null && c.price_max !== null
402 + ? `${formatPriceCompact(c.price_min)} – ${formatPriceCompact(c.price_max)}`
403 + : '—'}
404 + </dd>
405 + </div>
406 + </dl>
407 + </Link>
408 + ))}
409 + </div>
410 + </section>
411 + )}
412 +
413 + {/* 5 — regions */}
414 + {stats.by_region.length > 0 && (
415 + <section className="stats-section" aria-label="Régions">
416 + <header className="section-header">
417 + <h2>Par région</h2>
418 + </header>
419 + <div className="stats-regions">
420 + {stats.by_region.map((r) => (
421 + <div className="stats-region-row" key={r.key}>
422 + <div className="stats-region-head">
423 + <Link
424 + className="stats-region-name"
425 + to={`/produits?region=${encodeURIComponent(r.key)}`}
426 + >
427 + {r.key}
428 + </Link>
429 + <span className="stats-region-meta">
430 + {formatInt(r.stores)} boutique{r.stores > 1 ? 's' : ''}
431 + {r.price_avg !== null &&
432 + ` · prix moyen ${formatPriceCompact(r.price_avg)}`}
433 + </span>
434 + </div>
435 + <div className="stats-bar-row stats-bar-row-flat">
436 + <span className="stats-bar-track">
437 + <span
438 + className="stats-bar-fill stats-bar-fill-pine"
439 + style={{ width: `${(r.products / regionMax) * 100}%` }}
440 + />
441 + </span>
442 + <span className="stats-bar-value">{formatInt(r.products)}</span>
443 + </div>
444 + </div>
445 + ))}
446 + </div>
447 + </section>
448 + )}
449 +
450 + {/* 6 — growth */}
451 + {stats.growth.length > 1 && (
452 + <section className="stats-section" aria-label="Croissance">
453 + <header className="section-header">
454 + <h2>Produits ajoutés par jour (30 jours)</h2>
455 + </header>
456 + <GrowthChart points={stats.growth} />
457 + </section>
458 + )}
459 +
460 + {/* 7 — origin distribution */}
461 + {originRows.length > 0 && originTotal > 0 && (
462 + <section className="stats-section" aria-label="Origine">
463 + <header className="section-header">
464 + <h2>Par origine</h2>
465 + </header>
466 + <div
467 + className="stats-origin-bar"
468 + role="img"
469 + aria-label={originRows
470 + .map(
471 + (r) =>
472 + `${ORIGIN_LABELS[r.key]} : ${formatInt(r.stat.products)} produits`
473 + )
474 + .join(' · ')}
475 + >
476 + {originRows
477 + .filter((r) => r.stat.products > 0)
478 + .map((r) => {
479 + const pct = (r.stat.products / originTotal) * 100
480 + return (
481 + <span
482 + key={r.key}
483 + className={`stats-origin-seg origin-${r.key}`}
484 + style={{ width: `${pct}%` }}
485 + title={`${ORIGIN_LABELS[r.key]} — ${formatInt(r.stat.products)} produits (${formatShare(r.stat.products, originTotal)})`}
486 + >
487 + {pct >= 6 && (
488 + <span className="stats-origin-seg-letter">{r.key}</span>
489 + )}
490 + </span>
491 + )
492 + })}
493 + </div>
494 + <ul className="stats-origin-legend">
495 + {originRows.map((r) => (
496 + <li key={r.key}>
497 + <OriginBadge origin={r.key} withLabel />
498 + <span className="stats-origin-legend-counts">
499 + {formatInt(r.stat.stores)} boutique
500 + {r.stat.stores > 1 ? 's' : ''} ·{' '}
501 + {formatInt(r.stat.products)} produits
502 + {originTotal > 0 &&
503 + r.stat.products > 0 &&
504 + ` (${formatShare(r.stat.products, originTotal)})`}
505 + </span>
506 + </li>
507 + ))}
508 + </ul>
509 + </section>
510 + )}
511 +
512 + {/* 8 — platforms */}
513 + {stats.by_platform.length > 0 && (
514 + <section className="stats-section" aria-label="Plateformes">
515 + <header className="section-header">
516 + <h2>Plateformes</h2>
517 + </header>
518 + <div className="stats-platforms">
519 + {stats.by_platform.map((p) => (
520 + <span className="stats-platform-chip" key={p.key}>
521 + <strong>{p.key}</strong> × {formatInt(p.stores)} boutique
522 + {p.stores > 1 ? 's' : ''} ({formatInt(p.products)} produits)
523 + </span>
524 + ))}
525 + </div>
526 + </section>
527 + )}
528 +
529 + <div className="stats-columns">
530 + {/* 9 — top stores */}
531 + {stats.top_stores.length > 0 && (
532 + <section className="stats-section" aria-label="Top boutiques">
533 + <header className="section-header">
534 + <h2>Top boutiques</h2>
535 + <Link className="section-see-all" to="/boutiques">
536 + Toutes les boutiques
537 + </Link>
538 + </header>
539 + <ol className="stats-top-stores">
540 + {stats.top_stores.map((s, i) => (
541 + <li key={s.id}>
542 + <span className="stats-rank">{i + 1}</span>
543 + <StoreLogo
544 + storeId={s.id}
545 + name={s.name}
546 + logoUrl={s.logo_url}
547 + size="sm"
548 + />
549 + <span className="stats-top-store-id">
550 + <Link to={`/boutiques/${encodeURIComponent(s.id)}`}>
551 + {s.name}
552 + </Link>
553 + {s.region && (
554 + <span className="stats-top-store-region">{s.region}</span>
555 + )}
556 + </span>
557 + <span className="stats-top-store-count">
558 + {formatInt(s.products)}
559 + </span>
560 + </li>
561 + ))}
562 + </ol>
563 + </section>
564 + )}
565 +
566 + {/* 10 — most expensive */}
567 + {stats.most_expensive.length > 0 && (
568 + <section className="stats-section" aria-label="Produits les plus chers">
569 + <header className="section-header">
570 + <h2>Les plus chers</h2>
571 + </header>
572 + <p className="stats-section-note">
573 + Le grand luxe made in Québec — véridique, promis.
574 + </p>
575 + <ol className="stats-expensive">
576 + {stats.most_expensive.map((p) => (
577 + <li key={p.uid}>
578 + <Link
579 + className="stats-expensive-link"
580 + to={`/produits/${encodeURIComponent(p.uid)}`}
581 + >
582 + <span className="stats-expensive-title">{p.title}</span>
583 + <span className="stats-expensive-store">{p.store_name}</span>
584 + </Link>
585 + <span className="stats-expensive-price">
586 + {formatPrice(p.price)}
587 + </span>
588 + </li>
589 + ))}
590 + </ol>
591 + </section>
592 + )}
593 + </div>
594 + </>
595 + )}
596 + </div>
597 + )
598 +}
modified frontend/src/pages/StoreDetail.tsx +356 −46
@@ -1,20 +1,39 @@
1 −import { useEffect, useState } from 'react'
1 +import { useEffect, useMemo, useRef, useState } from 'react'
2 2 import { Link, useParams, useSearchParams } from 'react-router-dom'
3 3 import {
4 4 fetchProducts,
5 5 fetchStore,
6 6 formatInt,
7 + formatPrice,
8 + formatRelativeDate,
7 9 hostnameOf,
8 10 ProductsResponse,
9 11 StoreDetail as StoreDetailType,
10 12 } from '../api'
11 13 import EmptyState from '../components/EmptyState'
14 +import {
15 + categoryIcon,
16 + IconExternal,
17 + IconFacebook,
18 + IconInstagram,
19 + IconMapPin,
20 + IconSearch,
21 +} from '../components/Icons'
12 22 import OriginBadge from '../components/OriginBadge'
13 23 import Pagination from '../components/Pagination'
14 24 import ProductGrid from '../components/ProductGrid'
15 25 import Skeleton, { SkeletonGrid } from '../components/Skeleton'
26 +import StoreLogo from '../components/StoreLogo'
16 27
17 28 const PER_PAGE = 24
29 +const DEFAULT_TITLE = 'Fabri-Ka — Tous les produits québécois. Un seul endroit.'
30 +
31 +const SORT_OPTIONS: { value: string; label: string }[] = [
32 + { value: 'recent', label: 'Plus récents' },
33 + { value: 'price_asc', label: 'Prix croissant' },
34 + { value: 'price_desc', label: 'Prix décroissant' },
35 + { value: 'title', label: 'Ordre alphabétique' },
36 +]
18 37
19 38 export default function StoreDetail() {
20 39 const { id } = useParams<{ id: string }>()
@@ -23,29 +42,72 @@ export default function StoreDetail() {
23 42 const [storeError, setStoreError] = useState(false)
24 43 const [products, setProducts] = useState<ProductsResponse | null>(null)
25 44 const [productsLoading, setProductsLoading] = useState(true)
45 + const [coverReady, setCoverReady] = useState(false)
26 46
27 47 const page = Math.max(1, parseInt(searchParams.get('page') ?? '1', 10) || 1)
48 + const q = searchParams.get('q') ?? ''
49 + const sort = searchParams.get('tri') ?? 'recent'
50 +
51 + const [search, setSearch] = useState(q)
52 + const debounceRef = useRef<number | undefined>(undefined)
53 +
54 + useEffect(() => {
55 + setSearch(q)
56 + }, [q])
28 57
58 + // ---- store -------------------------------------------------------------
29 59 useEffect(() => {
30 60 if (!id) return
31 61 const controller = new AbortController()
32 62 setStore(null)
33 63 setStoreError(false)
64 + setCoverReady(false)
34 65 fetchStore(id, controller.signal)
35 66 .then(setStore)
36 67 .catch((err: unknown) => {
37 68 if (err instanceof DOMException && err.name === 'AbortError') return
38 69 setStoreError(true)
39 70 })
71 + window.scrollTo({ top: 0 })
40 72 return () => controller.abort()
41 73 }, [id])
42 74
75 + // ---- SEO title ----------------------------------------------------------
76 + useEffect(() => {
77 + if (store) document.title = `${store.name} — Fabri-Ka`
78 + return () => {
79 + document.title = DEFAULT_TITLE
80 + }
81 + }, [store])
82 +
83 + // ---- cover preload (never show a broken cover) --------------------------
84 + const coverUrl = store?.cover_url ?? null
85 + useEffect(() => {
86 + if (!coverUrl) return
87 + let cancelled = false
88 + const img = new Image()
89 + img.onload = () => {
90 + if (!cancelled) setCoverReady(true)
91 + }
92 + img.src = coverUrl
93 + return () => {
94 + cancelled = true
95 + }
96 + }, [coverUrl])
97 +
98 + // ---- products (in-store search + sort + pagination) ---------------------
43 99 useEffect(() => {
44 100 if (!id) return
45 101 const controller = new AbortController()
46 102 setProductsLoading(true)
47 103 fetchProducts(
48 − { store: id, page, per_page: PER_PAGE, sort: 'recent' },
104 + {
105 + store: id,
106 + q: q || undefined,
107 + sort,
108 + page,
109 + per_page: PER_PAGE,
110 + },
49 111 controller.signal
50 112 )
51 113 .then((res) => {
@@ -58,16 +120,42 @@ export default function StoreDetail() {
58 120 setProductsLoading(false)
59 121 })
60 122 return () => controller.abort()
61 − }, [id, page])
123 + }, [id, q, sort, page])
124 +
125 + const updateParams = useMemo(
126 + () =>
127 + (patch: { q?: string; sort?: string; page?: number }) => {
128 + setSearchParams(
129 + (prev) => {
130 + const next = new URLSearchParams(prev)
131 + const query = patch.q ?? q
132 + const tri = patch.sort ?? sort
133 + const p = patch.page ?? 1
134 + if (query) next.set('q', query)
135 + else next.delete('q')
136 + if (tri && tri !== 'recent') next.set('tri', tri)
137 + else next.delete('tri')
138 + if (p > 1) next.set('page', String(p))
139 + else next.delete('page')
140 + return next
141 + },
142 + { replace: patch.page === undefined }
143 + )
144 + },
145 + [setSearchParams, q, sort]
146 + )
147 +
148 + function onSearchInput(value: string) {
149 + setSearch(value)
150 + window.clearTimeout(debounceRef.current)
151 + debounceRef.current = window.setTimeout(() => updateParams({ q: value }), 300)
152 + }
62 153
63 154 function goToPage(p: number) {
64 − setSearchParams((prev) => {
65 − const next = new URLSearchParams(prev)
66 − if (p > 1) next.set('page', String(p))
67 − else next.delete('page')
68 − return next
69 − })
70 − window.scrollTo({ top: 0, behavior: 'smooth' })
155 + updateParams({ page: p })
156 + document
157 + .getElementById('store-catalogue')
158 + ?.scrollIntoView({ behavior: 'smooth', block: 'start' })
71 159 }
72 160
73 161 if (storeError) {
@@ -82,8 +170,30 @@ export default function StoreDetail() {
82 170 )
83 171 }
84 172
173 + const socials =
174 + store?.socials && !Array.isArray(store.socials) ? store.socials : {}
175 + const instagram = socials['instagram']
176 + const facebook = socials['facebook']
177 + const stats = store?.product_stats
178 + const location = store
179 + ? [store.city, store.region].filter(Boolean).join(', ') || 'Québec'
180 + : ''
181 + const lastSyncRel = formatRelativeDate(store?.last_sync ?? null)
182 + const priceRange =
183 + stats && stats.price_min !== null && stats.price_max !== null
184 + ? stats.price_min === stats.price_max
185 + ? formatPrice(stats.price_min)
186 + : `${formatPrice(stats.price_min)} – ${formatPrice(stats.price_max)}`
187 + : null
188 + const categories = (store?.category_breakdown ?? []).filter(
189 + (c): c is { key: string; n: number; label: string } =>
190 + c.key !== null && c.key !== '' && c.n > 0
191 + )
192 + const similar = store?.similar ?? []
193 + const hasCover = Boolean(coverUrl && coverReady)
194 +
85 195 return (
86 − <div className="page">
196 + <div className="page page-store-detail">
87 197 <nav className="breadcrumb" aria-label="Fil d'Ariane">
88 198 <Link to="/boutiques">Boutiques</Link>
89 199 <span aria-hidden="true">/</span>
@@ -91,46 +201,187 @@ export default function StoreDetail() {
91 201 </nav>
92 202
93 203 {store ? (
94 − <header className="store-detail-header card">
95 − <div className="store-detail-top">
96 − <h1>{store.name}</h1>
97 − <OriginBadge origin={store.origin_class} withLabel />
98 − </div>
99 − <p className="store-detail-links">
100 − <a href={store.url} target="_blank" rel="noopener noreferrer">
101 − {hostnameOf(store.url)} ↗
102 − </a>
103 − {' · '}
104 − {[store.city, store.region].filter(Boolean).join(', ') || 'Québec'}
105 − {store.platform && (
106 − <>
107 − {' · '}
108 − <span className="platform-badge">{store.platform}</span>
109 − </>
204 + <>
205 + {/* ---- Hero ------------------------------------------------- */}
206 + <header className={hasCover ? 'store-hero store-hero-covered' : 'store-hero'}>
207 + <div className="store-hero-cover" aria-hidden="true">
208 + {hasCover && (
209 + <div
210 + className="store-hero-cover-img"
211 + style={{ backgroundImage: `url("${coverUrl}")` }}
212 + />
213 + )}
214 + <div className="store-hero-scrim" />
215 + </div>
216 + <div className="store-hero-body">
217 + <StoreLogo
218 + storeId={store.id}
219 + name={store.name}
220 + logoUrl={store.logo_url}
221 + size="lg"
222 + ring
223 + className="store-hero-logo"
224 + />
225 + <h1 className="store-hero-name">{store.name}</h1>
226 + <div className="store-hero-chips">
227 + <span className="store-hero-chip">
228 + <IconMapPin size={14} />
229 + {location}
230 + </span>
231 + <OriginBadge origin={store.origin_class} withLabel />
232 + </div>
233 + <div className="store-hero-actions">
234 + <a
235 + className="btn btn-primary store-hero-cta"
236 + href={store.url}
237 + target="_blank"
238 + rel="noopener noreferrer"
239 + >
240 + Visiter la boutique <IconExternal size={16} />
241 + </a>
242 + {instagram && (
243 + <a
244 + className="store-social-link"
245 + href={instagram}
246 + target="_blank"
247 + rel="noopener noreferrer"
248 + aria-label={`Instagram de ${store.name}`}
249 + title="Instagram"
250 + >
251 + <IconInstagram size={19} />
252 + </a>
253 + )}
254 + {facebook && (
255 + <a
256 + className="store-social-link"
257 + href={facebook}
258 + target="_blank"
259 + rel="noopener noreferrer"
260 + aria-label={`Facebook de ${store.name}`}
261 + title="Facebook"
262 + >
263 + <IconFacebook size={19} />
264 + </a>
265 + )}
266 + <span className="store-hero-domain">{hostnameOf(store.url)}</span>
267 + </div>
268 + </div>
269 + </header>
270 +
271 + {/* ---- About ------------------------------------------------ */}
272 + {(store.description_meta || store.origin_evidence) && (
273 + <section className="store-about">
274 + {store.description_meta && (
275 + <p className="store-about-text">{store.description_meta}</p>
276 + )}
277 + {store.origin_evidence && (
278 + <blockquote className="store-evidence">
279 + « {store.origin_evidence} »
280 + </blockquote>
281 + )}
282 + </section>
283 + )}
284 +
285 + {/* ---- Stats band -------------------------------------------- */}
286 + <section className="store-stats" aria-label="Statistiques de la boutique">
287 + <div className="store-stat-tile">
288 + <span className="store-stat-value">
289 + {formatInt(stats?.n ?? store.product_count)}
290 + </span>
291 + <span className="store-stat-label">
292 + Produit{(stats?.n ?? store.product_count) === 1 ? '' : 's'} en ligne
293 + </span>
294 + </div>
295 + {priceRange && (
296 + <div className="store-stat-tile">
297 + <span className="store-stat-value store-stat-value-sm">
298 + {priceRange}
299 + </span>
300 + <span className="store-stat-label">Fourchette de prix</span>
301 + </div>
302 + )}
303 + <div className="store-stat-tile">
304 + <span className="store-stat-value store-stat-value-sm">
305 + {store.region || 'Québec'}
306 + </span>
307 + <span className="store-stat-label">
308 + {store.platform ? `Région · ${store.platform}` : 'Région'}
309 + </span>
310 + </div>
311 + {lastSyncRel && (
312 + <div className="store-stat-tile">
313 + <span className="store-stat-value store-stat-value-sm">
314 + {lastSyncRel}
315 + </span>
316 + <span className="store-stat-label">Dernière synchro</span>
317 + </div>
110 318 )}
111 − </p>
112 − {store.origin_evidence && (
113 − <blockquote className="store-evidence">
114 − « {store.origin_evidence} »
115 − </blockquote>
319 + </section>
320 +
321 + {/* ---- Category chips ---------------------------------------- */}
322 + {categories.length > 0 && (
323 + <section className="store-categories" aria-label="Catégories de la boutique">
324 + <div className="category-chips">
325 + {categories.map((c) => (
326 + <Link
327 + key={c.key}
328 + className="chip"
329 + to={`/produits?store=${encodeURIComponent(store.id)}&category=${encodeURIComponent(c.key)}`}
330 + >
331 + <span className="chip-icon">{categoryIcon(c.label)}</span>
332 + {c.label}
333 + <span className="chip-count">{formatInt(c.n)}</span>
334 + </Link>
335 + ))}
336 + </div>
337 + </section>
116 338 )}
117 − </header>
339 + </>
118 340 ) : (
119 − <div className="store-detail-header card">
120 − <Skeleton height="2rem" width="50%" />
121 − <Skeleton height="1rem" width="40%" />
341 + <div className="store-hero">
342 + <div className="store-hero-cover" aria-hidden="true">
343 + <div className="store-hero-scrim" />
344 + </div>
345 + <div className="store-hero-body">
346 + <Skeleton height="72px" width="72px" radius="50%" />
347 + <Skeleton height="2.2rem" width="55%" />
348 + <Skeleton height="1rem" width="35%" />
349 + </div>
122 350 </div>
123 351 )}
124 352
125 − <section className="store-detail-products">
126 − <div className="page-header">
127 − <h2>Produits de la boutique</h2>
128 − {products && !productsLoading && (
129 − <p className="catalog-count">
130 − {formatInt(products.total)} produit
131 − {products.total === 1 ? '' : 's'}
132 − </p>
133 − )}
353 + {/* ---- Catalogue ------------------------------------------------ */}
354 + <section className="store-detail-products" id="store-catalogue">
355 + <div className="section-header">
356 + <h2>
357 + Catalogue
358 + {products && !productsLoading && <> ({formatInt(products.total)})</>}
359 + </h2>
360 + </div>
361 + <div className="store-catalogue-toolbar">
362 + <div className="store-catalogue-search">
363 + <span className="searchbar-icon">
364 + <IconSearch size={17} />
365 + </span>
366 + <input
367 + type="search"
368 + value={search}
369 + onChange={(e) => onSearchInput(e.target.value)}
370 + placeholder="Chercher dans la boutique…"
371 + aria-label="Chercher dans la boutique"
372 + />
373 + </div>
374 + <select
375 + value={sort}
376 + onChange={(e) => updateParams({ sort: e.target.value })}
377 + aria-label="Trier les produits"
378 + >
379 + {SORT_OPTIONS.map((o) => (
380 + <option key={o.value} value={o.value}>
381 + {o.label}
382 + </option>
383 + ))}
384 + </select>
134 385 </div>
135 386 {productsLoading ? (
136 387 <SkeletonGrid count={12} />
@@ -138,7 +389,11 @@ export default function StoreDetail() {
138 389 <>
139 390 <ProductGrid
140 391 products={products?.items ?? []}
141 − emptyMessage="Aucun produit trouvé pour cette boutique"
392 + emptyMessage={
393 + q
394 + ? 'Aucun produit ne correspond à cette recherche dans la boutique'
395 + : 'Aucun produit trouvé pour cette boutique'
396 + }
142 397 />
143 398 {products && (
144 399 <Pagination
@@ -151,6 +406,61 @@ export default function StoreDetail() {
151 406 </>
152 407 )}
153 408 </section>
409 +
410 + {/* ---- Similar stores rail --------------------------------------- */}
411 + {similar.length > 0 && (
412 + <section className="rail store-similar">
413 + <header className="section-header">
414 + <h2>Boutiques similaires</h2>
415 + </header>
416 + <div className="rail-track">
417 + {similar.map((s) => (
418 + <Link
419 + key={s.id}
420 + to={`/boutiques/${encodeURIComponent(s.id)}`}
421 + className="card store-mini-card"
422 + >
423 + <StoreLogo
424 + storeId={s.id}
425 + name={s.name}
426 + logoUrl={s.logo_url}
427 + size="sm"
428 + />
429 + <span className="store-mini-body">
430 + <span className="store-mini-name">{s.name}</span>
431 + <span className="store-mini-meta">
432 + {s.region || 'Québec'} · {formatInt(s.product_count)} produit
433 + {s.product_count === 1 ? '' : 's'}
434 + </span>
435 + </span>
436 + </Link>
437 + ))}
438 + </div>
439 + </section>
440 + )}
441 +
442 + {/* ---- Mobile sticky CTA (safe-area aware) ------------------------ */}
443 + {store && (
444 + <div className="store-cta-bar">
445 + <div className="store-cta-id">
446 + <StoreLogo
447 + storeId={store.id}
448 + name={store.name}
449 + logoUrl={store.logo_url}
450 + size="sm"
451 + />
452 + <span className="store-cta-name">{store.name}</span>
453 + </div>
454 + <a
455 + className="btn btn-primary store-cta-btn"
456 + href={store.url}
457 + target="_blank"
458 + rel="noopener noreferrer"
459 + >
460 + Visiter la boutique <IconExternal size={15} />
461 + </a>
462 + </div>
463 + )}
154 464 </div>
155 465 )
156 466 }
modified frontend/src/pages/Stores.tsx +6 −1
@@ -144,7 +144,12 @@ export default function Stores() {
144 144 <div className="store-grid">
145 145 {Array.from({ length: 8 }, (_, i) => (
146 146 <div className="card store-card" key={i}>
147 − <Skeleton height="1.3rem" width="70%" />
147 + <div className="store-card-top">
148 + <Skeleton height="44px" width="44px" radius="50%" />
149 + <div className="store-card-heading">
150 + <Skeleton height="1.3rem" width="70%" />
151 + </div>
152 + </div>
148 153 <Skeleton height="0.9rem" width="50%" />
149 154 <Skeleton height="0.9rem" width="60%" />
150 155 </div>
modified frontend/src/styles.css +1134 −122
@@ -1968,14 +1968,22 @@ a.card:active {
1968 1968 .store-card-top {
1969 1969 display: flex;
1970 1970 justify-content: space-between;
1971 − align-items: flex-start;
1971 + align-items: center;
1972 1972 gap: 0.75rem;
1973 1973 }
1974 1974
1975 +.store-card-heading {
1976 + flex: 1;
1977 + min-width: 0;
1978 +}
1979 +
1975 1980 .store-card-name {
1976 1981 margin: 0;
1977 1982 font-size: 1.1rem;
1978 1983 font-weight: 700;
1984 + overflow: hidden;
1985 + text-overflow: ellipsis;
1986 + white-space: nowrap;
1979 1987 }
1980 1988
1981 1989 .store-card-domain {
@@ -2016,199 +2024,1203 @@ a.card:active {
2016 2024 font-variant-numeric: tabular-nums;
2017 2025 }
2018 2026
2019 −.store-detail-header {
2020 − padding: 1.25rem 1.25rem;
2021 − margin-bottom: 1.5rem;
2022 −}
2023 −
2024 −@media (min-width: 768px) {
2025 − .store-detail-header {
2026 − padding: 1.5rem 1.75rem;
2027 − margin-bottom: 2rem;
2028 − }
2029 −}
2027 +/* --------------------------------------------------------------------------
2028 + Store logo — circular avatar with initial-letter fallback
2029 + -------------------------------------------------------------------------- */
2030 2030
2031 −.store-detail-top {
2032 − display: flex;
2031 +.store-logo {
2032 + flex: 0 0 auto;
2033 + display: inline-flex;
2033 2034 align-items: center;
2034 − gap: 1rem;
2035 − flex-wrap: wrap;
2035 + justify-content: center;
2036 + border-radius: 50%;
2037 + overflow: hidden;
2038 + background: var(--white);
2039 + border: 1px solid var(--border);
2036 2040 }
2037 2041
2038 −.store-detail-top h1 {
2039 − margin: 0;
2040 − font-size: clamp(1.5rem, 5vw, 2.2rem);
2042 +.store-logo img {
2043 + width: 100%;
2044 + height: 100%;
2045 + object-fit: cover;
2041 2046 }
2042 2047
2043 −.store-detail-links {
2044 − color: var(--muted);
2045 − margin: 0.5rem 0 0;
2046 − font-size: 0.92rem;
2048 +.store-logo-sm {
2049 + width: 28px;
2050 + height: 28px;
2047 2051 }
2048 2052
2049 −.store-evidence {
2050 − margin: 1rem 0 0;
2051 − padding: 0.75rem 1.1rem;
2052 − border-left: 3px solid var(--pine);
2053 − background: var(--sand);
2054 − border-radius: 0 var(--radius) var(--radius) 0;
2055 − font-style: italic;
2056 − color: var(--ink);
2057 − font-size: 0.92rem;
2053 +.store-logo-md {
2054 + width: 44px;
2055 + height: 44px;
2058 2056 }
2059 2057
2060 −/* --------------------------------------------------------------------------
2061 − About
2062 − -------------------------------------------------------------------------- */
2063 −
2064 −.about .about-content {
2065 − max-width: 720px;
2058 +.store-logo-lg {
2059 + width: 72px;
2060 + height: 72px;
2066 2061 }
2067 2062
2068 −.about h1 {
2069 − font-size: clamp(1.8rem, 6vw, 2.6rem);
2063 +.store-logo-fallback {
2064 + border: none;
2065 + color: var(--white);
2066 + font-family: var(--font-display);
2067 + font-weight: 900;
2068 + font-optical-sizing: auto;
2069 + line-height: 1;
2070 + user-select: none;
2070 2071 }
2071 2072
2072 −.about h2 {
2073 − margin-top: 2rem;
2074 − font-size: 1.35rem;
2073 +.store-logo-sm.store-logo-fallback {
2074 + font-size: 0.82rem;
2075 2075 }
2076 2076
2077 −.about-origins {
2078 − list-style: none;
2079 − margin: 1rem 0;
2080 − padding: 0;
2081 − display: flex;
2082 − flex-direction: column;
2083 − gap: 0.75rem;
2077 +.store-logo-md.store-logo-fallback {
2078 + font-size: 1.25rem;
2084 2079 }
2085 2080
2086 −.about-origins li {
2087 − display: flex;
2088 − gap: 0.9rem;
2089 − align-items: flex-start;
2090 − background: var(--white);
2091 − border: 1px solid var(--border);
2092 − border-radius: var(--radius);
2093 − padding: 0.9rem 1rem;
2081 +.store-logo-lg.store-logo-fallback {
2082 + font-size: 2.1rem;
2094 2083 }
2095 2084
2096 −.about-origins p {
2097 − margin: 0.15rem 0 0;
2098 − color: var(--muted);
2099 − font-size: 0.9rem;
2085 +.store-logo-ring {
2086 + box-shadow: 0 0 0 3px var(--white), 0 4px 14px rgba(30, 27, 22, 0.18);
2100 2087 }
2101 2088
2102 2089 /* --------------------------------------------------------------------------
2103 − Skeletons & empty states
2090 + Store landing page — hero, stats, catalogue, similar rail
2104 2091 -------------------------------------------------------------------------- */
2105 2092
2106 −.skeleton {
2093 +/* room for the sticky CTA bar on mobile */
2094 +.page-store-detail {
2095 + padding-bottom: calc(3.5rem + 74px);
2096 +}
2097 +
2098 +@media (min-width: 900px) {
2099 + .page-store-detail {
2100 + padding-bottom: 3.5rem;
2101 + }
2102 +}
2103 +
2104 +.store-hero {
2107 2105 position: relative;
2106 + background: var(--white);
2107 + border: 1px solid var(--border);
2108 + border-radius: var(--radius-lg);
2108 2109 overflow: hidden;
2109 − background: var(--sand);
2110 + margin-bottom: 1.4rem;
2110 2111 }
2111 2112
2112 −.skeleton::after {
2113 − content: '';
2113 +.store-hero-cover {
2114 + position: relative;
2115 + height: 118px;
2116 + overflow: hidden;
2117 + background: linear-gradient(120deg, var(--sand), #E8DBC4 55%, var(--sand));
2118 +}
2119 +
2120 +.store-hero-cover-img {
2121 + position: absolute;
2122 + inset: -28px;
2123 + background-size: cover;
2124 + background-position: center;
2125 + filter: blur(16px) saturate(1.05);
2126 + transform: scale(1.1);
2127 +}
2128 +
2129 +.store-hero-scrim {
2114 2130 position: absolute;
2115 2131 inset: 0;
2116 − transform: translateX(-100%);
2132 +}
2133 +
2134 +.store-hero-covered .store-hero-scrim {
2117 2135 background: linear-gradient(
2118 − 90deg,
2119 − transparent,
2120 − rgba(255, 255, 255, 0.65),
2121 − transparent
2136 + rgba(30, 27, 22, 0.24),
2137 + rgba(30, 27, 22, 0.48)
2122 2138 );
2123 − animation: shimmer 1.4s infinite;
2124 2139 }
2125 2140
2126 −@keyframes shimmer {
2127 − 100% {
2128 − transform: translateX(100%);
2129 − }
2141 +.store-hero-body {
2142 + position: relative;
2143 + display: flex;
2144 + flex-direction: column;
2145 + align-items: flex-start;
2146 + gap: 0.6rem;
2147 + padding: 0 1.1rem 1.15rem;
2148 + /* pull the logo up so it overlaps the cover band */
2149 + margin-top: -36px;
2130 2150 }
2131 2151
2132 −.skeleton-square {
2133 − aspect-ratio: 1 / 1;
2134 − width: 100%;
2152 +.store-hero-name {
2153 + margin: 0;
2154 + font-size: clamp(1.6rem, 6vw, 2.4rem);
2155 + letter-spacing: -0.02em;
2156 + overflow-wrap: break-word;
2157 + max-width: 100%;
2135 2158 }
2136 2159
2137 −.product-card-skeleton {
2138 − pointer-events: none;
2160 +.store-hero-chips {
2161 + display: flex;
2162 + align-items: center;
2163 + gap: 0.6rem;
2164 + flex-wrap: wrap;
2139 2165 }
2140 2166
2141 −.empty-state {
2142 − text-align: center;
2143 − padding: 3.5rem 1rem;
2167 +.store-hero-chip {
2168 + display: inline-flex;
2169 + align-items: center;
2170 + gap: 0.35rem;
2171 + background: var(--sand);
2172 + border-radius: 999px;
2173 + padding: 0.24rem 0.75rem 0.24rem 0.55rem;
2174 + color: var(--muted);
2175 + font-size: 0.82rem;
2176 + font-weight: 500;
2177 +}
2178 +
2179 +.store-hero-actions {
2144 2180 display: flex;
2145 − flex-direction: column;
2146 2181 align-items: center;
2147 2182 gap: 0.6rem;
2148 − color: var(--muted);
2183 + flex-wrap: wrap;
2184 + width: 100%;
2185 + margin-top: 0.35rem;
2149 2186 }
2150 2187
2151 −.empty-state-icon {
2188 +.store-hero-cta {
2189 + padding: 0.75rem 1.4rem;
2190 +}
2191 +
2192 +.store-social-link {
2193 + width: 44px;
2194 + height: 44px;
2152 2195 display: inline-flex;
2153 2196 align-items: center;
2154 2197 justify-content: center;
2155 − width: 64px;
2156 − height: 64px;
2157 − border-radius: 50%;
2158 − background: var(--sand);
2198 + background: var(--white);
2159 2199 border: 1px solid var(--border);
2160 − color: var(--pine);
2161 − margin-bottom: 0.35rem;
2200 + border-radius: 50%;
2201 + color: var(--ink);
2202 + transition: border-color 0.15s ease, color 0.15s ease;
2162 2203 }
2163 2204
2164 −.empty-state-error .empty-state-icon {
2205 +.store-social-link:active {
2206 + border-color: var(--accent);
2165 2207 color: var(--accent);
2166 2208 }
2167 2209
2168 −.empty-state-title {
2169 − margin: 0;
2170 − font-size: 1.3rem;
2171 − color: var(--ink);
2210 +@media (hover: hover) {
2211 + .store-social-link:hover {
2212 + text-decoration: none;
2213 + border-color: var(--accent);
2214 + color: var(--accent);
2215 + }
2172 2216 }
2173 2217
2174 −.empty-state p {
2175 − margin: 0;
2176 − font-size: 1rem;
2177 − max-width: 40ch;
2218 +.store-hero-domain {
2219 + margin-left: auto;
2220 + color: var(--muted);
2221 + font-size: 0.85rem;
2222 + overflow: hidden;
2223 + text-overflow: ellipsis;
2224 + white-space: nowrap;
2225 + max-width: 45%;
2178 2226 }
2179 2227
2180 −.empty-state-action {
2181 − margin-top: 0.6rem;
2228 +@media (min-width: 768px) {
2229 + .store-hero {
2230 + margin-bottom: 1.75rem;
2231 + }
2232 +
2233 + .store-hero-cover {
2234 + height: 190px;
2235 + }
2236 +
2237 + .store-hero-body {
2238 + display: grid;
2239 + grid-template-columns: auto minmax(0, 1fr);
2240 + column-gap: 1.4rem;
2241 + row-gap: 0.55rem;
2242 + padding: 0 1.75rem 1.4rem;
2243 + margin-top: -44px;
2244 + align-items: start;
2245 + }
2246 +
2247 + .store-hero-logo {
2248 + grid-row: 1 / span 3;
2249 + }
2250 +
2251 + .store-hero-name {
2252 + margin-top: 0.9rem;
2253 + }
2182 2254 }
2183 2255
2184 −.notfound {
2185 − text-align: center;
2186 − padding-top: 2rem;
2256 +/* About */
2257 +.store-about {
2258 + max-width: 760px;
2259 + margin: 0 0 1.5rem;
2187 2260 }
2188 2261
2189 −.notfound h1 {
2190 − font-size: clamp(4rem, 18vw, 6.5rem);
2262 +.store-about-text {
2191 2263 margin: 0;
2192 − color: var(--pine);
2193 − line-height: 1;
2264 + font-size: 0.98rem;
2265 + line-height: 1.65;
2194 2266 }
2195 2267
2196 −.notfound .empty-state {
2197 − padding-top: 0.5rem;
2268 +.store-about-text + .store-evidence {
2269 + margin-top: 0.85rem;
2198 2270 }
2199 2271
2200 −/* --------------------------------------------------------------------------
2201 − Desktop spacing
2202 − -------------------------------------------------------------------------- */
2272 +.store-evidence {
2273 + margin: 0;
2274 + padding: 0.75rem 1.1rem;
2275 + border-left: 3px solid var(--accent);
2276 + background: var(--sand);
2277 + border-radius: 0 var(--radius) var(--radius) 0;
2278 + font-style: italic;
2279 + color: var(--ink);
2280 + font-size: 0.92rem;
2281 +}
2282 +
2283 +/* Stats band */
2284 +.store-stats {
2285 + display: grid;
2286 + grid-template-columns: repeat(2, 1fr);
2287 + gap: 0.6rem;
2288 + margin: 0 0 1.5rem;
2289 +}
2203 2290
2204 2291 @media (min-width: 768px) {
2205 − .page {
2206 − padding: 2rem 1.25rem 4rem;
2292 + .store-stats {
2293 + grid-template-columns: repeat(4, 1fr);
2294 + gap: 0.9rem;
2207 2295 }
2296 +}
2208 2297
2209 − .site-footer {
2210 − padding-bottom: 1.5rem;
2211 − }
2298 +.store-stat-tile {
2299 + display: flex;
2300 + flex-direction: column;
2301 + gap: 0.2rem;
2302 + min-width: 0;
2303 + background: var(--white);
2304 + border: 1px solid var(--border);
2305 + border-radius: var(--radius);
2306 + padding: 0.85rem 0.95rem;
2307 +}
2308 +
2309 +.store-stat-value {
2310 + font-family: var(--font-display);
2311 + font-weight: 900;
2312 + font-optical-sizing: auto;
2313 + font-size: 1.55rem;
2314 + color: var(--pine);
2315 + line-height: 1.15;
2316 + font-variant-numeric: tabular-nums;
2317 + overflow-wrap: break-word;
2318 +}
2319 +
2320 +.store-stat-value-sm {
2321 + font-size: 1.05rem;
2322 + padding-top: 0.2rem;
2323 +}
2324 +
2325 +.store-stat-label {
2326 + font-size: 0.66rem;
2327 + text-transform: uppercase;
2328 + letter-spacing: 0.14em;
2329 + color: var(--muted);
2330 + font-weight: 600;
2331 +}
2332 +
2333 +/* Category chips */
2334 +.store-categories {
2335 + margin: 0 0 1.25rem;
2336 +}
2337 +
2338 +/* Catalogue */
2339 +.store-detail-products {
2340 + scroll-margin-top: calc(var(--header-h) + 12px);
2341 +}
2342 +
2343 +.store-catalogue-toolbar {
2344 + display: flex;
2345 + gap: 0.6rem;
2346 + flex-wrap: wrap;
2347 + margin-bottom: 1rem;
2348 +}
2349 +
2350 +.store-catalogue-search {
2351 + position: relative;
2352 + flex: 1 1 220px;
2353 + display: flex;
2354 + align-items: center;
2355 +}
2356 +
2357 +.store-catalogue-search input {
2358 + padding-left: 2.4rem;
2359 +}
2360 +
2361 +.store-catalogue-toolbar select {
2362 + flex: 0 1 220px;
2363 + width: auto;
2364 +}
2365 +
2366 +/* Similar stores rail */
2367 +.store-mini-card {
2368 + flex: 0 0 250px;
2369 + scroll-snap-align: start;
2370 + display: flex;
2371 + align-items: center;
2372 + gap: 0.65rem;
2373 + padding: 0.8rem 0.9rem;
2374 + color: var(--ink);
2375 +}
2376 +
2377 +.store-mini-body {
2378 + min-width: 0;
2379 + display: flex;
2380 + flex-direction: column;
2381 + gap: 0.1rem;
2382 +}
2383 +
2384 +.store-mini-name {
2385 + font-weight: 600;
2386 + font-size: 0.92rem;
2387 + overflow: hidden;
2388 + text-overflow: ellipsis;
2389 + white-space: nowrap;
2390 +}
2391 +
2392 +.store-mini-meta {
2393 + color: var(--muted);
2394 + font-size: 0.78rem;
2395 + overflow: hidden;
2396 + text-overflow: ellipsis;
2397 + white-space: nowrap;
2398 +}
2399 +
2400 +/* Sticky mobile CTA — same pattern as the product detail bar */
2401 +.store-cta-bar {
2402 + position: fixed;
2403 + left: 0;
2404 + right: 0;
2405 + bottom: calc(var(--tabbar-h) + var(--safe-b));
2406 + z-index: 50;
2407 + display: flex;
2408 + align-items: center;
2409 + gap: 0.75rem;
2410 + padding: 0.6rem 1rem;
2411 + background: rgba(250, 246, 240, 0.97);
2412 + backdrop-filter: blur(12px);
2413 + -webkit-backdrop-filter: blur(12px);
2414 + border-top: 1px solid var(--border);
2415 +}
2416 +
2417 +.store-cta-id {
2418 + flex: 1;
2419 + min-width: 0;
2420 + display: flex;
2421 + align-items: center;
2422 + gap: 0.5rem;
2423 +}
2424 +
2425 +.store-cta-name {
2426 + font-weight: 600;
2427 + font-size: 0.9rem;
2428 + overflow: hidden;
2429 + text-overflow: ellipsis;
2430 + white-space: nowrap;
2431 +}
2432 +
2433 +.store-cta-btn {
2434 + flex: 0 0 auto;
2435 + min-height: 48px;
2436 + font-size: 0.92rem;
2437 +}
2438 +
2439 +/* tablet: tab bar is hidden, CTA hugs the bottom edge */
2440 +@media (min-width: 768px) and (max-width: 899px) {
2441 + .store-cta-bar {
2442 + bottom: 0;
2443 + padding-bottom: calc(0.6rem + var(--safe-b));
2444 + }
2445 +}
2446 +
2447 +@media (min-width: 900px) {
2448 + .store-cta-bar {
2449 + display: none;
2450 + }
2451 +}
2452 +
2453 +/* Store info card on product detail */
2454 +.store-info-row {
2455 + display: flex;
2456 + align-items: center;
2457 + gap: 0.65rem;
2458 + margin-top: 0.25rem;
2459 +}
2460 +
2461 +.store-info-text {
2462 + min-width: 0;
2463 + display: flex;
2464 + flex-direction: column;
2465 + gap: 0.1rem;
2466 +}
2467 +
2468 +/* --------------------------------------------------------------------------
2469 + About
2470 + -------------------------------------------------------------------------- */
2471 +
2472 +.about .about-content {
2473 + max-width: 720px;
2474 +}
2475 +
2476 +.about h1 {
2477 + font-size: clamp(1.8rem, 6vw, 2.6rem);
2478 +}
2479 +
2480 +.about h2 {
2481 + margin-top: 2rem;
2482 + font-size: 1.35rem;
2483 +}
2484 +
2485 +.about-origins {
2486 + list-style: none;
2487 + margin: 1rem 0;
2488 + padding: 0;
2489 + display: flex;
2490 + flex-direction: column;
2491 + gap: 0.75rem;
2492 +}
2493 +
2494 +.about-origins li {
2495 + display: flex;
2496 + gap: 0.9rem;
2497 + align-items: flex-start;
2498 + background: var(--white);
2499 + border: 1px solid var(--border);
2500 + border-radius: var(--radius);
2501 + padding: 0.9rem 1rem;
2502 +}
2503 +
2504 +.about-origins p {
2505 + margin: 0.15rem 0 0;
2506 + color: var(--muted);
2507 + font-size: 0.9rem;
2508 +}
2509 +
2510 +/* --------------------------------------------------------------------------
2511 + Skeletons & empty states
2512 + -------------------------------------------------------------------------- */
2513 +
2514 +.skeleton {
2515 + position: relative;
2516 + overflow: hidden;
2517 + background: var(--sand);
2518 +}
2519 +
2520 +.skeleton::after {
2521 + content: '';
2522 + position: absolute;
2523 + inset: 0;
2524 + transform: translateX(-100%);
2525 + background: linear-gradient(
2526 + 90deg,
2527 + transparent,
2528 + rgba(255, 255, 255, 0.65),
2529 + transparent
2530 + );
2531 + animation: shimmer 1.4s infinite;
2532 +}
2533 +
2534 +@keyframes shimmer {
2535 + 100% {
2536 + transform: translateX(100%);
2537 + }
2538 +}
2539 +
2540 +.skeleton-square {
2541 + aspect-ratio: 1 / 1;
2542 + width: 100%;
2543 +}
2544 +
2545 +.product-card-skeleton {
2546 + pointer-events: none;
2547 +}
2548 +
2549 +.empty-state {
2550 + text-align: center;
2551 + padding: 3.5rem 1rem;
2552 + display: flex;
2553 + flex-direction: column;
2554 + align-items: center;
2555 + gap: 0.6rem;
2556 + color: var(--muted);
2557 +}
2558 +
2559 +.empty-state-icon {
2560 + display: inline-flex;
2561 + align-items: center;
2562 + justify-content: center;
2563 + width: 64px;
2564 + height: 64px;
2565 + border-radius: 50%;
2566 + background: var(--sand);
2567 + border: 1px solid var(--border);
2568 + color: var(--pine);
2569 + margin-bottom: 0.35rem;
2570 +}
2571 +
2572 +.empty-state-error .empty-state-icon {
2573 + color: var(--accent);
2574 +}
2575 +
2576 +.empty-state-title {
2577 + margin: 0;
2578 + font-size: 1.3rem;
2579 + color: var(--ink);
2580 +}
2581 +
2582 +.empty-state p {
2583 + margin: 0;
2584 + font-size: 1rem;
2585 + max-width: 40ch;
2586 +}
2587 +
2588 +.empty-state-action {
2589 + margin-top: 0.6rem;
2590 +}
2591 +
2592 +.notfound {
2593 + text-align: center;
2594 + padding-top: 2rem;
2595 +}
2596 +
2597 +.notfound h1 {
2598 + font-size: clamp(4rem, 18vw, 6.5rem);
2599 + margin: 0;
2600 + color: var(--pine);
2601 + line-height: 1;
2602 +}
2603 +
2604 +.notfound .empty-state {
2605 + padding-top: 0.5rem;
2606 +}
2607 +
2608 +/* --------------------------------------------------------------------------
2609 + Desktop spacing
2610 + -------------------------------------------------------------------------- */
2611 +
2612 +@media (min-width: 768px) {
2613 + .page {
2614 + padding: 2rem 1.25rem 4rem;
2615 + }
2616 +
2617 + .site-footer {
2618 + padding-bottom: 1.5rem;
2619 + }
2620 +}
2621 +
2622 +/* --------------------------------------------------------------------------
2623 + Stats page — hand-rolled CSS/SVG charts in the house palette
2624 + -------------------------------------------------------------------------- */
2625 +
2626 +.hero-stats-link {
2627 + display: inline-flex;
2628 + align-items: center;
2629 + gap: 0.35rem;
2630 + margin-top: 0.9rem;
2631 + font-weight: 600;
2632 + font-size: 0.9rem;
2633 + min-height: 44px;
2634 +}
2635 +
2636 +.stats-hero {
2637 + padding: 1.5rem 0 1.25rem;
2638 +}
2639 +
2640 +.stats-hero-title {
2641 + font-size: clamp(1.9rem, 6.5vw, 3.4rem);
2642 + letter-spacing: -0.03em;
2643 + line-height: 1.06;
2644 + max-width: 22ch;
2645 + margin-bottom: 0.4em;
2646 +}
2647 +
2648 +.stats-hero-title em {
2649 + font-style: italic;
2650 + color: var(--accent);
2651 +}
2652 +
2653 +.stats-hero-sub {
2654 + color: var(--muted);
2655 + font-size: clamp(0.95rem, 2.2vw, 1.05rem);
2656 + max-width: 560px;
2657 + margin: 0;
2658 +}
2659 +
2660 +@media (min-width: 900px) {
2661 + .stats-hero {
2662 + padding: 2.5rem 0 1.75rem;
2663 + }
2664 +}
2665 +
2666 +/* KPI tiles */
2667 +.stats-kpis {
2668 + display: grid;
2669 + grid-template-columns: repeat(2, 1fr);
2670 + gap: 0.6rem;
2671 + margin: 1.25rem 0 0.5rem;
2672 +}
2673 +
2674 +@media (min-width: 640px) {
2675 + .stats-kpis {
2676 + grid-template-columns: repeat(3, 1fr);
2677 + gap: 0.9rem;
2678 + }
2679 +}
2680 +
2681 +@media (min-width: 1000px) {
2682 + .stats-kpis {
2683 + grid-template-columns: repeat(6, 1fr);
2684 + }
2685 +}
2686 +
2687 +.stats-kpi {
2688 + display: flex;
2689 + flex-direction: column;
2690 + gap: 0.2rem;
2691 + min-width: 0;
2692 + background: var(--white);
2693 + border: 1px solid var(--border);
2694 + border-radius: var(--radius);
2695 + padding: 0.9rem 0.95rem;
2696 +}
2697 +
2698 +.stats-kpi-value {
2699 + font-family: var(--font-display);
2700 + font-weight: 900;
2701 + font-optical-sizing: auto;
2702 + font-size: clamp(1.35rem, 4vw, 1.7rem);
2703 + color: var(--pine);
2704 + line-height: 1.12;
2705 + font-variant-numeric: tabular-nums;
2706 + overflow-wrap: break-word;
2707 +}
2708 +
2709 +.stats-kpi-label {
2710 + font-size: 0.64rem;
2711 + text-transform: uppercase;
2712 + letter-spacing: 0.13em;
2713 + color: var(--muted);
2714 + font-weight: 600;
2715 +}
2716 +
2717 +.stats-section {
2718 + margin: 2.25rem 0;
2719 +}
2720 +
2721 +.stats-section-note {
2722 + margin: -0.4rem 0 0.9rem;
2723 + color: var(--muted);
2724 + font-size: 0.88rem;
2725 +}
2726 +
2727 +.stats-loading {
2728 + display: flex;
2729 + flex-direction: column;
2730 + gap: 1.25rem;
2731 + margin-top: 2rem;
2732 +}
2733 +
2734 +/* Shared horizontal bars — thin marks, rounded data-end, sand track */
2735 +.stats-bars {
2736 + display: flex;
2737 + flex-direction: column;
2738 + gap: 0.55rem;
2739 +}
2740 +
2741 +.stats-bar-row {
2742 + display: grid;
2743 + grid-template-columns: minmax(92px, 130px) 1fr auto;
2744 + align-items: center;
2745 + gap: 0.7rem;
2746 +}
2747 +
2748 +.stats-bar-row-flat {
2749 + grid-template-columns: 1fr auto;
2750 +}
2751 +
2752 +.stats-bar-name {
2753 + font-size: 0.84rem;
2754 + font-weight: 500;
2755 + color: var(--ink);
2756 + white-space: nowrap;
2757 + overflow: hidden;
2758 + text-overflow: ellipsis;
2759 +}
2760 +
2761 +.stats-bar-track {
2762 + display: block;
2763 + height: 14px;
2764 + background: var(--sand);
2765 + border-radius: 4px;
2766 + overflow: hidden;
2767 +}
2768 +
2769 +.stats-bar-fill {
2770 + display: block;
2771 + height: 100%;
2772 + min-width: 3px;
2773 + border-radius: 0 4px 4px 0;
2774 + transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
2775 +}
2776 +
2777 +.stats-bar-fill-terracotta {
2778 + background: var(--accent);
2779 +}
2780 +
2781 +.stats-bar-fill-pine {
2782 + background: var(--pine);
2783 +}
2784 +
2785 +.stats-bar-value {
2786 + display: inline-flex;
2787 + align-items: baseline;
2788 + gap: 0.45rem;
2789 + font-size: 0.85rem;
2790 + font-weight: 600;
2791 + font-variant-numeric: tabular-nums;
2792 + white-space: nowrap;
2793 +}
2794 +
2795 +.stats-bar-value em {
2796 + font-style: normal;
2797 + font-weight: 500;
2798 + color: var(--muted);
2799 + font-size: 0.76rem;
2800 + min-width: 3.4em;
2801 +}
2802 +
2803 +/* Categories — table on desktop */
2804 +.stats-cat-table-wrap {
2805 + display: none;
2806 +}
2807 +
2808 +.stats-cat-table {
2809 + width: 100%;
2810 + border-collapse: collapse;
2811 + background: var(--white);
2812 + border: 1px solid var(--border);
2813 + border-radius: var(--radius);
2814 + overflow: hidden;
2815 + font-size: 0.9rem;
2816 +}
2817 +
2818 +.stats-cat-table th,
2819 +.stats-cat-table td {
2820 + padding: 0.6rem 0.85rem;
2821 + text-align: left;
2822 + border-bottom: 1px solid var(--border);
2823 +}
2824 +
2825 +.stats-cat-table th {
2826 + font-size: 0.68rem;
2827 + text-transform: uppercase;
2828 + letter-spacing: 0.12em;
2829 + color: var(--muted);
2830 + font-weight: 700;
2831 + background: var(--sand);
2832 + white-space: nowrap;
2833 +}
2834 +
2835 +.stats-cat-table tbody tr:last-child td {
2836 + border-bottom: none;
2837 +}
2838 +
2839 +@media (hover: hover) {
2840 + .stats-cat-table tbody tr:hover {
2841 + background: var(--bg);
2842 + }
2843 +}
2844 +
2845 +.stats-cat-table .num {
2846 + text-align: right;
2847 + font-variant-numeric: tabular-nums;
2848 + white-space: nowrap;
2849 +}
2850 +
2851 +.stats-cat-link {
2852 + font-weight: 600;
2853 + color: var(--ink);
2854 +}
2855 +
2856 +@media (hover: hover) {
2857 + .stats-cat-link:hover {
2858 + color: var(--accent);
2859 + }
2860 +}
2861 +
2862 +.stats-cat-range {
2863 + color: var(--muted);
2864 +}
2865 +
2866 +/* Categories — stacked cards on mobile */
2867 +.stats-cat-cards {
2868 + display: flex;
2869 + flex-direction: column;
2870 + gap: 0.6rem;
2871 +}
2872 +
2873 +.stats-cat-card {
2874 + display: block;
2875 + padding: 0.85rem 1rem;
2876 + color: var(--ink);
2877 +}
2878 +
2879 +.stats-cat-card-head {
2880 + display: flex;
2881 + justify-content: space-between;
2882 + align-items: baseline;
2883 + gap: 0.75rem;
2884 +}
2885 +
2886 +.stats-cat-card-head strong {
2887 + font-size: 0.98rem;
2888 +}
2889 +
2890 +.stats-cat-card-count {
2891 + color: var(--accent);
2892 + font-weight: 700;
2893 + font-size: 0.85rem;
2894 + font-variant-numeric: tabular-nums;
2895 + white-space: nowrap;
2896 +}
2897 +
2898 +.stats-cat-card-grid {
2899 + display: grid;
2900 + grid-template-columns: repeat(2, 1fr);
2901 + gap: 0.5rem 0.9rem;
2902 + margin: 0.6rem 0 0;
2903 +}
2904 +
2905 +.stats-cat-card-grid dt {
2906 + font-size: 0.62rem;
2907 + text-transform: uppercase;
2908 + letter-spacing: 0.12em;
2909 + color: var(--muted);
2910 + font-weight: 700;
2911 +}
2912 +
2913 +.stats-cat-card-grid dd {
2914 + margin: 0.1rem 0 0;
2915 + font-weight: 500;
2916 + font-size: 0.88rem;
2917 + font-variant-numeric: tabular-nums;
2918 +}
2919 +
2920 +@media (min-width: 768px) {
2921 + .stats-cat-table-wrap {
2922 + display: block;
2923 + overflow-x: auto;
2924 + }
2925 +
2926 + .stats-cat-cards {
2927 + display: none;
2928 + }
2929 +}
2930 +
2931 +/* Regions */
2932 +.stats-regions {
2933 + display: flex;
2934 + flex-direction: column;
2935 + gap: 0.85rem;
2936 +}
2937 +
2938 +.stats-region-head {
2939 + display: flex;
2940 + align-items: baseline;
2941 + justify-content: space-between;
2942 + gap: 0.75rem;
2943 + margin-bottom: 0.25rem;
2944 +}
2945 +
2946 +.stats-region-name {
2947 + font-weight: 600;
2948 + font-size: 0.92rem;
2949 + color: var(--ink);
2950 +}
2951 +
2952 +@media (hover: hover) {
2953 + .stats-region-name:hover {
2954 + color: var(--accent);
2955 + }
2956 +}
2957 +
2958 +.stats-region-meta {
2959 + color: var(--muted);
2960 + font-size: 0.78rem;
2961 + font-variant-numeric: tabular-nums;
2962 + white-space: nowrap;
2963 +}
2964 +
2965 +/* Growth SVG chart */
2966 +.stats-growth-figure {
2967 + margin: 0;
2968 + background: var(--white);
2969 + border: 1px solid var(--border);
2970 + border-radius: var(--radius-lg);
2971 + padding: 0.9rem 0.9rem 0.5rem;
2972 +}
2973 +
2974 +.stats-growth-svg {
2975 + display: block;
2976 + width: 100%;
2977 + height: auto;
2978 +}
2979 +
2980 +.stats-growth-baseline {
2981 + stroke: var(--border);
2982 + stroke-width: 1;
2983 +}
2984 +
2985 +.stats-growth-area {
2986 + fill: var(--sand);
2987 +}
2988 +
2989 +.stats-growth-line {
2990 + fill: none;
2991 + stroke: var(--accent);
2992 + stroke-width: 2;
2993 + stroke-linejoin: round;
2994 + stroke-linecap: round;
2995 +}
2996 +
2997 +.stats-growth-dot {
2998 + fill: var(--accent);
2999 + stroke: var(--white);
3000 + stroke-width: 1.5;
3001 +}
3002 +
3003 +.stats-growth-dot-min {
3004 + fill: var(--pine);
3005 +}
3006 +
3007 +.stats-growth-label {
3008 + font-size: 12px;
3009 + font-weight: 700;
3010 + fill: var(--ink);
3011 + font-variant-numeric: tabular-nums;
3012 +}
3013 +
3014 +.stats-growth-axis {
3015 + font-size: 11px;
3016 + fill: var(--muted);
3017 +}
3018 +
3019 +/* Origin — proportional segmented bar + legend */
3020 +.stats-origin-bar {
3021 + display: flex;
3022 + gap: 2px;
3023 + height: 30px;
3024 + border-radius: 6px;
3025 + overflow: hidden;
3026 + margin-bottom: 0.9rem;
3027 +}
3028 +
3029 +.stats-origin-seg {
3030 + display: inline-flex;
3031 + align-items: center;
3032 + justify-content: center;
3033 + min-width: 4px;
3034 + border-radius: 3px;
3035 +}
3036 +
3037 +.stats-origin-seg-letter {
3038 + color: var(--white);
3039 + font-weight: 700;
3040 + font-size: 0.76rem;
3041 + line-height: 1;
3042 +}
3043 +
3044 +.stats-origin-legend {
3045 + list-style: none;
3046 + margin: 0;
3047 + padding: 0;
3048 + display: flex;
3049 + flex-direction: column;
3050 + gap: 0.55rem;
3051 +}
3052 +
3053 +.stats-origin-legend li {
3054 + display: flex;
3055 + align-items: center;
3056 + gap: 0.7rem;
3057 + flex-wrap: wrap;
3058 +}
3059 +
3060 +.stats-origin-legend-counts {
3061 + color: var(--muted);
3062 + font-size: 0.85rem;
3063 + font-variant-numeric: tabular-nums;
3064 +}
3065 +
3066 +@media (min-width: 768px) {
3067 + .stats-origin-legend {
3068 + flex-direction: row;
3069 + flex-wrap: wrap;
3070 + gap: 0.6rem 1.75rem;
3071 + }
3072 +}
3073 +
3074 +/* Platforms */
3075 +.stats-platforms {
3076 + display: flex;
3077 + gap: 0.55rem;
3078 + flex-wrap: wrap;
3079 +}
3080 +
3081 +.stats-platform-chip {
3082 + display: inline-flex;
3083 + align-items: center;
3084 + gap: 0.3rem;
3085 + background: var(--white);
3086 + border: 1px solid var(--border);
3087 + border-radius: 999px;
3088 + padding: 0.45rem 1rem;
3089 + font-size: 0.88rem;
3090 + color: var(--muted);
3091 + font-variant-numeric: tabular-nums;
3092 +}
3093 +
3094 +.stats-platform-chip strong {
3095 + color: var(--ink);
3096 + font-weight: 600;
3097 +}
3098 +
3099 +/* Top stores & most expensive — two columns on desktop */
3100 +@media (min-width: 900px) {
3101 + .stats-columns {
3102 + display: grid;
3103 + grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
3104 + gap: 0 2.5rem;
3105 + align-items: start;
3106 + }
3107 +}
3108 +
3109 +.stats-top-stores,
3110 +.stats-expensive {
3111 + list-style: none;
3112 + margin: 0;
3113 + padding: 0;
3114 + display: flex;
3115 + flex-direction: column;
3116 + background: var(--white);
3117 + border: 1px solid var(--border);
3118 + border-radius: var(--radius);
3119 + overflow: hidden;
3120 +}
3121 +
3122 +.stats-top-stores li,
3123 +.stats-expensive li {
3124 + display: flex;
3125 + align-items: center;
3126 + gap: 0.7rem;
3127 + padding: 0.6rem 0.9rem;
3128 + border-bottom: 1px solid var(--border);
3129 + min-height: 52px;
3130 +}
3131 +
3132 +.stats-top-stores li:last-child,
3133 +.stats-expensive li:last-child {
3134 + border-bottom: none;
3135 +}
3136 +
3137 +.stats-rank {
3138 + flex: 0 0 1.6rem;
3139 + font-family: var(--font-display);
3140 + font-weight: 900;
3141 + font-optical-sizing: auto;
3142 + color: var(--accent);
3143 + font-size: 0.95rem;
3144 + font-variant-numeric: tabular-nums;
3145 + text-align: right;
3146 +}
3147 +
3148 +.stats-top-store-id {
3149 + flex: 1;
3150 + min-width: 0;
3151 + display: flex;
3152 + flex-direction: column;
3153 +}
3154 +
3155 +.stats-top-store-id a {
3156 + color: var(--ink);
3157 + font-weight: 600;
3158 + font-size: 0.92rem;
3159 + overflow: hidden;
3160 + text-overflow: ellipsis;
3161 + white-space: nowrap;
3162 +}
3163 +
3164 +@media (hover: hover) {
3165 + .stats-top-store-id a:hover {
3166 + color: var(--accent);
3167 + }
3168 +}
3169 +
3170 +.stats-top-store-region {
3171 + color: var(--muted);
3172 + font-size: 0.76rem;
3173 + overflow: hidden;
3174 + text-overflow: ellipsis;
3175 + white-space: nowrap;
3176 +}
3177 +
3178 +.stats-top-store-count {
3179 + font-weight: 600;
3180 + font-size: 0.88rem;
3181 + font-variant-numeric: tabular-nums;
3182 + color: var(--pine);
3183 + white-space: nowrap;
3184 +}
3185 +
3186 +.stats-expensive-link {
3187 + flex: 1;
3188 + min-width: 0;
3189 + display: flex;
3190 + flex-direction: column;
3191 + color: var(--ink);
3192 +}
3193 +
3194 +.stats-expensive-title {
3195 + font-weight: 600;
3196 + font-size: 0.92rem;
3197 + overflow: hidden;
3198 + text-overflow: ellipsis;
3199 + white-space: nowrap;
3200 +}
3201 +
3202 +@media (hover: hover) {
3203 + .stats-expensive-link:hover .stats-expensive-title {
3204 + color: var(--accent);
3205 + }
3206 +}
3207 +
3208 +.stats-expensive-store {
3209 + color: var(--muted);
3210 + font-size: 0.76rem;
3211 + overflow: hidden;
3212 + text-overflow: ellipsis;
3213 + white-space: nowrap;
3214 +}
3215 +
3216 +.stats-expensive-price {
3217 + font-family: var(--font-display);
3218 + font-weight: 700;
3219 + font-optical-sizing: auto;
3220 + color: var(--accent);
3221 + font-size: 1rem;
3222 + font-variant-numeric: tabular-nums;
3223 + white-space: nowrap;
2212 3224 }
2213 3225
2214 3226 /* --------------------------------------------------------------------------
modified scripts/build_registry.py +5 −1
@@ -51,6 +51,8 @@ SOURCE_PRIORS = {
51 51 "search_sweep_cmaq": ("A", 0.85, "Artisan professionnel membre du Conseil des métiers d'art du Québec (répertoire officiel)", "art"),
52 52 "saveursbsl": ("A", 0.7, "Producteur dont les produits sont vendus par Saveurs du Bas-Saint-Laurent", "epicerie"),
53 53 "goutezat": ("A", 0.7, "Producteur dont les produits sont vendus par Goûtez l'Abitibi-Témiscamingue", "epicerie"),
54 + "manual_additions": ("D", 0.7, "Boutique québécoise ajoutée manuellement (validée à la main)", None),
55 + "search_sweep_bijoux": ("A", 0.55, "Bijouterie/joaillerie québécoise trouvée par balayage dédié bijoux", "bijoux"),
54 56 }
55 57
56 58 # sources dont TOUS les membres sont québécois (une preuve QC suffit)
@@ -62,6 +64,7 @@ QC_ONLY_SOURCES = {
62 64 "goutcotenord", "gaspesiegourmande", "charlevoix", "wikipedia_lists",
63 65 "acheterquebecois", "ideecadeauquebec", "icq_resolved", "signelocal",
64 66 "saveursbsl", "goutezat", "search_sweep_cmaq", "search_sweep_vendors",
67 + "manual_additions",
65 68 }
66 69 # ⚠️ PAS dans la liste : artisansaloeuvre (réseau Économusée international),
67 70 # marchespublics (liens hétérogènes), search sweeps (vérification nécessaire)
@@ -91,7 +94,8 @@ PRIORITY = ["erabledici", "fromagesdici", "cidreduquebec", "vinsduquebec",
91 94 "saveursbsl", "goutezat", "search_sweep_vendors",
92 95 "acheterquebecois", "ideecadeauquebec", "icq_resolved",
93 96 "search_sweep_food", "search_sweep_nonfood", "search_sweep_regions",
94 − "search_sweep_urban", "search_sweep_manuf", "marchespublics"]
97 + "search_sweep_urban", "search_sweep_manuf", "search_sweep_bijoux",
98 + "manual_additions", "marchespublics"]
95 99
96 100 REGION_CANON = {
97 101 "Saguenay": "Saguenay–Lac-Saint-Jean", "Lac-Saint-Jean": "Saguenay–Lac-Saint-Jean",
added scripts/enrich_products.py +69 −0
@@ -0,0 +1,69 @@
1 +#!/usr/bin/env python3
2 +"""Enrichissement des produits.
3 +
4 +1. Re-catégorisation avec le classifieur courant (mots-clés enrichis).
5 +2. Héritage de catégorie : un produit encore « autre » hérite de la catégorie
6 + dominante de sa boutique (si ≥ 60 % des produits catégorisés de la boutique
7 + partagent une catégorie, ou si le registre assigne une catégorie source).
8 +3. Nettoyage : entités HTML résiduelles, espaces.
9 +"""
10 +import json
11 +import os
12 +import sys
13 +from collections import Counter
14 +
15 +ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
16 +sys.path.insert(0, ROOT)
17 +from fabrika import db as fdb # noqa: E402
18 +from fabrika.schema import infer_category # noqa: E402
19 +
20 +
21 +def main():
22 + con = fdb.connect()
23 +
24 + # catégorie source du registre (ex. bijoux pour le balayage bijouteries)
25 + reg = json.load(open(os.path.join(ROOT, "data", "stores.json")))["stores"]
26 + reg_cat = {s["id"]: (s.get("categories") or [None])[0] for s in reg}
27 +
28 + # 1) re-catégorisation par classifieur
29 + n_reclass = 0
30 + for r in con.execute("SELECT uid, title, description, product_type, tags, category "
31 + "FROM products").fetchall():
32 + cat = infer_category(r["product_type"] or "", " ".join(json.loads(r["tags"] or "[]")),
33 + r["title"] or "", (r["description"] or "")[:200])
34 + if cat != "autre" and cat != r["category"]:
35 + con.execute("UPDATE products SET category=? WHERE uid=?", (cat, r["uid"]))
36 + n_reclass += 1
37 + con.commit()
38 + print(f"re-catégorisés par classifieur: {n_reclass}")
39 +
40 + # 2) héritage boutique pour les « autre »
41 + dominant = {}
42 + for sid, in con.execute("SELECT DISTINCT store_id FROM products WHERE active=1"):
43 + counts = Counter(dict(con.execute(
44 + "SELECT category, COUNT(*) FROM products WHERE store_id=? AND active=1 "
45 + "AND category<>'autre' GROUP BY category", (sid,)).fetchall()))
46 + total_cat = sum(counts.values())
47 + total_all = con.execute("SELECT COUNT(*) FROM products WHERE store_id=? AND active=1",
48 + (sid,)).fetchone()[0]
49 + if counts and total_cat >= max(3, total_all * 0.25):
50 + top, n = counts.most_common(1)[0]
51 + if n / total_cat >= 0.6:
52 + dominant[sid] = top
53 + if sid not in dominant and reg_cat.get(sid):
54 + dominant[sid] = reg_cat[sid]
55 + n_inherit = 0
56 + for sid, cat in dominant.items():
57 + cur = con.execute("UPDATE products SET category=? WHERE store_id=? AND active=1 "
58 + "AND category='autre'", (cat, sid))
59 + n_inherit += cur.rowcount
60 + con.commit()
61 + print(f"hérités de la boutique: {n_inherit} (boutiques avec dominante: {len(dominant)})")
62 +
63 + print(dict(con.execute("SELECT category, COUNT(*) FROM products WHERE active=1 "
64 + "GROUP BY category ORDER BY 2 DESC").fetchall()))
65 + con.close()
66 +
67 +
68 +if __name__ == "__main__":
69 + main()
added scripts/enrich_stores.py +150 −0
@@ -0,0 +1,150 @@
1 +#!/usr/bin/env python3
2 +"""Enrichissement des boutiques : logo, image de couverture, description.
3 +
4 +Pour chaque boutique du registre : télécharge la page d'accueil, extrait
5 + - logo : apple-touch-icon > icon (plus grande taille) > og:logo
6 + - couverture : og:image
7 + - description : meta description > og:description
8 + - nom d'affichage : og:site_name (si plus propre que le nom actuel)
9 +Écrit dans la table stores (colonnes logo_url, cover_url, description_meta).
10 +Cache disque data/enrich_cache/<domain>.json ; Scrapfly en secours pour les 403.
11 +"""
12 +import concurrent.futures as cf
13 +import json
14 +import os
15 +import re
16 +import sys
17 +from urllib.parse import urljoin
18 +
19 +import requests
20 +
21 +ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
22 +sys.path.insert(0, ROOT)
23 +CACHE = os.path.join(ROOT, "data", "enrich_cache")
24 +os.makedirs(CACHE, exist_ok=True)
25 +
26 +for line in open(os.path.join(ROOT, ".env")).read().splitlines():
27 + if "=" in line and not line.startswith("#"):
28 + k, _, v = line.partition("=")
29 + os.environ.setdefault(k.strip(), v.strip())
30 +
31 +from fabrika import db as fdb # noqa: E402
32 +from fabrika.connectors.scrapfly import scrapfly_get, available # noqa: E402
33 +
34 +HDRS = {"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36",
35 + "Accept-Language": "fr-CA,fr;q=0.9,en;q=0.8"}
36 +
37 +LINK_RE = re.compile(r'<link[^>]+>', re.I)
38 +META_RE = re.compile(r'<meta[^>]+>', re.I)
39 +
40 +
41 +def attr(tag, name):
42 + m = re.search(name + r'\s*=\s*["\']([^"\']+)["\']', tag, re.I)
43 + return m.group(1) if m else None
44 +
45 +
46 +def extract(base_url, html):
47 + head = html[:120000]
48 + logo, cover, desc, site_name = None, None, None, None
49 + icons = []
50 + for tag in LINK_RE.findall(head):
51 + rel = (attr(tag, "rel") or "").lower()
52 + href = attr(tag, "href")
53 + if not href:
54 + continue
55 + if "apple-touch-icon" in rel:
56 + icons.append((200 if not attr(tag, "sizes") else int((attr(tag, "sizes") or "180x").split("x")[0] or 180), href))
57 + elif rel in ("icon", "shortcut icon"):
58 + sizes = attr(tag, "sizes") or "32x32"
59 + try:
60 + s = int(sizes.split("x")[0])
61 + except ValueError:
62 + s = 32
63 + if not href.endswith(".ico"):
64 + icons.append((s, href))
65 + if icons:
66 + icons.sort(reverse=True)
67 + logo = urljoin(base_url, icons[0][1])
68 + for tag in META_RE.findall(head):
69 + prop = (attr(tag, "property") or attr(tag, "name") or "").lower()
70 + content = attr(tag, "content")
71 + if not content:
72 + continue
73 + if prop == "og:image" and not cover:
74 + cover = urljoin(base_url, content)
75 + elif prop in ("description", "og:description") and not desc:
76 + desc = content.strip()[:400]
77 + elif prop == "og:site_name" and not site_name:
78 + site_name = content.strip()[:80]
79 + elif prop == "og:logo" and not logo:
80 + logo = urljoin(base_url, content)
81 + return {"logo_url": logo, "cover_url": cover, "description_meta": desc, "site_name": site_name}
82 +
83 +
84 +def enrich_domain(store):
85 + dom = store["id"]
86 + cpath = os.path.join(CACHE, dom + ".json")
87 + if os.path.exists(cpath):
88 + return json.load(open(cpath))
89 + url = store.get("url") or f"https://{dom}"
90 + html = ""
91 + try:
92 + r = requests.get(url, headers=HDRS, timeout=20, allow_redirects=True)
93 + if r.status_code == 200:
94 + html, url = r.text, r.url
95 + except Exception:
96 + pass
97 + if not html and available():
98 + try:
99 + status, content = scrapfly_get(url)
100 + if status == 200:
101 + html = content
102 + except Exception:
103 + pass
104 + rec = {"domain": dom}
105 + if html:
106 + rec.update(extract(url, html))
107 + # fallback logo : favicon.ico si rien trouvé
108 + if not rec.get("logo_url"):
109 + rec["logo_url"] = urljoin(url, "/favicon.ico")
110 + json.dump(rec, open(cpath, "w"))
111 + return rec
112 +
113 +
114 +def main(only_live=True):
115 + con = fdb.connect()
116 + # colonnes d'enrichissement
117 + for col in ("logo_url", "cover_url", "description_meta"):
118 + try:
119 + con.execute(f"ALTER TABLE stores ADD COLUMN {col} TEXT")
120 + except Exception:
121 + pass
122 + con.commit()
123 + rows = [dict(r) for r in con.execute(
124 + "SELECT id, url, product_count FROM stores ORDER BY product_count DESC")]
125 + con.close()
126 + if only_live:
127 + pass # on enrichit tout le registre, les vivantes d'abord (tri ci-dessus)
128 + print(f"enrichissement de {len(rows)} boutiques…")
129 + done = 0
130 + results = []
131 + with cf.ThreadPoolExecutor(16) as ex:
132 + for rec in ex.map(enrich_domain, rows):
133 + results.append(rec)
134 + done += 1
135 + if done % 200 == 0:
136 + print(f" {done}/{len(rows)}", flush=True)
137 + con = fdb.connect()
138 + n = 0
139 + for rec in results:
140 + if rec.get("logo_url") or rec.get("description_meta"):
141 + con.execute("UPDATE stores SET logo_url=?, cover_url=?, description_meta=? WHERE id=?",
142 + (rec.get("logo_url"), rec.get("cover_url"),
143 + rec.get("description_meta"), rec["domain"]))
144 + n += 1
145 + con.commit(); con.close()
146 + print(f"boutiques enrichies: {n}/{len(results)}")
147 +
148 +
149 +if __name__ == "__main__":
150 + main()
151